From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/installer/winamp/branding.nsh | 42 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Src/installer/winamp/branding.nsh (limited to 'Src/installer/winamp/branding.nsh') diff --git a/Src/installer/winamp/branding.nsh b/Src/installer/winamp/branding.nsh new file mode 100644 index 00000000..59e62637 --- /dev/null +++ b/Src/installer/winamp/branding.nsh @@ -0,0 +1,42 @@ +!ifndef NULLSOFT_WINAMP_INSTALLER_BRANDING_HEADER +!define NULLSOFT_WINAMP_INSTALLER_BRANDING_HEADER + +!define WINAMP "Winamp" +!ifdef WINAMP64 + !define WINAMPFOLDER "${WINAMP}64" +!else + !define WINAMPFOLDER "${WINAMP}" +!endif +!define WINAMPEXE "winamp.exe" +!define WINAMPLINK "${WINAMP}.lnk" +!define MODERNSKINNAME "Winamp Modern" + +; Header image path +!define HEADER_IMAGE_PATH ".\res\wabanner.bmp" + +; WelcomeFinish image path +!ifdef EXPRESS_MODE + !define WELCOMEFINISH_IMAGE_PATH ".\res\welcome55_short.bmp" +!else + !define WELCOMEFINISH_IMAGE_PATH ".\res\welcome55.bmp" +!endif + +!define UNINSTALLER_WELCOMEFINISH_IMAGE_PATH "${WELCOMEFINISH_IMAGE_PATH}" + +; License path +!ifndef LICENSE_PATH + !define LICENSE_PATH "..\..\resources\license\license.rtf" +!endif + +; Privacy policy +!define PRIVACY_POLICY_PATH "..\..\resources\license\privacyPolicy.rtf" + +!ifdef FULL + !define INSTALLER_TYPE_DESCRIPTION "$(installerContainsFull)" +!else ifdef LITE + !define INSTALLER_TYPE_DESCRIPTION "$(installerContainsLite)" +!else + !define INSTALLER_TYPE_DESCRIPTION "" +!endif + +!endif ;NULLSOFT_WINAMP_INSTALLER_BRANDING_HEADER \ No newline at end of file -- cgit