Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/apache/directory-studio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Seelmann <mail@stefan-seelmann.de>2021-08-18 20:24:59 +0300
committerStefan Seelmann <mail@stefan-seelmann.de>2021-08-18 20:24:59 +0300
commit37d3378f38d8347647a1402b560960a21e4dbbc7 (patch)
treec25bed5d0ff8730bc721585ab21aa98e40cb483b
parent96d1e3440fd61d85e523745d8ad3fb5b7d46e4e3 (diff)
DIRSTUDIO-1286: Add installer version in windows installer
-rwxr-xr-xinstallers/windows/src/nsis/windows_installer.nsi2
1 files changed, 2 insertions, 0 deletions
diff --git a/installers/windows/src/nsis/windows_installer.nsi b/installers/windows/src/nsis/windows_installer.nsi
index e6d3d6ef1..61de1460c 100755
--- a/installers/windows/src/nsis/windows_installer.nsi
+++ b/installers/windows/src/nsis/windows_installer.nsi
@@ -212,6 +212,8 @@
# Configuring registries for the uninstaller
WriteRegStr "${INSTDIR_REG_ROOT}" "${INSTDIR_REG_KEY}" "DisplayName" "${Application} - (remove only)"
WriteRegStr "${INSTDIR_REG_ROOT}" "${INSTDIR_REG_KEY}" "DisplayIcon" "$INSTDIR\uninstall.exe"
+ WriteRegStr "${INSTDIR_REG_ROOT}" "${INSTDIR_REG_KEY}" "DisplayVersion" "${BrandingVersion}"
+ WriteRegStr "${INSTDIR_REG_ROOT}" "${INSTDIR_REG_KEY}" "Publisher" "The Apache Software Foundation"
WriteRegStr "${INSTDIR_REG_ROOT}" "${INSTDIR_REG_KEY}" "UninstallString" '"$INSTDIR\uninstall.exe"'
WriteRegDWORD "${INSTDIR_REG_ROOT}" "${INSTDIR_REG_KEY}" "NoModify" "1"
WriteRegDWORD "${INSTDIR_REG_ROOT}" "${INSTDIR_REG_KEY}" "NoRepair" "1"