From 6a8f8f9542eedae9141ca3c184e72f7cb2efbf23 Mon Sep 17 00:00:00 2001 From: Esco Date: Thu, 2 Jun 2022 15:29:47 +0000 Subject: [PATCH] Add DisplayVersion Registry string * Resolves #503 --- windows/portmaster-installer.nsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/portmaster-installer.nsi b/windows/portmaster-installer.nsi index 8b1e023..d08d08d 100644 --- a/windows/portmaster-installer.nsi +++ b/windows/portmaster-installer.nsi @@ -205,6 +205,8 @@ dontUpdate: ; "InstallDate" "" ; TODO WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Portmaster" \ "DisplayName" "Portmaster" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Portmaster" \ + "DisplayVersion" "${PRODUCT_VERSION}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Portmaster" \ "UninstallString" "$\"$INSTDIR\portmaster-uninstaller.exe$\"" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Portmaster" \