Added start and finish pages to NSIS installer...
...and made use of installer graphic.
This commit is contained in:
parent
7316f8127a
commit
4a4d5b5c3c
2 changed files with 6 additions and 1 deletions
|
@ -587,7 +587,7 @@ env.Alias('data-dist', data_tarball)
|
|||
# Windows installer
|
||||
#
|
||||
|
||||
env.WindowsInstaller([wesnoth, wesnoth_editor, Dir(installable_subs)] + glob("*.dll") + Split("README copyright COPYING"))
|
||||
env.WindowsInstaller([wesnoth, wesnoth_editor, wesnothd, Dir(installable_subs)] + glob("*.dll") + Split("README copyright COPYING"))
|
||||
|
||||
#
|
||||
# Making Mac OS X application bundles
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
;--------------------------------
|
||||
;Interface Settings
|
||||
|
||||
!define MUI_WELCOMEFINISHPAGE_BITMAP packaging\windows\WindowsInstallerGraphic.bmp
|
||||
!define MUI_ABORTWARNING
|
||||
|
||||
;--------------------------------
|
||||
|
@ -45,6 +46,7 @@
|
|||
;--------------------------------
|
||||
;Pages
|
||||
|
||||
!insertmacro MUI_PAGE_WELCOME
|
||||
!insertmacro MUI_PAGE_LICENSE "COPYING"
|
||||
!insertmacro MUI_PAGE_COMPONENTS
|
||||
!insertmacro MUI_PAGE_DIRECTORY
|
||||
|
@ -57,6 +59,9 @@
|
|||
!insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder
|
||||
|
||||
!insertmacro MUI_PAGE_INSTFILES
|
||||
|
||||
!define MUI_FINISHPAGE_RUN wesnoth.exe
|
||||
!define MUI_PAGE_FINISH
|
||||
|
||||
!insertmacro MUI_UNPAGE_CONFIRM
|
||||
!insertmacro MUI_UNPAGE_INSTFILES
|
||||
|
|
Loading…
Add table
Reference in a new issue