Features list updated, some links added and command parameters are now shown alone with a light background behind them.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1476 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-10-26 19:23:10 +00:00
parent 2bb6c55b0f
commit 41a03f754c
24 changed files with 497 additions and 464 deletions

View file

@ -6,41 +6,36 @@ Each NSIS installer contains one or more Sections. Each These sections are creat
\b Sections are executed in order by the resulting installer, and if ComponentText is set, the user will have the option of disabling/enabling each section.
\b If a section's name is 'Uninstall', then it is a special Uninstall Section.
\b If a section's name is 'Uninstall', then it is a special Uninstall Section.
\H{saddsize} AddSize
AddSize \e{size_kb}
\c 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).
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).
\H{ssection} Section
Section \e{([/e] [section_name] [section index output]}
\c ([/e] [section_name] [section index output]
Begins annd opens a new section. If section_name is empty, omitted, or begins with a -, then it is a required section and the user will not see it, nor have the option of disabling it. If the section name is 'Uninstall', then it is a special Uninstall Section. If section index output is specified, the parameter will be !defined with the section index (that can be used for SectionSetText etc. If the section name begins with a !, the section will be displayed as bold. If /e is present, the sub sections of the section will be expanded by default.
\H{ssectionend} SectionEnd
SectionEnd
This command closes the current open section.
This command closes the current open section.
\H{ssectionin} SectionIn
SectionIn \e{insttype_index [insttype_index] [RO]}
\c 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.
\H{ssubsection} SubSection
SubSection \e{[/e] Caption}
\c [/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.
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.
\H{ssubsectionend} SubSectionEnd
SubSectionEnd
Closes a subsection opened with SubSection.
Closes a subsection opened with SubSection.