|
|
|
|
@ -1,227 +1,9 @@ |
|
|
|
|
<<<<<<< HEAD |
|
|
|
|
RequestExecutionLevel user |
|
|
|
|
!include "FileAssociation.nsh" |
|
|
|
|
SetCompressor /SOLID /FINAL lzma |
|
|
|
|
|
|
|
|
|
!define PRODUCT_NAME "QupZilla" |
|
|
|
|
!define /date PRODUCT_VERSION "0.9.7" |
|
|
|
|
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\qupzilla.exe" |
|
|
|
|
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" |
|
|
|
|
!define PRODUCT_UNINST_ROOT_KEY "HKLM" |
|
|
|
|
|
|
|
|
|
!include "MUI.nsh" |
|
|
|
|
!define MUI_ABORTWARNING |
|
|
|
|
!define MUI_ICON "wininstall\install.ico" |
|
|
|
|
!define MUI_UNICON "wininstall\uninstall.ico" |
|
|
|
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "wininstall\welcome.bmp" |
|
|
|
|
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "wininstall\welcome.bmp" |
|
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_WELCOME |
|
|
|
|
!insertmacro MUI_PAGE_LICENSE COPYRIGHT.txt |
|
|
|
|
!insertmacro MUI_PAGE_COMPONENTS |
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY |
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES |
|
|
|
|
|
|
|
|
|
!define MUI_FINISHPAGE_RUN "$INSTDIR\qupzilla.exe" |
|
|
|
|
!insertmacro MUI_PAGE_FINISH |
|
|
|
|
|
|
|
|
|
!insertmacro MUI_UNPAGE_WELCOME |
|
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM |
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES |
|
|
|
|
!insertmacro MUI_UNPAGE_FINISH |
|
|
|
|
|
|
|
|
|
!insertmacro MUI_LANGUAGE "English" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Czech" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Slovak" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Dutch" |
|
|
|
|
!insertmacro MUI_LANGUAGE "French" |
|
|
|
|
!insertmacro MUI_LANGUAGE "German" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Korean" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Russian" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Spanish" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Swedish" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Tradchinese" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Simpchinese" |
|
|
|
|
|
|
|
|
|
!insertmacro MUI_RESERVEFILE_LANGDLL |
|
|
|
|
|
|
|
|
|
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}" |
|
|
|
|
OutFile "${PRODUCT_NAME} ${PRODUCT_VERSION} Installer.exe" |
|
|
|
|
InstallDir "$PROGRAMFILES\${PRODUCT_NAME}\" |
|
|
|
|
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" "" |
|
|
|
|
ShowInstDetails show |
|
|
|
|
ShowUnInstDetails show |
|
|
|
|
|
|
|
|
|
!include "wininstall\languages.nsh" |
|
|
|
|
|
|
|
|
|
Section !$(TITLE_SecMain) SecMain |
|
|
|
|
SectionIn RO |
|
|
|
|
KillProcDLL::KillProc "qupzilla.exe" |
|
|
|
|
Sleep 100 |
|
|
|
|
SetOverwrite on |
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR" |
|
|
|
|
File "COPYRIGHT.txt" |
|
|
|
|
File "qupzilla.exe" |
|
|
|
|
File "libeay32.dll" |
|
|
|
|
File "ssleay32.dll" |
|
|
|
|
File "libssl32.dll" |
|
|
|
|
File "msvcp90.dll" |
|
|
|
|
File "msvcr90.dll" |
|
|
|
|
File "phonon4.dll" |
|
|
|
|
File "QtCore4.dll" |
|
|
|
|
File "QtGui4.dll" |
|
|
|
|
File "QtNetwork4.dll" |
|
|
|
|
File "QtSql4.dll" |
|
|
|
|
File "QtWebKit4.dll" |
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR\data\default\profiles" |
|
|
|
|
File "data\default\profiles\profiles.ini" |
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR\data\default\profiles\default" |
|
|
|
|
File "data\default\profiles\default\background.png" |
|
|
|
|
File "data\default\profiles\default\browsedata.db" |
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR\imageformats" |
|
|
|
|
File "imageformats\qico4.dll" |
|
|
|
|
File "imageformats\qsvg4.dll" |
|
|
|
|
File "imageformats\qgif4.dll" |
|
|
|
|
File "imageformats\qjpeg4.dll" |
|
|
|
|
File "imageformats\qtiff4.dll" |
|
|
|
|
File "imageformats\qmng4.dll" |
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR\sqldrivers" |
|
|
|
|
File "sqldrivers\qsqlite4.dll" |
|
|
|
|
File "sqldrivers\qsqlodbc4.dll" |
|
|
|
|
|
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
SectionGroup $(TITLE_SecTranslations) SecTranslations |
|
|
|
|
Section $(TITLE_SecEnglish) SecEnglish |
|
|
|
|
SectionIn RO |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section $(TITLE_SecCzech) SecCzech |
|
|
|
|
SetOutPath "$INSTDIR\locale" |
|
|
|
|
File "locale\cs_CZ.qm" |
|
|
|
|
File "locale\qt_cs.qm" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section $(TITLE_SecSlovak) SecSlovak |
|
|
|
|
SetOutPath "$INSTDIR\locale" |
|
|
|
|
File "locale\sk_SK.qm" |
|
|
|
|
File "locale\qt_sk.qm" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
SectionGroupEnd |
|
|
|
|
|
|
|
|
|
SectionGroup $(TITLE_SecPlugins) SecPlugins |
|
|
|
|
Section $(TITLE_SecExamplePlugin) SecExamplePlugin |
|
|
|
|
SetOutPath "$INSTDIR\plugins" |
|
|
|
|
File "plugins\ExamplePlugin.dll" |
|
|
|
|
SectionEnd |
|
|
|
|
SectionGroupEnd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Section "-Register Extension" |
|
|
|
|
SetOutPath "$INSTDIR" |
|
|
|
|
${registerExtension} "$INSTDIR\qupzilla.exe" ".htm" "HTM File" |
|
|
|
|
${registerExtension} "$INSTDIR\qupzilla.exe" ".html" "HTML File" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section "-StartMenu" |
|
|
|
|
SetOutPath "$INSTDIR" |
|
|
|
|
SetShellVarContext all |
|
|
|
|
CreateDirectory "$SMPROGRAMS\QupZilla" |
|
|
|
|
CreateShortCut "$SMPROGRAMS\QupZilla\Uninstall.lnk" "$INSTDIR\Uninstall.exe" |
|
|
|
|
CreateShortCut "$SMPROGRAMS\QupZilla\QupZilla.lnk" "$INSTDIR\qupzilla.exe" |
|
|
|
|
CreateShortCut "$SMPROGRAMS\QupZilla\License.lnk" "$INSTDIR\COPYRIGHT.txt" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section $(TITLE_SecDesktop) SecDesktop |
|
|
|
|
SetOutPath "$INSTDIR" |
|
|
|
|
CreateShortCut "$DESKTOP\QupZilla.lnk" "$INSTDIR\qupzilla.exe" "" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecMain} $(DESC_SecMain) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecTranslations} $(DESC_SecTranslations) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecEnglish} $(DESC_SecEnglish) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecCzech} $(DESC_SecCzech) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecSlovak} $(DESC_SecSlovak) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecPlugins} $(DESC_SecPlugins) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecExamplePlugin} $(DESC_SecExamplePlugin) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecDesktop} $(DESC_SecDesktop) |
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END |
|
|
|
|
|
|
|
|
|
Section "-Uninstaller" |
|
|
|
|
WriteUninstaller "$INSTDIR\uninstall.exe" |
|
|
|
|
WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\qupzilla.exe" |
|
|
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)" |
|
|
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\Uninstall.exe" |
|
|
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\qupzilla.exe" |
|
|
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section Uninstall |
|
|
|
|
KillProcDLL::KillProc "qupzilla.exe" |
|
|
|
|
Sleep 100 |
|
|
|
|
|
|
|
|
|
SetShellVarContext all |
|
|
|
|
Delete "$DESKTOP\QupZilla.lnk" |
|
|
|
|
RMDir /r "$INSTDIR" |
|
|
|
|
RMDir /r "$SMPROGRAMS\QupZilla" |
|
|
|
|
DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" |
|
|
|
|
DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}" |
|
|
|
|
${unregisterExtension} ".htm" "HTM File" |
|
|
|
|
${unregisterExtension} ".html" "HTML File" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
BrandingText "${PRODUCT_NAME} ${PRODUCT_VERSION} Installer" |
|
|
|
|
|
|
|
|
|
Function .onInit |
|
|
|
|
;Language selection dialog |
|
|
|
|
|
|
|
|
|
Push "" |
|
|
|
|
Push ${LANG_ENGLISH} |
|
|
|
|
Push English |
|
|
|
|
Push ${LANG_CZECH} |
|
|
|
|
Push Czech |
|
|
|
|
Push ${LANG_DUTCH} |
|
|
|
|
Push Dutch |
|
|
|
|
Push ${LANG_FRENCH} |
|
|
|
|
Push French |
|
|
|
|
Push ${LANG_GERMAN} |
|
|
|
|
Push German |
|
|
|
|
Push ${LANG_KOREAN} |
|
|
|
|
Push Korean |
|
|
|
|
Push ${LANG_RUSSIAN} |
|
|
|
|
Push Russian |
|
|
|
|
Push ${LANG_SPANISH} |
|
|
|
|
Push Spanish |
|
|
|
|
Push ${LANG_SWEDISH} |
|
|
|
|
Push Swedish |
|
|
|
|
Push ${LANG_TRADCHINESE} |
|
|
|
|
Push "Traditional Chinese" |
|
|
|
|
Push ${LANG_SIMPCHINESE} |
|
|
|
|
Push "Simplified Chinese" |
|
|
|
|
Push ${LANG_SLOVAK} |
|
|
|
|
Push Slovak |
|
|
|
|
Push A ; A means auto count languages |
|
|
|
|
; for the auto count to work the first empty push (Push "") must remain |
|
|
|
|
LangDLL::LangDialog "Installer Language" "Please select the language of the installer" |
|
|
|
|
|
|
|
|
|
Pop $LANGUAGE |
|
|
|
|
StrCmp $LANGUAGE "cancel" 0 +2 |
|
|
|
|
Abort |
|
|
|
|
FunctionEnd |
|
|
|
|
======= |
|
|
|
|
RequestExecutionLevel user |
|
|
|
|
!include "FileAssociation.nsh" |
|
|
|
|
|
|
|
|
|
SetCompressor /SOLID /FINAL lzma |
|
|
|
|
|
|
|
|
|
!define PRODUCT_NAME "QupZilla" |
|
|
|
|
!define /date PRODUCT_VERSION "0.9.8" |
|
|
|
|
!define /date PRODUCT_VERSION "0.9.7" |
|
|
|
|
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\qupzilla.exe" |
|
|
|
|
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" |
|
|
|
|
!define PRODUCT_UNINST_ROOT_KEY "HKLM" |
|
|
|
|
@ -234,6 +16,8 @@ SetCompressor /SOLID /FINAL lzma |
|
|
|
|
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "wininstall\welcome.bmp" |
|
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_WELCOME |
|
|
|
|
!insertmacro MUI_PAGE_LICENSE COPYRIGHT.txt |
|
|
|
|
!insertmacro MUI_PAGE_COMPONENTS |
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY |
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES |
|
|
|
|
|
|
|
|
|
@ -258,6 +42,8 @@ SetCompressor /SOLID /FINAL lzma |
|
|
|
|
!insertmacro MUI_LANGUAGE "Tradchinese" |
|
|
|
|
!insertmacro MUI_LANGUAGE "Simpchinese" |
|
|
|
|
|
|
|
|
|
!insertmacro MUI_RESERVEFILE_LANGDLL |
|
|
|
|
|
|
|
|
|
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}" |
|
|
|
|
OutFile "${PRODUCT_NAME} ${PRODUCT_VERSION} Installer.exe" |
|
|
|
|
InstallDir "$PROGRAMFILES\${PRODUCT_NAME}\" |
|
|
|
|
@ -265,17 +51,17 @@ InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" "" |
|
|
|
|
ShowInstDetails show |
|
|
|
|
ShowUnInstDetails show |
|
|
|
|
|
|
|
|
|
Section "Main Components" |
|
|
|
|
!include "wininstall\languages.nsh" |
|
|
|
|
|
|
|
|
|
Section !$(TITLE_SecMain) SecMain |
|
|
|
|
SectionIn RO |
|
|
|
|
KillProcDLL::KillProc "qupzilla.exe" |
|
|
|
|
Sleep 100 |
|
|
|
|
SetOverwrite on |
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR" |
|
|
|
|
File "COPYRIGHT.txt" |
|
|
|
|
File "qupzilla.exe" |
|
|
|
|
File "AUTHORS" |
|
|
|
|
File "COPYRIGHT" |
|
|
|
|
File "GPLv3" |
|
|
|
|
File "README" |
|
|
|
|
File "libeay32.dll" |
|
|
|
|
File "ssleay32.dll" |
|
|
|
|
File "libssl32.dll" |
|
|
|
|
@ -303,34 +89,75 @@ Section "Main Components" |
|
|
|
|
File "imageformats\qtiff4.dll" |
|
|
|
|
File "imageformats\qmng4.dll" |
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR\sqldrivers" |
|
|
|
|
File "sqldrivers\qsqlite4.dll" |
|
|
|
|
File "sqldrivers\qsqlodbc4.dll" |
|
|
|
|
|
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
SectionGroup $(TITLE_SecTranslations) SecTranslations |
|
|
|
|
Section $(TITLE_SecEnglish) SecEnglish |
|
|
|
|
SectionIn RO |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section $(TITLE_SecCzech) SecCzech |
|
|
|
|
SetOutPath "$INSTDIR\locale" |
|
|
|
|
File "locale\cs_CZ.qm" |
|
|
|
|
File "locale\qt_cs.qm" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section $(TITLE_SecSlovak) SecSlovak |
|
|
|
|
SetOutPath "$INSTDIR\locale" |
|
|
|
|
File "locale\sk_SK.qm" |
|
|
|
|
File "locale\qt_sk.qm" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
SectionGroupEnd |
|
|
|
|
|
|
|
|
|
SectionGroup $(TITLE_SecPlugins) SecPlugins |
|
|
|
|
Section $(TITLE_SecExamplePlugin) SecExamplePlugin |
|
|
|
|
SetOutPath "$INSTDIR\plugins" |
|
|
|
|
File "plugins\ExamplePlugin.dll" |
|
|
|
|
SectionEnd |
|
|
|
|
SectionGroupEnd |
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR\sqldrivers" |
|
|
|
|
File "sqldrivers\qsqlite4.dll" |
|
|
|
|
File "sqldrivers\qsqlodbc4.dll" |
|
|
|
|
|
|
|
|
|
Section "-Register Extension" |
|
|
|
|
SetOutPath "$INSTDIR" |
|
|
|
|
${registerExtension} "$INSTDIR\qupzilla.exe" ".htm" "HTM File" |
|
|
|
|
${registerExtension} "$INSTDIR\qupzilla.exe" ".html" "HTML File" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section Icons |
|
|
|
|
Section "-StartMenu" |
|
|
|
|
SetOutPath "$INSTDIR" |
|
|
|
|
SetShellVarContext all |
|
|
|
|
CreateDirectory "$SMPROGRAMS\QupZilla" |
|
|
|
|
CreateShortCut "$SMPROGRAMS\QupZilla\Uninstall.lnk" "$INSTDIR\Uninstall.exe" |
|
|
|
|
CreateShortCut "$SMPROGRAMS\QupZilla\QupZilla.lnk" "$INSTDIR\qupzilla.exe" |
|
|
|
|
CreateShortCut "$SMPROGRAMS\QupZilla\License.lnk" "$INSTDIR\COPYRIGHT.txt" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section $(TITLE_SecDesktop) SecDesktop |
|
|
|
|
SetOutPath "$INSTDIR" |
|
|
|
|
CreateShortCut "$SMPROGRAMS\QupZilla.lnk" "$INSTDIR\qupzilla.exe" "" |
|
|
|
|
CreateShortCut "$DESKTOP\QupZilla.lnk" "$INSTDIR\qupzilla.exe" "" |
|
|
|
|
${registerExtension} "$INSTDIR\qupzilla.exe" ".htm" "HTM_FILE" |
|
|
|
|
${registerExtension} "$INSTDIR\qupzilla.exe" ".html" "HTML_FILE" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
Section Uninstaller |
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecMain} $(DESC_SecMain) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecTranslations} $(DESC_SecTranslations) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecEnglish} $(DESC_SecEnglish) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecCzech} $(DESC_SecCzech) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecSlovak} $(DESC_SecSlovak) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecPlugins} $(DESC_SecPlugins) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecExamplePlugin} $(DESC_SecExamplePlugin) |
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecDesktop} $(DESC_SecDesktop) |
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END |
|
|
|
|
|
|
|
|
|
Section "-Uninstaller" |
|
|
|
|
WriteUninstaller "$INSTDIR\uninstall.exe" |
|
|
|
|
WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\qupzilla.exe" |
|
|
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)" |
|
|
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninstall.exe" |
|
|
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\Uninstall.exe" |
|
|
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\qupzilla.exe" |
|
|
|
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}" |
|
|
|
|
SectionEnd |
|
|
|
|
@ -338,13 +165,15 @@ SectionEnd |
|
|
|
|
Section Uninstall |
|
|
|
|
KillProcDLL::KillProc "qupzilla.exe" |
|
|
|
|
Sleep 100 |
|
|
|
|
Delete "$SMPROGRAMS\QupZilla.lnk" |
|
|
|
|
|
|
|
|
|
SetShellVarContext all |
|
|
|
|
Delete "$DESKTOP\QupZilla.lnk" |
|
|
|
|
RMDir /r "$INSTDIR" |
|
|
|
|
RMDir /r "$SMPROGRAMS\QupZilla" |
|
|
|
|
DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" |
|
|
|
|
DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}" |
|
|
|
|
${unregisterExtension} ".htm" "HTM_FILE" |
|
|
|
|
${unregisterExtension} ".html" "HTML_FILE" |
|
|
|
|
${unregisterExtension} ".htm" "HTM File" |
|
|
|
|
${unregisterExtension} ".html" "HTML File" |
|
|
|
|
SectionEnd |
|
|
|
|
|
|
|
|
|
BrandingText "${PRODUCT_NAME} ${PRODUCT_VERSION} Installer" |
|
|
|
|
@ -385,4 +214,3 @@ Function .onInit |
|
|
|
|
StrCmp $LANGUAGE "cancel" 0 +2 |
|
|
|
|
Abort |
|
|
|
|
FunctionEnd |
|
|
|
|
>>>>>>> f8e3ff9f75374ed31c8ed146ed40b1ff7bc9c543 |
|
|
|
|
|