20 lines
586 B
Plaintext
20 lines
586 B
Plaintext
; UGX-Mods auto-installer by treminaor
|
|
|
|
; HM NIS Edit Wizard helper defines
|
|
!define PRODUCT_NAME "UGX Map Packager"
|
|
!define PRODUCT_VERSION "1.0"
|
|
!define PRODUCT_PUBLISHER "UGX-Mods"
|
|
!define PRODUCT_WEB_SITE "http://ugx-mods.com"
|
|
|
|
!include "MUI2.nsh"
|
|
|
|
; MUI Settings
|
|
!define MUI_ABORTWARNING
|
|
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico"
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
!insertmacro MUI_PAGE_LICENSE "${NSISDIR}\Contrib\License.txt"
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
!insertmacro MUI_PAGE_FINISH
|
|
!insertmacro MUI_LANGUAGE "English" |