This commit is contained in:
Martin Rotter 2021-03-07 21:54:03 +01:00
parent 0f8ce5f7de
commit 84ab2ed31f
2 changed files with 24 additions and 49 deletions

View File

@ -1,20 +1,4 @@
; This file is part of RSS Guard. ; For license of this file, see <project-root-folder>/LICENSE.md.
;
; Copyright (C) 2011-2021 by Martin Rotter <rotter.martinos@gmail.com>
;
; RSS Guard is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
;
; RSS Guard is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with RSS Guard. If not, see <http:;www.gnu.org/licenses/>.
!define VERSION "@APP_VERSION@" !define VERSION "@APP_VERSION@"
!define APP_VERSION "@APP_VERSION@" !define APP_VERSION "@APP_VERSION@"

View File

@ -1,19 +1,4 @@
; This file is part of RSS Guard. ; For license of this file, see <project-root-folder>/LICENSE.md.
;
; Copyright (C) 2011-2021 by Martin Rotter <rotter.martinos@gmail.com>
;
; RSS Guard is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
;
; RSS Guard is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with RSS Guard. If not, see <http:;www.gnu.org/licenses/>.
;-------------------------------- ;--------------------------------
; Unicode baby. ; Unicode baby.
@ -28,7 +13,7 @@ Unicode True
; Basic values definitions. ; Basic values definitions.
; Name and file. ; Name and file.
Name "${APP_NAME} portable" Name "${APP_NAME}"
; Set custom branding text. ; Set custom branding text.
BrandingText "${APP_NAME}" BrandingText "${APP_NAME}"
@ -37,7 +22,7 @@ BrandingText "${APP_NAME}"
SetCompressor /SOLID /FINAL lzma SetCompressor /SOLID /FINAL lzma
; Default installation folder. ; Default installation folder.
InstallDir "$PROGRAMFILES\${APP_NAME}" InstallDir "C:\${APP_NAME}"
InstallDirRegKey HKCU "Software\${APP_NAME}" "Install Directory" InstallDirRegKey HKCU "Software\${APP_NAME}" "Install Directory"
; Require administrator access. ; Require administrator access.
@ -131,10 +116,9 @@ ${IfThen} $9 < 6 ${|} MessageBox mb_iconstop `ExecWaitJob "${_exec}" failed!` ${
; Installer sections. ; Installer sections.
Section "!Core" Core Section "!Core" Core
IfFileExists $INSTDIR\Uninstall.exe +1 NotInstalled IfFileExists $INSTDIR\Uninstall.exe Uninstall NotInstalled
MessageBox MB_OK|MB_ICONEXCLAMATION "${APP_NAME} is already installed. $\n$\nClick 'OK' to automatically uninstall it, installer will then automatically continue with current installation." IDOK Uninstall
Uninstall: Uninstall:
!insertmacro ExecWaitJob '"$INSTDIR\Uninstall.exe /S"' !insertmacro ExecWaitJob '"$INSTDIR\Uninstall.exe /S"'
NotInstalled: NotInstalled:
@ -142,12 +126,23 @@ NotInstalled:
; Install core application files. ; Install core application files.
File /r "${BINARY_TREE}\" File /r "${BINARY_TREE}\"
; Install MSVCRT libraries.
ExecWait '"$INSTDIR\vc_redist.x64.exe" /install /passive /quiet'
Delete "$INSTDIR\vc_redist.x64.exe"
; Store installation folder. ; Store installation folder.
WriteRegStr HKCU "Software\${APP_NAME}" "Install Directory" $INSTDIR WriteRegStr HKCU "Software\${APP_NAME}" "Install Directory" $INSTDIR
; Create uninstaller. ; Create uninstaller.
WriteUninstaller "$INSTDIR\Uninstall.exe" WriteUninstaller "$INSTDIR\Uninstall.exe"
; Add to Add/Remove programs.
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" "DisplayName" "${APP_NAME}"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" "DisplayIcon" "$INSTDIR\${EXE_NAME}"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" "DisplayVersion" "${APP_VERSION}"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" "UninstallString" "$\"$INSTDIR\Uninstall.exe$\""
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" "QuietUninstallString" "$\"$INSTDIR\Uninstall.exe$\" /S"
SectionEnd SectionEnd
Section "Desktop Icon" DesktopIcon Section "Desktop Icon" DesktopIcon
@ -174,23 +169,19 @@ LangString DESC_StartMenuShortcuts ${LANG_ENGLISH} "Start Menu Shortcuts for ${A
Section "Uninstall" Section "Uninstall"
; Here remove all files, but skip "data" folder. ; Here remove all files, but skip "data" folder.
Push "$INSTDIR" Push "$INSTDIR"
Push "data" Push "data4"
Call un.RmDirsButOne Call un.RmDirsButOne
; Remove uninstaller. ; Remove top-level files.
Delete "$INSTDIR\*" Delete "$INSTDIR\*"
; Remove rest of installed files. ; Remove directory itself if empty.
; Custom files are left intact.
RMDir "$INSTDIR" RMDir "$INSTDIR"
Delete "$SMPROGRAMS\${APP_NAME}\${APP_NAME}.lnk" RMDir /r "$SMPROGRAMS\${APP_NAME}"
Delete "$SMPROGRAMS\${APP_NAME}\Uninstall.lnk"
RMDir "$SMPROGRAMS\${APP_NAME}"
Delete "$DESKTOP\${APP_NAME}.lnk" Delete "$DESKTOP\${APP_NAME}.lnk"
DeleteRegKey HKCU "Software\${APP_NAME}"
DeleteRegKey /ifempty HKCU "Software\${APP_NAME}" DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}"
SectionEnd SectionEnd
;-------------------------------- ;--------------------------------