version 1.21
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1231 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
778f157b68
commit
1947c3354a
5 changed files with 15 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
;NSIS Modern Style UI version 1.20b
|
||||
;NSIS Modern Style UI version 1.21
|
||||
;Example Script
|
||||
;Written by Joost Verburg
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
;NSIS Modern Style UI version 1.20b
|
||||
;NSIS Modern Style UI version 1.21
|
||||
;InstallOptions Example Script
|
||||
;Written by Joost Verburg
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
;Modern UI Header File version 1.20b
|
||||
;Modern UI Header File version 1.21
|
||||
;Written by Joost Verburg
|
||||
|
||||
;See Example.nsi & Multilanguage.nsi for an example of usage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
;NSIS Modern Style UI version 1.20b
|
||||
;NSIS Modern Style UI version 1.21
|
||||
;Multilanguage & LangDLL Example Script
|
||||
;Written by Joost Verburg
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
|||
;Component-select dialog
|
||||
ComponentText /LANG=${LANG_ENGLISH} "Check the components you want to install and uncheck the components you don't want to install. Click Next to continue."
|
||||
ComponentText /LANG=${LANG_DUTCH} "Selecteer de onderdelen die u wilt installer en deselecteer de onderdelen die u niet wilt installeren. Klik Volgende om verder te gaan."
|
||||
LangString SecCreateUninstName ${LANG_ENGLISH} "Uninstaller"
|
||||
LangString SecCreateUninstName ${LANG_DUTCH} "Deïnstallatie programma"
|
||||
|
||||
;Folder-select dialog
|
||||
InstallDir "$PROGRAMFILES\${NAME}"
|
||||
|
@ -50,7 +52,7 @@
|
|||
;--------------------------------
|
||||
;Installer Sections
|
||||
|
||||
Section "Modern.exe" SecCopyUI
|
||||
Section "modern.exe" SecCopyUI
|
||||
|
||||
;Add your stuff here
|
||||
|
||||
|
@ -59,7 +61,7 @@ Section "Modern.exe" SecCopyUI
|
|||
|
||||
SectionEnd
|
||||
|
||||
Section "Create uninstaller" SecCreateUninst
|
||||
Section $(SecCreateUninstName) SecCreateUninst
|
||||
|
||||
;Write the language to the registry (for the uninstaller)
|
||||
WriteRegStr HKCU "Software\${NAME}" "Installer Language" "$LANGUAGE"
|
||||
|
@ -88,9 +90,6 @@ Function .onInit
|
|||
StrCmp $LANGUAGE "cancel" 0 +2
|
||||
Abort
|
||||
|
||||
StrCmp $LANGUAGE ${LANG_DUTCH} "" +2
|
||||
SectionSetText ${SecCreateUninst} "Deïnstallatie programma"
|
||||
|
||||
FunctionEnd
|
||||
|
||||
Function .onInitDialog
|
||||
|
|
|
@ -126,6 +126,13 @@ table
|
|||
file and recompile NSIS.</p>
|
||||
<p class="header">Version history</p>
|
||||
<ul>
|
||||
<li class="text">1.21 - September 30, 2002
|
||||
<ul>
|
||||
<li>Temp vars set in Modern UI header
|
||||
<li>Currentpage & Install Options vars should be set using parameters of the
|
||||
MUI_INTERFACE and MUI_INSTALLOPTIONS macro's
|
||||
<li>MultiLanguage.nsi uses the new language strings
|
||||
</ul>
|
||||
<li class="text">1.20 - September 22, 2002
|
||||
<ul>
|
||||
<li>Lots of macro system updates & fixes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue