mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-11 02:48:39 +00:00
Added version numbers
Made description area smaller
This commit is contained in:
parent
857651789f
commit
4102ba9f31
1 changed files with 10 additions and 3 deletions
|
@ -8,8 +8,12 @@
|
||||||
|
|
||||||
; General Settings
|
; General Settings
|
||||||
|
|
||||||
|
; Version
|
||||||
|
!define DELUGE_VERSION "1.1.3"
|
||||||
|
!define SCRIPT_VERSION "0.1"
|
||||||
|
|
||||||
; Name
|
; Name
|
||||||
Name "Deluge"
|
Name "Deluge ${DELUGE_VERSION}"
|
||||||
OutFile "deluge.exe"
|
OutFile "deluge.exe"
|
||||||
|
|
||||||
; Default install dir
|
; Default install dir
|
||||||
|
@ -19,7 +23,7 @@
|
||||||
SetCompressor lzma
|
SetCompressor lzma
|
||||||
|
|
||||||
; Brand
|
; Brand
|
||||||
BrandingText "Deluge Windows Installer"
|
BrandingText "Deluge Windows Installer v${SCRIPT_VERSION}"
|
||||||
|
|
||||||
!ifndef NOINSTTYPES
|
!ifndef NOINSTTYPES
|
||||||
InstType "Full"
|
InstType "Full"
|
||||||
|
@ -73,6 +77,7 @@
|
||||||
!define MUI_HEADERIMAGE_RIGHT
|
!define MUI_HEADERIMAGE_RIGHT
|
||||||
!define MUI_HEADERIMAGE_BITMAP "installer-top.bmp"
|
!define MUI_HEADERIMAGE_BITMAP "installer-top.bmp"
|
||||||
!define MUI_WELCOMEFINISHPAGE_BITMAP "installer-side.bmp"
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "installer-side.bmp"
|
||||||
|
!define MUI_COMPONENTSPAGE_SMALLDESC
|
||||||
!define MUI_ABORTWARNING
|
!define MUI_ABORTWARNING
|
||||||
|
|
||||||
; Uninstaller
|
; Uninstaller
|
||||||
|
@ -182,11 +187,13 @@ SubSectionEnd
|
||||||
; Descriptions
|
; Descriptions
|
||||||
|
|
||||||
; Language strings
|
; Language strings
|
||||||
LangString DESC_deluge ${LANG_ENGLISH} "Core section."
|
LangString DESC_deluge ${LANG_ENGLISH} "Deluge 1.1.3"
|
||||||
|
LangString DESC_python ${LANG_ENGLISH} "Python 2.5.4"
|
||||||
|
|
||||||
; Assign language strings to sections
|
; Assign language strings to sections
|
||||||
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
||||||
!insertmacro MUI_DESCRIPTION_TEXT ${deluge} $(DESC_deluge)
|
!insertmacro MUI_DESCRIPTION_TEXT ${deluge} $(DESC_deluge)
|
||||||
|
!insertmacro MUI_DESCRIPTION_TEXT ${python} $(DESC_python)
|
||||||
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
||||||
|
|
||||||
; Uninstaller Section
|
; Uninstaller Section
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue