macro system updates

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1474 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2002-10-26 17:39:56 +00:00
parent bbc2dfe43a
commit 10efaf2ccb
4 changed files with 70 additions and 39 deletions

View file

@ -1,5 +1,5 @@
;NSIS Modern UI version 1.3
;Basic Example Script
;NSIS Modern User Interface version 1.3
;Basic Macro System Example Script
;Written by Joost Verburg
!define NAME "Test Software" ;Define your own software name here
@ -9,6 +9,8 @@
!include "${NSISDIR}\Contrib\Modern UI\System.nsh"
!verbose 4
;$9 is the variable used to store the current page, do not use this var!
;--------------------------------
;Configuration
@ -29,16 +31,15 @@
Name "${NAME} ${VERSION}"
OutFile "Basic.exe"
;User interface - icons, ui file, check bitmap, progress bar etc.
!insertmacro MUI_INTERFACE "modern.exe" "modern-install.ico" "modern-uninstall.ico" "modern.bmp" "smooth" "Tahoma" "$9" ;$9 is the variable used to store the current page, do not use this var!
!insertmacro MUI_INTERFACE
;License dialog
;License page
LicenseData "${NSISDIR}\Contrib\Modern UI\License.txt"
;Descriptions
LangString DESC_SecCopyUI ${LANG_ENGLISH} "Copy the modern.exe file to the application folder."
;Folder-select dialog
;Folder-selection page
InstallDir "$PROGRAMFILES\${NAME}"
;--------------------------------