Modern UI 1.69
* All uninstaller pages work without installer pages * Fixed top text on uninstaller license page git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3368 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
91574fa7ec
commit
f806c7ce4c
9 changed files with 94 additions and 87 deletions
|
@ -1,4 +1,4 @@
|
|||
;NSIS Modern User Interface version 1.68
|
||||
;NSIS Modern User Interface version 1.69
|
||||
;Welcome/Finish Page Example Script
|
||||
;Written by Joost Verburg
|
||||
|
||||
|
@ -11,13 +11,13 @@
|
|||
;Configuration
|
||||
|
||||
;General
|
||||
Name "Modern UI Test 1.68"
|
||||
Name "Modern UI Test 1.69"
|
||||
OutFile "WelcomeFinish.exe"
|
||||
|
||||
;Folder selection page
|
||||
;Default installation folder
|
||||
InstallDir "$PROGRAMFILES\Modern UI Test"
|
||||
|
||||
;Get install folder from registry if available
|
||||
;Get installation folder from registry if available
|
||||
InstallDirRegKey HKCU "Software\Modern UI Test" ""
|
||||
|
||||
;--------------------------------
|
||||
|
@ -54,7 +54,7 @@ Section "Dummy Section" SecDummy
|
|||
|
||||
;ADD YOUR OWN STUFF HERE!
|
||||
|
||||
;Store install folder
|
||||
;Store installation folder
|
||||
WriteRegStr HKCU "Software\Modern UI Test" "" $INSTDIR
|
||||
|
||||
;Create uninstaller
|
||||
|
@ -65,8 +65,10 @@ SectionEnd
|
|||
;--------------------------------
|
||||
;Descriptions
|
||||
|
||||
;Language strings
|
||||
LangString DESC_SecDummy ${LANG_ENGLISH} "A test section."
|
||||
|
||||
;Assign language strings to sections
|
||||
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
||||
!insertmacro MUI_DESCRIPTION_TEXT ${SecDummy} $(DESC_SecDummy)
|
||||
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue