diff options
author | Martijn Kaijser <mcm.kaijser@gmail.com> | 2016-07-21 23:17:27 +0200 |
---|---|---|
committer | Martijn Kaijser <mcm.kaijser@gmail.com> | 2016-07-21 23:17:27 +0200 |
commit | c951f117beae4c7cf070bcae01ebf2d633b72b0a (patch) | |
tree | b1bf9d4aab95ce5f5342bf731b2f89627617b0cf | |
parent | 985af0b66c413450e3a9a3751680eb98b771cdc4 (diff) |
[win32] Don't add version to the name as that will also change menu shortcut creation. Just put it in description.
-rw-r--r-- | project/Win32BuildSetup/genNsisInstaller.nsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project/Win32BuildSetup/genNsisInstaller.nsi b/project/Win32BuildSetup/genNsisInstaller.nsi index ee9647f4b3..df19cfbf9d 100644 --- a/project/Win32BuildSetup/genNsisInstaller.nsi +++ b/project/Win32BuildSetup/genNsisInstaller.nsi @@ -14,7 +14,7 @@ ;General ;Name and file - Name "${APP_NAME} ${VERSION_NUMBER}" + Name "${APP_NAME}" OutFile "${APP_NAME}Setup-${app_revision}-${app_branch}.exe" ;Default installation folder @@ -302,7 +302,7 @@ SectionEnd ;Descriptions ;Language strings - LangString DESC_SecAPP ${LANG_ENGLISH} "${APP_NAME}" + LangString DESC_SecAPP ${LANG_ENGLISH} "${APP_NAME} ${VERSION_NUMBER}" ;Assign language strings to sections !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN |