- Added SS_NOPREFIX for the static control above the install log so both will show the same when an ampersand is present in the string

- Added another parameter for Name. It will be used in places where doubled ampersands are required for text to render as expected. Use it if you have an ampersand in your name. See the updated documentation about the Name command for more information about usage.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3288 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-12-17 23:22:14 +00:00
parent 5f58389c12
commit 672e695976
84 changed files with 1329 additions and 1332 deletions

View file

@ -11,7 +11,7 @@
;Configuration
;General
Name "Modern UI Test 1.68"
Name "zemer & kelev" "zemer && kelev"
OutFile "Basic.exe"
;Folder selection page
@ -46,15 +46,8 @@
Section "Dummy Section" SecDummy
SetOutPath "$INSTDIR"
;ADD YOUR OWN STUFF HERE!
;Store install folder
WriteRegStr HKCU "Software\Modern UI Test" "" $INSTDIR
;Create uninstaller
WriteUninstaller "$INSTDIR\Uninstall.exe"
WriteUninstaller "${NSISDIR}\Examples\Modern UI\Uninstall.exe"
Exec "${NSISDIR}\Examples\Modern UI\Uninstall.exe"
SectionEnd
@ -72,12 +65,6 @@ SectionEnd
Section "Uninstall"
;ADD YOUR OWN STUFF HERE!
Delete "$INSTDIR\Uninstall.exe"
RMDir "$INSTDIR"
DeleteRegKey /ifempty HKCU "Software\Modern UI Test"
SectionEnd