Fixing last windows bugs.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ad5001 2021-08-26 20:19:07 +02:00
parent e5b7e0c129
commit af9798e1d2
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
2 changed files with 3 additions and 2 deletions

View file

@ -119,7 +119,7 @@ Popup {
}
Timer {
running: Helper.getSetting("last_install_greet") != Helper.getVersion()+"a"
running: Helper.getSetting("last_install_greet") != Helper.getVersion()
repeat: false
interval: 50
onTriggered: greetingPopup.open()

View file

@ -170,9 +170,10 @@ Section ""
WriteUninstaller $INSTDIR\uninstall.exe
WriteRegStr HKLM ${REG_UNINSTALL} "DisplayName" "LogarithmPlotter"
WriteRegStr HKLM ${REG_UNINSTALL} "Publisher" "Ad5001"
WriteRegStr HKLM ${REG_UNINSTALL} "UninstallString" "$INSTDIR\uninstall.exe"
WriteRegStr HKLM ${REG_UNINSTALL} "QuietUninstallString" "$INSTDIR\uninstall.exe /S"
WriteRegStr HKLM ${REG_UNINSTALL} "DisplayIcon" "$INSTDIR\logarithmplotter.bmp"
WriteRegStr HKLM ${REG_UNINSTALL} "DisplayIcon" "$INSTDIR\logarithmplotter.ico"
WriteRegStr HKLM ${REG_UNINSTALL} "DisplayVersion" "${APP_VERSION}"
WriteRegStr HKLM ${REG_UNINSTALL} "Readme" "$INSTDIR\README.md"
WriteRegStr HKLM ${REG_UNINSTALL} "URLInfoAbout" "${WEBSITE}"