blob: e21db6a3acae853ffe6a86d3910f802cbcfa0447 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
!ifndef _DEBUG
!include "buildConstants.nsh"
VIProductVersion "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_MINOR_SECOND_SHORT}.${BUILD_NUM}"
VIAddVersionKey "ProductName" "${WINAMP} Installer"
VIAddVersionKey "Comments" "Visit http://www.winamp.com/ for updates."
VIAddVersionKey "CompanyName" "Winamp SA"
VIAddVersionKey "LegalTrademarks" "Nullsoft and Winamp are trademarks of Winamp SA"
VIAddVersionKey "LegalCopyright" "Copyright © 1997-2023 Winamp SA"
VIAddVersionKey "FileDescription" "${WINAMP} Installer"
VIAddVersionKey "FileVersion" "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_MINOR_SECOND_SHORT}.${BUILD_NUM}"
VIAddVersionKey "ProductVersion" "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_MINOR_SECOND_SHORT} Build ${BUILD_NUM}"
VIAddVersionKey "SpecialBuild" "${VERSION_ADDITIONALINFO}"
!ifndef InstallType
!define InstallType "Final"
!endif
!else ; _DEBUG
!define VERSION_MAJOR "Debug"
!define VERSION_MINOR ""
!define VERSION_MINOR_SECOND ""
!define VERSION_MINOR_SECOND_SHORT ""
!define BUILD_NUM ""
!define InstallType "Internal"
!endif ; _DEBUG
|