2021-11-05 10:44:23 +08:00
|
|
|
####################################################################
|
|
|
|
# Startup
|
2024-03-25 11:29:56 +08:00
|
|
|
SetFont "Segoe UI" 11
|
2022-12-08 12:45:35 +08:00
|
|
|
Unicode True
|
2024-03-28 17:46:39 +08:00
|
|
|
!define DISPLAY_NAME "Red Panda C++ ${APP_VERSION} (${ARCH})"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
2024-03-29 19:14:30 +08:00
|
|
|
!include "Integration.nsh"
|
2024-03-29 12:50:45 +08:00
|
|
|
!include "LogicLib.nsh"
|
2021-11-05 10:44:23 +08:00
|
|
|
!include "MUI2.nsh"
|
2024-03-29 12:50:45 +08:00
|
|
|
!include "WinVer.nsh"
|
|
|
|
!include "x64.nsh"
|
|
|
|
|
2021-11-05 10:44:23 +08:00
|
|
|
!include "lang.nsh"
|
2024-03-29 12:50:45 +08:00
|
|
|
!include "utils.nsh"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
!define MUI_CUSTOMFUNCTION_GUIINIT myGuiInit
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
# Installer Attributes
|
|
|
|
|
|
|
|
Name "${DISPLAY_NAME}"
|
|
|
|
OutFile "${FINALNAME}"
|
|
|
|
Caption "${DISPLAY_NAME}"
|
|
|
|
|
|
|
|
LicenseData "LICENSE"
|
2024-03-28 17:46:39 +08:00
|
|
|
!if "${ARCH}" == "x86"
|
|
|
|
InstallDir $PROGRAMFILES\RedPanda-Cpp
|
|
|
|
!else
|
|
|
|
InstallDir $PROGRAMFILES64\RedPanda-Cpp
|
|
|
|
!endif
|
2021-11-05 10:44:23 +08:00
|
|
|
####################################################################
|
|
|
|
# Interface Settings
|
|
|
|
|
|
|
|
ShowInstDetails show
|
|
|
|
AutoCloseWindow false
|
|
|
|
SilentInstall normal
|
|
|
|
CRCCheck on
|
|
|
|
SetCompressor /SOLID /FINAL lzma
|
|
|
|
SetCompressorDictSize 64
|
|
|
|
SetDatablockOptimize on
|
|
|
|
SetOverwrite try
|
|
|
|
XPStyle on
|
|
|
|
|
2024-03-07 11:06:15 +08:00
|
|
|
ManifestDPIAware true
|
|
|
|
|
2021-11-05 10:44:23 +08:00
|
|
|
InstType "Full";1
|
|
|
|
InstType "Minimal";2
|
|
|
|
InstType "Safe";3
|
|
|
|
|
|
|
|
## Remember the installer language
|
2024-03-28 14:54:17 +08:00
|
|
|
!define MUI_LANGDLL_REGISTRY_ROOT "ShCtx"
|
2021-11-05 10:44:23 +08:00
|
|
|
!define MUI_LANGDLL_REGISTRY_KEY "Software\RedPanda-C++"
|
|
|
|
!define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
# Pages
|
|
|
|
|
|
|
|
!define MUI_ICON "devcpp.ico"
|
|
|
|
!define MUI_UNICON "devcpp.ico"
|
|
|
|
!define MUI_ABORTWARNING
|
|
|
|
!define MUI_LANGDLL_ALLLANGUAGES
|
|
|
|
!define MUI_FINISHPAGE_RUN "$INSTDIR\RedPandaIDE.exe"
|
|
|
|
!define MUI_FINISHPAGE_NOREBOOTSUPPORT
|
|
|
|
!define MUI_COMPONENTSPAGE_SMALLDESC
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_LICENSE "LICENSE"
|
|
|
|
!insertmacro MUI_PAGE_COMPONENTS
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
# Languages
|
|
|
|
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
!insertmacro MUI_LANGUAGE "SimpChinese"
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
# Files, by option section
|
|
|
|
|
|
|
|
Section "$(SectionMainName)" SectionMain
|
|
|
|
SectionIn 1 2 3 RO
|
|
|
|
|
|
|
|
SetOutPath $INSTDIR
|
|
|
|
|
|
|
|
; Allways create an uninstaller
|
|
|
|
WriteUninstaller "$INSTDIR\uninstall.exe"
|
2024-03-28 14:54:17 +08:00
|
|
|
WriteRegStr ShCtx "Software\Microsoft\Windows\CurrentVersion\Uninstall\RedPanda-C++" "DisplayName" "Redpanda-C++"
|
|
|
|
WriteRegStr ShCtx "Software\Microsoft\Windows\CurrentVersion\Uninstall\RedPanda-C++" "UninstallString" "$INSTDIR\uninstall.exe"
|
2024-03-28 17:46:39 +08:00
|
|
|
WriteRegStr ShCtx "Software\Microsoft\Windows\CurrentVersion\Uninstall\RedPanda-C++" "DisplayVersion" "${APP_VERSION}"
|
2024-03-28 14:54:17 +08:00
|
|
|
WriteRegStr ShCtx "Software\Microsoft\Windows\CurrentVersion\Uninstall\RedPanda-C++" "DisplayIcon" "$INSTDIR\RedPandaIDE.exe"
|
|
|
|
WriteRegStr ShCtx "Software\Microsoft\Windows\CurrentVersion\Uninstall\RedPanda-C++" "Publisher" "Roy Qu(royqh1979@gmail.com)"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
; Write required files
|
|
|
|
File "RedPandaIDE.exe"
|
|
|
|
File "ConsolePauser.exe"
|
2022-02-25 12:06:04 +08:00
|
|
|
File "redpanda-win-git-askpass.exe"
|
2021-11-05 10:44:23 +08:00
|
|
|
File "astyle.exe"
|
|
|
|
File "LICENSE"
|
|
|
|
File "NEWS.md"
|
|
|
|
File "README.md"
|
2023-11-19 16:41:36 +08:00
|
|
|
File "qt.conf"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
; Write required paths
|
|
|
|
SetOutPath $INSTDIR\Templates
|
|
|
|
File /nonfatal /r "Templates\*"
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
2024-03-29 08:22:02 +08:00
|
|
|
!ifdef HAVE_MINGW32
|
|
|
|
Section "$(SectionMinGW32Name)" SectionMinGW32
|
2024-03-28 17:46:39 +08:00
|
|
|
SectionIn 1 3
|
2024-03-29 08:22:02 +08:00
|
|
|
SetOutPath $INSTDIR
|
2021-11-05 10:44:23 +08:00
|
|
|
|
2024-03-29 08:22:02 +08:00
|
|
|
File /nonfatal /r "mingw32"
|
|
|
|
SectionEnd
|
|
|
|
!endif
|
|
|
|
|
|
|
|
!ifdef HAVE_MINGW64
|
|
|
|
Section "$(SectionMinGW64Name)" SectionMinGW64
|
|
|
|
SectionIn 1 3
|
|
|
|
SetOutPath $INSTDIR
|
|
|
|
|
|
|
|
File /nonfatal /r "mingw64"
|
2024-03-28 17:46:39 +08:00
|
|
|
SectionEnd
|
|
|
|
!endif
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
####################################################################
|
|
|
|
# File association
|
2024-03-30 00:00:56 +08:00
|
|
|
SectionGroup "$(SectionAssocsName)" SectionAssocs
|
2021-11-05 10:44:23 +08:00
|
|
|
Section "$(SectionAssocExtNameBegin) .dev $(SectionAssocExtNameEnd)"
|
|
|
|
SectionIn 1 3
|
|
|
|
|
|
|
|
StrCpy $0 $INSTDIR\RedPandaIDE.exe
|
|
|
|
WriteRegStr HKCR ".dev" "" "DevCpp.dev"
|
|
|
|
WriteRegStr HKCR "DevCpp.dev" "" "Dev-C++ Project File"
|
|
|
|
WriteRegStr HKCR "DevCpp.dev\DefaultIcon" "" '$0,3'
|
|
|
|
WriteRegStr HKCR "DevCpp.dev\Shell\Open\Command" "" '$0 "%1"'
|
2024-03-29 19:14:30 +08:00
|
|
|
${NotifyShell_AssocChanged}
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "$(SectionAssocExtNameBegin) .c $(SectionAssocExtNameEnd)"
|
|
|
|
SectionIn 1 3
|
|
|
|
|
|
|
|
StrCpy $0 $INSTDIR\RedPandaIDE.exe
|
|
|
|
WriteRegStr HKCR ".c" "" "DevCpp.c"
|
|
|
|
WriteRegStr HKCR "DevCpp.c" "" "C Source File"
|
|
|
|
WriteRegStr HKCR "DevCpp.c\DefaultIcon" "" '$0,4'
|
|
|
|
WriteRegStr HKCR "DevCpp.c\Shell\Open\Command" "" '$0 "%1"'
|
2024-03-29 19:14:30 +08:00
|
|
|
${NotifyShell_AssocChanged}
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "$(SectionAssocExtNameBegin) .cpp $(SectionAssocExtNameEnd)"
|
|
|
|
SectionIn 1 3
|
|
|
|
|
|
|
|
StrCpy $0 $INSTDIR\RedPandaIDE.exe
|
|
|
|
WriteRegStr HKCR ".cpp" "" "DevCpp.cpp"
|
|
|
|
WriteRegStr HKCR "DevCpp.cpp" "" "C++ Source File"
|
|
|
|
WriteRegStr HKCR "DevCpp.cpp\DefaultIcon" "" '$0,5'
|
|
|
|
WriteRegStr HKCR "DevCpp.cpp\Shell\Open\Command" "" '$0 "%1"'
|
2024-03-29 19:14:30 +08:00
|
|
|
${NotifyShell_AssocChanged}
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "$(SectionAssocExtNameBegin) .cxx $(SectionAssocExtNameEnd)"
|
|
|
|
SectionIn 1 3
|
|
|
|
|
|
|
|
StrCpy $0 $INSTDIR\RedPandaIDE.exe
|
|
|
|
WriteRegStr HKCR ".cxx" "" "DevCpp.cxx"
|
|
|
|
WriteRegStr HKCR "DevCpp.cxx" "" "C++ Source File"
|
|
|
|
WriteRegStr HKCR "DevCpp.cxx\DefaultIcon" "" '$0,5'
|
|
|
|
WriteRegStr HKCR "DevCpp.cxx\Shell\Open\Command" "" '$0 "%1"'
|
2024-03-29 19:14:30 +08:00
|
|
|
${NotifyShell_AssocChanged}
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "$(SectionAssocExtNameBegin) .cc $(SectionAssocExtNameEnd)"
|
|
|
|
SectionIn 1 3
|
|
|
|
|
|
|
|
StrCpy $0 $INSTDIR\RedPandaIDE.exe
|
|
|
|
WriteRegStr HKCR ".cc" "" "DevCpp.cc"
|
|
|
|
WriteRegStr HKCR "DevCpp.cc" "" "C++ Source File"
|
|
|
|
WriteRegStr HKCR "DevCpp.cc\DefaultIcon" "" '$0,5'
|
|
|
|
WriteRegStr HKCR "DevCpp.cc\Shell\Open\Command" "" '$0 "%1"'
|
2024-03-29 19:14:30 +08:00
|
|
|
${NotifyShell_AssocChanged}
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "$(SectionAssocExtNameBegin) .hxx $(SectionAssocExtNameEnd)"
|
|
|
|
SectionIn 1 3
|
|
|
|
|
|
|
|
StrCpy $0 $INSTDIR\RedPandaIDE.exe
|
|
|
|
WriteRegStr HKCR ".hxx" "" "DevCpp.hxx"
|
|
|
|
WriteRegStr HKCR "DevCpp.hxx" "" "C++ Header File"
|
|
|
|
WriteRegStr HKCR "DevCpp.hxx\DefaultIcon" "" '$0,7'
|
|
|
|
WriteRegStr HKCR "DevCpp.hxx\Shell\Open\Command" "" '$0 "%1"'
|
2024-03-29 19:14:30 +08:00
|
|
|
${NotifyShell_AssocChanged}
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "$(SectionAssocExtNameBegin) .h $(SectionAssocExtNameEnd)"
|
|
|
|
SectionIn 1 3
|
|
|
|
|
|
|
|
StrCpy $0 $INSTDIR\RedPandaIDE.exe
|
|
|
|
WriteRegStr HKCR ".h" "" "DevCpp.h"
|
|
|
|
WriteRegStr HKCR "DevCpp.h" "" "C Header File"
|
|
|
|
WriteRegStr HKCR "DevCpp.h\DefaultIcon" "" '$0,6'
|
|
|
|
WriteRegStr HKCR "DevCpp.h\Shell\Open\Command" "" '$0 "%1"'
|
2024-03-29 19:14:30 +08:00
|
|
|
${NotifyShell_AssocChanged}
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "$(SectionAssocExtNameBegin) .hpp $(SectionAssocExtNameEnd)"
|
|
|
|
SectionIn 1 3
|
|
|
|
|
|
|
|
StrCpy $0 $INSTDIR\RedPandaIDE.exe
|
|
|
|
WriteRegStr HKCR ".hpp" "" "DevCpp.hpp"
|
|
|
|
WriteRegStr HKCR "DevCpp.hpp" "" "C++ Header File"
|
|
|
|
WriteRegStr HKCR "DevCpp.hpp\DefaultIcon" "" '$0,7'
|
|
|
|
WriteRegStr HKCR "DevCpp.hpp\Shell\Open\Command" "" '$0 "%1"'
|
2024-03-29 19:14:30 +08:00
|
|
|
${NotifyShell_AssocChanged}
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
2024-03-30 00:00:56 +08:00
|
|
|
SectionGroupEnd
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
####################################################################
|
|
|
|
# Shortcuts
|
2024-03-30 00:00:56 +08:00
|
|
|
SectionGroup "$(SectionShortcutsName)" SectionShortcuts
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
Section "$(SectionMenuLaunchName)" SectionMenuLaunch
|
|
|
|
SectionIn 1 3
|
2024-03-28 14:54:17 +08:00
|
|
|
|
2021-11-05 10:44:23 +08:00
|
|
|
StrCpy $0 $SMPROGRAMS ; start menu Programs folder
|
2021-11-07 10:48:09 +08:00
|
|
|
CreateDirectory "$0\$(MessageAppName)"
|
|
|
|
CreateShortCut "$0\$(MessageAppName)\$(MessageAppName).lnk" "$INSTDIR\RedPandaIDE.exe"
|
|
|
|
CreateShortCut "$0\$(MessageAppName)\License.lnk" "$INSTDIR\LICENSE"
|
|
|
|
CreateShortCut "$0\$(MessageAppName)\Uninstall $(MessageAppName).lnk" "$INSTDIR\uninstall.exe"
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "$(SectionDesktopLaunchName)" SectionDesktopLaunch
|
|
|
|
SectionIn 1 3
|
2024-03-28 14:54:17 +08:00
|
|
|
|
2021-11-07 13:37:23 +08:00
|
|
|
CreateShortCut "$DESKTOP\$(MessageAppName).lnk" "$INSTDIR\RedPandaIDE.exe"
|
2021-11-05 10:44:23 +08:00
|
|
|
SectionEnd
|
|
|
|
|
2024-03-30 00:00:56 +08:00
|
|
|
SectionGroupEnd
|
2021-11-05 10:44:23 +08:00
|
|
|
|
2024-03-30 00:00:09 +08:00
|
|
|
Section "$(SectionCompressName)" SectionCompress
|
|
|
|
DetailPrint "$(MessageCompressing)"
|
|
|
|
ExecWait '$SYSDIR\compact.exe /C /S /F /EXE:XPRESS16K "$INSTDIR\*"'
|
|
|
|
SectionEnd
|
|
|
|
|
2021-11-05 10:44:23 +08:00
|
|
|
Section "$(SectionConfigName)" SectionConfig
|
|
|
|
SectionIn 3
|
|
|
|
|
2021-11-07 10:48:09 +08:00
|
|
|
RMDir /r "$APPDATA\RedPandaIDE"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SectionMain} "$(MessageSectionMain)"
|
2024-03-29 08:22:02 +08:00
|
|
|
!ifdef HAVE_MINGW32
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SectionMinGW32} "$(MessageSectionMinGW32)"
|
|
|
|
!endif
|
|
|
|
!ifdef HAVE_MINGW64
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SectionMinGW64} "$(MessageSectionMinGW64)"
|
2024-03-28 17:46:39 +08:00
|
|
|
!endif
|
2021-11-05 10:44:23 +08:00
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SectionShortcuts} "$(MessageSectionShortcuts)"
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SectionAssocs} "$(MessageSectionAssocs)"
|
2024-03-30 00:00:09 +08:00
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SectionCompress} "$(MessageSectionCompress)"
|
2021-11-05 10:44:23 +08:00
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SectionConfig} "$(MessageSectionConfig)"
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
# Functions, utilities
|
|
|
|
|
|
|
|
Function .onInit
|
|
|
|
!insertmacro MUI_LANGDLL_DISPLAY
|
2024-03-29 12:50:45 +08:00
|
|
|
!insertmacro DetectOsArch
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
IfFileExists "C:\Dev-Cpp\devcpp.exe" 0 +2
|
|
|
|
SectionSetFlags ${SectionConfig} ${SF_SELECTED} # Remove old Dev-Cpp config files
|
|
|
|
|
|
|
|
IfFileExists "$APPDATA\Dev-Cpp\devcpp.cfg" 0 +2 # deprecated config file
|
|
|
|
SectionSetFlags ${SectionConfig} ${SF_SELECTED}
|
|
|
|
|
2024-03-28 14:54:17 +08:00
|
|
|
SetShellVarContext all
|
2024-03-28 17:46:39 +08:00
|
|
|
!if "${ARCH}" == "x86"
|
|
|
|
SetRegView 32
|
|
|
|
!else
|
|
|
|
SetRegView 64
|
|
|
|
!endif
|
2021-11-05 10:44:23 +08:00
|
|
|
FunctionEnd
|
|
|
|
|
2024-03-29 12:50:45 +08:00
|
|
|
Function .onSelChange
|
|
|
|
!insertmacro SectionAction_CheckMingw64
|
2024-03-30 00:00:09 +08:00
|
|
|
!insertmacro SectionAction_CheckCompress
|
2024-03-29 12:50:45 +08:00
|
|
|
FunctionEnd
|
|
|
|
|
2021-11-05 10:44:23 +08:00
|
|
|
Function myGuiInit
|
2024-03-29 12:50:45 +08:00
|
|
|
!insertmacro CheckOsArch
|
|
|
|
!insertmacro CheckOsBuild
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
; uninstall existing
|
2021-11-07 10:48:09 +08:00
|
|
|
SetRegView 32
|
|
|
|
Call UninstallExisting
|
|
|
|
SetRegView 64
|
2021-11-05 10:44:23 +08:00
|
|
|
Call UninstallExisting
|
|
|
|
|
2024-03-28 17:46:39 +08:00
|
|
|
!if "${ARCH}" == "x86"
|
|
|
|
SetRegView 32
|
|
|
|
!else
|
|
|
|
SetRegView 64
|
|
|
|
!endif
|
2024-03-29 12:50:45 +08:00
|
|
|
|
|
|
|
!insertmacro SectionAction_CheckMingw64
|
2024-03-30 00:00:09 +08:00
|
|
|
!insertmacro SectionAction_CheckCompress
|
2021-11-05 10:44:23 +08:00
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function un.onInit
|
2024-03-28 14:54:17 +08:00
|
|
|
!insertmacro MUI_UNGETLANGUAGE
|
|
|
|
|
|
|
|
SetShellVarContext all
|
2024-03-28 17:46:39 +08:00
|
|
|
!if "${ARCH}" == "x86"
|
|
|
|
SetRegView 32
|
|
|
|
!else
|
|
|
|
SetRegView 64
|
|
|
|
!endif
|
2021-11-05 10:44:23 +08:00
|
|
|
FunctionEnd
|
|
|
|
|
2024-03-30 00:00:56 +08:00
|
|
|
Var /GLOBAL uninstallString
|
|
|
|
Var /GLOBAL installLocation
|
2021-11-05 10:44:23 +08:00
|
|
|
|
2021-11-07 10:48:09 +08:00
|
|
|
Function UninstallExisting
|
2024-03-30 00:00:56 +08:00
|
|
|
ReadRegStr $uninstallString ShCtx "Software\Microsoft\Windows\CurrentVersion\Uninstall\RedPanda-C++" "UninstallString"
|
|
|
|
${If} $uninstallString != ""
|
|
|
|
GetFullPathName $installLocation "$uninstallString\.." ; remove '\uninstall.exe'
|
2021-11-07 10:48:09 +08:00
|
|
|
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \
|
2024-03-30 00:00:56 +08:00
|
|
|
"$(MessageUninstallExisting)" \
|
|
|
|
/SD IDNO \
|
|
|
|
IDOK uninst
|
2021-11-07 10:48:09 +08:00
|
|
|
Abort
|
2024-03-30 00:00:56 +08:00
|
|
|
uninst:
|
|
|
|
ClearErrors
|
|
|
|
HideWindow
|
|
|
|
ClearErrors
|
|
|
|
ExecWait '"$uninstallString" _?=$installLocation'
|
|
|
|
Delete "$uninstallString"
|
|
|
|
RMDir "$installLocation"
|
|
|
|
BringToFront
|
|
|
|
${EndIf}
|
2021-11-07 10:48:09 +08:00
|
|
|
FunctionEnd
|
|
|
|
|
2021-11-05 10:44:23 +08:00
|
|
|
####################################################################
|
|
|
|
# uninstall
|
|
|
|
|
|
|
|
UninstallText "$(MessageUninstallText)"
|
|
|
|
ShowUninstDetails show
|
|
|
|
|
|
|
|
Section "Uninstall"
|
|
|
|
|
|
|
|
; Remove uninstaller
|
|
|
|
Delete "$INSTDIR\uninstall.exe"
|
|
|
|
|
2024-03-28 14:54:17 +08:00
|
|
|
; Remove start menu stuff
|
2021-11-07 10:48:09 +08:00
|
|
|
Delete "$SMPROGRAMS\$(MessageAppName)\$(MessageAppName).lnk"
|
|
|
|
Delete "$SMPROGRAMS\$(MessageAppName)\License.lnk"
|
|
|
|
Delete "$SMPROGRAMS\$(MessageAppName)\Uninstall $(MessageAppName).lnk"
|
|
|
|
RMDir "$SMPROGRAMS\$(MessageAppName)"
|
2024-03-28 14:54:17 +08:00
|
|
|
|
|
|
|
; Remove desktop stuff
|
2021-11-07 13:37:23 +08:00
|
|
|
Delete "$QUICKLAUNCH\$(MessageAppName).lnk"
|
|
|
|
Delete "$DESKTOP\$(MessageAppName).lnk"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
DeleteRegKey HKCR "DevCpp.dev"
|
|
|
|
DeleteRegKey HKCR "DevCpp.c"
|
|
|
|
DeleteRegKey HKCR "DevCpp.cpp"
|
|
|
|
DeleteRegKey HKCR "DevCpp.cxx"
|
|
|
|
DeleteRegKey HKCR "DevCpp.cc"
|
|
|
|
DeleteRegKey HKCR "DevCpp.h"
|
|
|
|
DeleteRegKey HKCR "DevCpp.hpp"
|
|
|
|
DeleteRegKey HKCR "DevCpp.hxx"
|
2024-03-29 19:14:30 +08:00
|
|
|
${NotifyShell_AssocChanged}
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
Delete "$INSTDIR\NEWS.md"
|
|
|
|
Delete "$INSTDIR\RedPandaIDE.exe"
|
|
|
|
Delete "$INSTDIR\ConsolePauser.exe"
|
2022-02-25 12:06:04 +08:00
|
|
|
Delete "$INSTDIR\redpanda-win-git-askpass.exe"
|
2021-11-05 10:44:23 +08:00
|
|
|
Delete "$INSTDIR\astyle.exe"
|
|
|
|
Delete "$INSTDIR\LICENSE"
|
|
|
|
Delete "$INSTDIR\README.md"
|
2023-11-19 16:41:36 +08:00
|
|
|
Delete "$INSTDIR\qt.conf"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
RMDir /r "$INSTDIR\Lang"
|
|
|
|
RMDir /r "$INSTDIR\Templates"
|
2024-03-29 08:22:02 +08:00
|
|
|
RMDir /r "$INSTDIR\mingw32"
|
|
|
|
RMDir /r "$INSTDIR\mingw64"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
2024-03-30 00:00:56 +08:00
|
|
|
RMDir "$INSTDIR"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
|
|
|
; Remove registry keys
|
2024-03-28 14:54:17 +08:00
|
|
|
DeleteRegKey ShCtx "Software\Microsoft\Windows\CurrentVersion\Uninstall\RedPanda-C++"
|
|
|
|
DeleteRegKey ShCtx "Software\RedPanda-C++"
|
2021-11-05 10:44:23 +08:00
|
|
|
|
2024-03-29 08:12:48 +08:00
|
|
|
MessageBox MB_YESNO "$(MessageRemoveConfig)" /SD IDNO IDNO SkipRemoveConfig
|
2021-11-07 10:48:09 +08:00
|
|
|
RMDir /r "$APPDATA\RedPandaIDE"
|
2024-03-29 08:12:48 +08:00
|
|
|
SkipRemoveConfig:
|
2021-11-05 10:44:23 +08:00
|
|
|
|
2024-03-28 14:54:17 +08:00
|
|
|
SectionEnd
|