ReserveFile
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1959 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
6896e04c79
commit
5cbb82a894
1 changed files with 9 additions and 4 deletions
|
@ -54,10 +54,6 @@ table
|
|||
font-style: italic;
|
||||
}
|
||||
|
||||
.changelog
|
||||
{
|
||||
}
|
||||
|
||||
.bigheader
|
||||
{
|
||||
margin: 10px;
|
||||
|
@ -432,6 +428,15 @@ in a section. Get it using ReadINIStr:</p>
|
|||
<pre class="margin">
|
||||
ReadINIStr $R0 "$PLUGINSDIR\test.ini" "Field 1" "State"
|
||||
</pre>
|
||||
<p class="subheader">ReserveFile</p>
|
||||
<p class="text">It you are using BZIP2 compression and your .onInit and Page
|
||||
functions are not above all other sections/functions with File commands, use
|
||||
ReserveFile on the top of your script to put the DLL/INI files first in the
|
||||
data block, which will make your installer start faster:</p>
|
||||
<pre class="margin">
|
||||
ReserveFile "${NSISDIR}\Plugins\test.ini"
|
||||
ReserveFile "${NSISDIR}\Plugins\InstallOptions.dll"
|
||||
</pre>
|
||||
<p class="header">Fonts and colors</p>
|
||||
<p class="text">If you want to use custom fonts or colors on your InstallOptions
|
||||
dialogs, you should use the initDialog and show functions. initDialog creates the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue