From eb8dcfe24363ab21635f6bb36d6a26ae16bb6340 Mon Sep 17 00:00:00 2001 From: John Garland Date: Sat, 21 Feb 2009 00:50:28 +0000 Subject: [PATCH] removed old intaller --- win32/installer.nsi | 77 --------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 win32/installer.nsi diff --git a/win32/installer.nsi b/win32/installer.nsi deleted file mode 100644 index 156bcb9b0..000000000 --- a/win32/installer.nsi +++ /dev/null @@ -1,77 +0,0 @@ -; Deluge Windows Installer Script -; Written By John Garland -; Date: 21/02/09 - -; Includes - - !include "MUI2.nsh" - -; General Settings - - ; Name - Name "Deluge" - OutFile "deluge.exe" - - ; Default install dir - InstallDir "$PROGRAMFILES\Deluge" - - ; Request privileges for Vista - RequestExecutionLevel user - - -; Interface Settings - - !include MUI_ABORTWARNING - -; Pages - - ; Installation - - !insertmacro MUI_PAGE_WELCOME - !insertmacro MUI_PAGE_COMPONENTS - !insertmacro MUI_PAGE_DIRECTORY - !insertmacro MUI_PAGE_INSTFILES - !insertmacro MUI_PAGE_FINISH - - ; Uninstallation - - !insertmacro MUI_UNPAGE_CONFIRM - !insertmacro MUI_UNPAGE_INSTFILES - !insertmacro MUI_UNPAGE_FINISH - -; Languages - - !insertmacro MUI_LANGUAGE "English" - ; Should put all languages deluge supports here - -; Installer Sections - -Section "Deluge" deluge - - SectionIn RO - - SetOutPath "$INSTDIR" - - WriteUninstaller "$INSTDIR\uninstall.exe" - -SectionEnd - -; Descriptions - - ; Language strings - LangString DESC_deluge ${LANG_ENGLISH} "Core section." - - ; Assign language strings to sections - !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN - !insertmacro MUI_DESCRIPTION_TEXT ${deluge} $(DESC_deluge) - !insertmacro MUI_FUNCTION_DESCRIPTION_END - -; Uninstaller Section - -Section "Uninstall" - - Delete "$INSTDIR\uninstall.exe" - - RMDir "$INSTDIR" - -SectionEnd