summaryrefslogtreecommitdiff
path: root/Docs/src
diff options
context:
space:
mode:
authorDidier Raboud <odyx@debian.org>2018-03-31 20:38:12 +0200
committerDidier Raboud <odyx@debian.org>2018-03-31 20:38:12 +0200
commit3fc4c1d2ad654ac291a5941670b81b48333cd9ef (patch)
tree897f748c11ca9a82f6dba2748ae85ba97d0afe97 /Docs/src
parent7786f248e47038a04f3b7983d6f7790317feea5a (diff)
Import Upstream version 2.17
Diffstat (limited to 'Docs/src')
-rwxr-xr-xDocs/src/attributes.but2
-rwxr-xr-xDocs/src/history.but32
-rwxr-xr-xDocs/src/sec.but12
-rwxr-xr-xDocs/src/tutorial.but2
4 files changed, 45 insertions, 3 deletions
diff --git a/Docs/src/attributes.but b/Docs/src/attributes.but
index 74f2944..7d6bd38 100755
--- a/Docs/src/attributes.but
+++ b/Docs/src/attributes.but
@@ -336,7 +336,7 @@ Sets whether or not the details of the uninstall are shown. Can be 'hide' to hid
\c \\<b\\>normal\\</b\\>|silent|silentlog
-Specifies whether or not the installer should be silent. If it is 'silent' or 'silentlog', all sections that have the SF_SELECTED flag are installed quietly (you can set this flag using see \R{sectionsetflags}{SectionSetFlags}), with no screen output from the installer itself (the script can still display whatever it wants, use \R{messagebox}{MessageBox}'s /SD to specify a default for silent installers). Note that if this is set to 'normal' and the user runs the installer with /S (case sensitive) on the command line, it will behave as if SilentInstall 'silent' was used. Note: see also \R{logset}{LogSet}.
+Specifies whether or not the installer should be silent. If it is 'silent' or 'silentlog', all sections that have the SF_SELECTED flag are installed quietly (you can set this flag using \R{sectionsetflags}{SectionSetFlags}), with no screen output from the installer itself (the script can still display whatever it wants, use \R{messagebox}{MessageBox}'s /SD to specify a default for silent installers). Note that if this is set to 'normal' and the user runs the installer with /S (case sensitive) on the command line, it will behave as if SilentInstall 'silent' was used. Note: see also \R{logset}{LogSet}.
See \k{silent} for more information.
diff --git a/Docs/src/history.but b/Docs/src/history.but
index a8ca3fa..10d303b 100755
--- a/Docs/src/history.but
+++ b/Docs/src/history.but
@@ -1,5 +1,37 @@
\A{history} Changelog and Release Notes
+\H{v2.17} 2.17
+
+Released on May 19th, 2006
+
+\S1{v2.17-cl} Changelog
+
+\S2{} Minor Changes
+
+\b Fixed build failures and segfaults on PowerPC Mac OS X (\W{http://sourceforge.net/tracker/index.php?func=detail&group_id=22049&atid=373085&aid=1474597}{bug #1474597}, \W{http://sourceforge.net/tracker/index.php?func=detail&group_id=22049&atid=373085&aid=1481044}{bug #1481044})
+
+\b Fixed \R{library}{Library}'s TLB version interpretation (\W{http://sourceforge.net/tracker/index.php?func=detail&group_id=22049&atid=373085&aid=1471341}{bug #1471341})
+
+\b Fixed possible stack corruption when using TypeLib.dll on an invalid TLB
+
+\b Fixed RMDir deletion failure of read-only folders (\W{http://sourceforge.net/tracker/index.php?func=detail&group_id=22049&atid=373085&aid=1481664}{bug #1481664})
+
+\b \L{../Docs/makensisw/Readme.txt}{MakeNSISW}: Fixed toolbar compressor selection menu, broken in the previous version (\W{http://sourceforge.net/tracker/index.php?func=detail&group_id=22049&atid=373085&aid=1466486}{bug #1466486})
+
+\b Minor documentation improvements and fixes (including \W{http://sourceforge.net/tracker/index.php?func=detail&group_id=22049&atid=373085&aid=1469306}{bug #1469306}, \W{http://sourceforge.net/tracker/index.php?func=detail&group_id=22049&atid=373085&aid=1491616}{bug #1491616})
+
+\S2{} Translations
+
+\b Added missing Basque and Welsh files (\W{http://sourceforge.net/tracker/index.php?func=detail&group_id=22049&atid=373085&aid=1469471}{bug #1469471})
+
+\b Brazilian Portuguese updates
+
+\b Bulgarian fixes
+
+\b Fixed a typo in Hebrew translation (\W{http://sourceforge.net/tracker/index.php?func=detail&group_id=22049&atid=373085&aid=1474587 }{bug #1474587})
+
+\b Icelandic fixes and improvements
+
\H{v2.16} 2.16
Released on April 7th, 2006
diff --git a/Docs/src/sec.but b/Docs/src/sec.but
index a67e9b0..27fbd87 100755
--- a/Docs/src/sec.but
+++ b/Docs/src/sec.but
@@ -6,9 +6,19 @@
Sets the section's flags. The flag is a 32 bit integer. The first bit (lowest) represents whether the section is currently selected, the second bit represents whether the section is a section group (don't modify this unless you really know what you are doing), the third bit represents whether the section is a section group end (again, don't modify), the fourth bit represents whether the section is shown in bold or not, the fifth bit represents whether the section is read-only, the sixth bit represents whether the section group is to be automatically expanded, the seventh bit is set for section groups which are partially selected, the eighth bit is internally used for partially selected section group toggling and the ninth bit is used for reflecting section name changes. The error flag will be set if an out of range section is specified.
+Each flag has a name, prefixed with `SF_`:
+
+\c !define SF_SELECTED 1
+\c !define SF_SECGRP 2
+\c !define SF_SECGRPEND 4
+\c !define SF_BOLD 8
+\c !define SF_RO 16
+\c !define SF_EXPAND 32
+\c !define SF_PSELECTED 64
+
For an example of usage please see the \L{../Examples/one-section.nsi}{one-section.nsi} example.
-For useful macros and definitions, see Include\\Sections.nsh.
+For more useful macros and definitions, see Include\\Sections.nsh.
\S2{sectiongetflags} SectionGetFlags
diff --git a/Docs/src/tutorial.but b/Docs/src/tutorial.but
index 4b5767f..4baf23e 100755
--- a/Docs/src/tutorial.but
+++ b/Docs/src/tutorial.but
@@ -39,7 +39,7 @@ For more information about installer attributes, have a look at \R{instattribs}{
\S1{tut-pages} Pages
-An non-silent installer has a set of wizard pages to let the user configure the installer. You can set which pages to display using the \R{page}{Page} command (or \R{pageex}{PageEx} for more advanced settings). A typical set of pages looks like this:
+A non-silent installer has a set of wizard pages to let the user configure the installer. You can set which pages to display using the \R{page}{Page} command (or \R{pageex}{PageEx} for more advanced settings). A typical set of pages looks like this:
\c Page license
\c Page components