mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-12 13:12:07 +00:00
nsis: use modern ui
This commit is contained in:
parent
f65a956c81
commit
86c42edf6b
1 changed files with 18 additions and 6 deletions
|
@ -7,6 +7,8 @@
|
||||||
;
|
;
|
||||||
; you have to copy SDL.dll and libcurl-4.dll here manually
|
; you have to copy SDL.dll and libcurl-4.dll here manually
|
||||||
|
|
||||||
|
!include "MUI2.nsh"
|
||||||
|
|
||||||
; The name of the installer
|
; The name of the installer
|
||||||
Name "ioquake3"
|
Name "ioquake3"
|
||||||
|
|
||||||
|
@ -21,15 +23,25 @@ InstallDir $PROGRAMFILES\ioquake3
|
||||||
InstallDirRegKey HKLM "Software\ioquake3" "Install_Dir"
|
InstallDirRegKey HKLM "Software\ioquake3" "Install_Dir"
|
||||||
|
|
||||||
;--------------------------------
|
;--------------------------------
|
||||||
|
;Interface Settings
|
||||||
|
|
||||||
; Pages
|
!define MUI_ABORTWARNING
|
||||||
|
|
||||||
Page components
|
;--------------------------------
|
||||||
Page directory
|
;Pages
|
||||||
Page instfiles
|
|
||||||
|
|
||||||
UninstPage uninstConfirm
|
#!insertmacro MUI_PAGE_LICENSE "${NSISDIR}\Docs\Modern UI\License.txt"
|
||||||
UninstPage instfiles
|
!insertmacro MUI_PAGE_COMPONENTS
|
||||||
|
!insertmacro MUI_PAGE_DIRECTORY
|
||||||
|
!insertmacro MUI_PAGE_INSTFILES
|
||||||
|
|
||||||
|
!insertmacro MUI_UNPAGE_CONFIRM
|
||||||
|
!insertmacro MUI_UNPAGE_INSTFILES
|
||||||
|
|
||||||
|
;--------------------------------
|
||||||
|
;Languages
|
||||||
|
|
||||||
|
!insertmacro MUI_LANGUAGE "English"
|
||||||
|
|
||||||
;--------------------------------
|
;--------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue