2003-06-10 19:32:19 +00:00
|
|
|
; VersionInfo.nsi
|
|
|
|
;
|
|
|
|
; This script shows you how to add version information to an installer.
|
|
|
|
; Windows shows this information on the Version tab of the File properties.
|
2003-06-09 18:59:14 +00:00
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
2003-06-10 19:32:19 +00:00
|
|
|
Name "Version Info"
|
2003-06-09 18:59:14 +00:00
|
|
|
|
2003-06-10 19:32:19 +00:00
|
|
|
OutFile "VersionInfo.exe"
|
2003-06-09 18:59:14 +00:00
|
|
|
|
2005-04-21 14:22:23 +00:00
|
|
|
LoadLanguageFile "${NSISDIR}\Contrib\Language files\English.nlf"
|
2003-06-09 18:59:14 +00:00
|
|
|
;--------------------------------
|
|
|
|
;Version Information
|
2003-06-10 19:32:19 +00:00
|
|
|
|
2003-06-09 18:59:14 +00:00
|
|
|
VIProductVersion "1.2.3.4"
|
2003-06-23 21:56:02 +00:00
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "Test Application"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "Comments" "A test comment"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "CompanyName" "Fake company"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalTrademarks" "Test Application is a trademark of Fake company"
|
2009-01-13 16:54:39 +00:00
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "Copyright Fake company"
|
2003-06-23 21:56:02 +00:00
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "Test Application"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "1.2.3"
|
2003-06-09 18:59:14 +00:00
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
2003-06-10 19:32:19 +00:00
|
|
|
Section ""
|
2003-06-09 18:59:14 +00:00
|
|
|
|
2003-06-12 00:06:23 +00:00
|
|
|
SectionEnd
|