Added sections, functions, and labels. Now only instructions is left
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@970 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
a2b932dbe8
commit
beec5fe831
5 changed files with 76 additions and 3 deletions
|
@ -20,6 +20,29 @@ SectionIn \e{insttype_index [insttype_index] [RO]}
|
|||
|
||||
This command specifies which Install Types (see InstType) the current section defaults to the enabled state in. Multiple SectionIn commands can be specified (they are combined). If you specify RO as a parameter, then the section will be Read-Only, meaning it will always be set to install.
|
||||
|
||||
\S{ssectionend} SectionEnd
|
||||
|
||||
SectionEnd
|
||||
|
||||
This command closes the current open section.
|
||||
|
||||
\S{ssubsection} SubSection
|
||||
|
||||
SubSection \e{[/e] Caption}
|
||||
|
||||
This command inserts a subsection. The subsection must be close with SubSectionEnd, and should contain 1 or more Sections. If the subsection name begins with a !, the subsection will be displayed as bold. If /e is present, the sub sections of the sub section will be expanded by default.
|
||||
|
||||
\S{ssubsectionend} SubSectionEnd
|
||||
|
||||
SubSectionEnd
|
||||
|
||||
Closes a subsection opened with SubSection.
|
||||
|
||||
\S{saddsize} AddSize
|
||||
|
||||
AddSize \e{size_kb}
|
||||
|
||||
Tells the installer that the current section needs an additional "size_kb" kilobytes of disk space. Only valid within a section (will have no effect outside of a section or in a function).
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue