diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/installer/winamp/verInfo.nsh | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/installer/winamp/verInfo.nsh')
-rw-r--r-- | Src/installer/winamp/verInfo.nsh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Src/installer/winamp/verInfo.nsh b/Src/installer/winamp/verInfo.nsh new file mode 100644 index 00000000..e21db6a3 --- /dev/null +++ b/Src/installer/winamp/verInfo.nsh @@ -0,0 +1,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
\ No newline at end of file |