Changeset 070b93
- Timestamp:
- 04/27/2009 11:18:01 PM (16 years ago)
- Children:
- 93ccb9
- Parents:
- ab8460
- Location:
- win32
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
win32/deluge-bbfreeze.py
rab8460 r070b93 1 build_version = "1.1. 6"1 build_version = "1.1.7" 2 2 python_path = "C:\\Python25\\" 3 3 -
win32/deluge-win32-installer.nsi
rab8460 r070b93 1 1 # Deluge Windows installer script 2 # Version 0. 3.1, 18-Apr-20092 # Version 0.4 28-Apr-2009 3 3 4 4 # Copyright (C) 2009 by … … 26 26 # 27 27 28 # Set default compressor 29 SetCompressor lzma 30 28 31 ### 29 ### --- Some of these !define'sneed to be updated with new Deluge versions ---32 ### --- The PROGRAM_VERSION !define need to be updated with new Deluge versions --- 30 33 ### 31 34 32 35 # Script version; displayed when running the installer 33 !define DELUGE_INSTALLER_VERSION "0. 3.1"36 !define DELUGE_INSTALLER_VERSION "0.4" 34 37 35 38 # Deluge program information 36 39 !define PROGRAM_NAME "Deluge" 37 !define PROGRAM_VERSION "1.1. 6"40 !define PROGRAM_VERSION "1.1.7" 38 41 !define PROGRAM_WEB_SITE "http://deluge-torrent.org" 39 42 … … 189 192 SectionEnd 190 193 191 Section -Uninstaller _Registry194 Section -Uninstaller 192 195 WriteUninstaller "$INSTDIR\Deluge-uninst.exe" 193 196 WriteRegStr ${PROGRAM_UNINST_ROOT_KEY} "${PROGRAM_UNINST_KEY}" "DisplayName" "$(^Name)" 194 197 WriteRegStr ${PROGRAM_UNINST_ROOT_KEY} "${PROGRAM_UNINST_KEY}" "UninstallString" "$INSTDIR\Deluge-uninst.exe" 195 198 WriteRegStr ${PROGRAM_UNINST_ROOT_KEY} "${PROGRAM_UNINST_KEY}" "DisplayIcon" "$INSTDIR\deluge.ico" 196 199 SectionEnd 200 201 # Create file association for .torrent 202 Section "Create .torrent file association for Deluge" Section2 197 203 # Set up file association for .torrent files 198 204 DeleteRegKey HKCR ".torrent" … … 209 215 210 216 # Install GTK+ 2.12 211 Section "GTK+ 2.12 runtime" Section 2217 Section "GTK+ 2.12 runtime" Section3 212 218 # Check whether GTK+ 2.12 is installed on the system; if so skip this section 213 219 # The criterion is whether the registry key HKLM\SOFTWARE\GTK\2.0\Version exists … … 258 264 259 265 LangString DESC_Section1 ${LANG_ENGLISH} "Install Deluge Bittorrent client." 260 LangString DESC_Section2 ${LANG_ENGLISH} "Download and install the GTK+ 2.12 runtime. \ 266 LangString DESC_Section2 ${LANG_ENGLISH} "Select this option unless you have another torrent client which you want to use for opening .torrent files." 267 LangString DESC_Section3 ${LANG_ENGLISH} "Download and install the GTK+ 2.12 runtime. \ 261 268 This is skipped automatically if GTK+ is already installed." 262 269 … … 264 271 !insertmacro MUI_DESCRIPTION_TEXT ${Section1} $(DESC_Section1) 265 272 !insertmacro MUI_DESCRIPTION_TEXT ${Section2} $(DESC_Section2) 273 !insertmacro MUI_DESCRIPTION_TEXT ${Section2} $(DESC_Section3) 266 274 !insertmacro MUI_FUNCTION_DESCRIPTION_END 267 275
Note:
See TracChangeset
for help on using the changeset viewer.