Updated Readme

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1052 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2002-09-19 17:55:10 +00:00
parent 34ff80ab5f
commit 4921ac43d3
2 changed files with 30 additions and 29 deletions

View file

@ -2,7 +2,7 @@
<html>
<head>
<title>NSIS Modern Style UI</title>
<title>NSIS Modern User Interface</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
@ -30,7 +30,7 @@ table
.maintable
{
border: 2px solid #53607B;
border: 2px solid #376EAB;
}
.margin
@ -79,7 +79,7 @@ table
<tr><td>
<table border="0" cellpadding="0" cellspacing="0">
<tr class="header">
<td><img src="Readme.png" width="750" height="80" alt=""></td>
<td><img src="Readme.jpg" width="750" height="80" alt=""></td>
</tr>
<tr>
@ -92,76 +92,77 @@ table
also features new icons (designed by adni18) and a description
area on the component select dialog.</p>
<p class="text">To use this new UI for for installer, you need
to add some code to your NSIS script, which you can see in Example.nsi.</p>
to add some code to your NSIS script. Read this document for more info!</p>
<p class="header">Requirements</p>
<p class="text"><a href="http://sourceforge.net/projects/nsis">NSIS 2 alpha 7 (or later)</a></p>
<p class="text"><a href="http://sourceforge.net/projects/nsis">NSIS 2 beta 0 (or later)</a></p>
<p class="header">Screenshot</p>
<p class="text"><img src="Screenshot.png" width="504" height="391" alt=""></p>
<p class="header">How to use</p>
<p class="text">Have a look at the example script, Example.nsi.
This is an example of how the use this interface for your NSIS
installer.</p>
<p class="text">To change elements on the dialogs, modify modern.exe
in the Contrib\UIs folder using a a resource editor such as
<a href="http://www.users.on.net/johnson/resourcehacker/">Resource Hacker</a>.</p>
<p class="text">The new macro system has full multilanguage support,
for an example, see Multilanguage.nsi</p>
<p class="text">The 'Loading Setup' text on the slash screen
which is being displayed when the installer is starting (Verifying
installer. The macro system also has multilanguage support,
see Multilanguage.nsi for a multilanguage example.</p>
<p class="text">If you have an installer with a lot of subsections
or long section names, use the modern2.exe UI, which has a larger
treeview for the component selection. To use modern2.exe, change
the first parameter of the MUI_INTERFACE macro.</p>
<p class="header">Customize the interface</p>
<p class="text">To change elements on the dialogs, modify modern.exe
or modern2.exe in the Contrib\UIs folder using a a resource
editor such as <a href="http://www.users.on.net/johnson/resourcehacker/">Resource
Hacker</a>.</p>
<p class="text">The 'Loading Setup' text on the slash screen which
is being displayed when the installer is starting (Verifying
installer, Unpacking data when using COMPRESS_WHOLE) cannot
be changed by the script, because the installer is not started
yet when this dialog is being displayed. If you want to change
this text, modify dialog 111 of modern.exe.</p>
this text, modify dialog 111 of modern(2).exe.</p>
<p class="text">To 'verifying installer' and 'unpacking data'
texts are defined in the language header file of the NSIS exehead
(Source\exehead\lang.h). To change them, you need to edit this
file and recompile NSIS.</p>
<p class="text">If you have an installer with a lot of subsections or long
section names, use the modern2.exe ui, which has a larger treeview for
the component selection. To use modern2.exe, change the first parameter
of the MUI_INTERFACE macro.</p>
<p class="header">Version history</p>
<ul>
<li class="text">1.19 - Semtember 19th, 2002
<li class="text">1.19 - Semtember 19, 2002
<ul>
<li>Renamed some macro's
<li>Custom code can be used between page start/stop macro's
</ul>
<li class="text">1.18 - Semtember 13th, 2002
<li class="text">1.18 - Semtember 13, 2002
<ul>
<li>Uses the new Sendmessage string option
</ul>
<li class="text">1.17 - Semtember 10th, 2002
<li class="text">1.17 - Semtember 10, 2002
<ul>
<li>Win9x font weight bug fixed (font of title in white rect)
</ul>
<li class="text">1.16 - Semtember 6th, 2002
<li class="text">1.16 - Semtember 6, 2002
<ul>
<li>Change text 'Scroll down' on license page to 'Press Page Down', because the RichEdit control has
focus by default now
</ul>
<li class="text">1.15 - Semtember 4th, 2002
<li class="text">1.15 - Semtember 4, 2002
<ul>
<li>Multilanguage example: changed LangDialog to LangDLL::LangDialog (using the DLL name is now required)
</ul>
<li class="text">1.14 - Semtember 3th, 2002
<li class="text">1.14 - Semtember 3, 2002
<ul>
<li>Small grammar fix (thanks eccles)
<li>UI files updated by Justin for better RichEdit usage
</ul>
<li class="text">1.13 - Semtember 2th, 2002
<li class="text">1.13 - Semtember 2, 2002
<ul>
<li>Added 16 color icons
</ul>
<li class="text">1.12 - August 30th, 2002
<li class="text">1.12 - August 30, 2002
<ul>
<li>Verifying installer & Unpacking data dialog has no titlebar anymore
</ul>
<li class="text">1.11 - August 29th, 2002
<li class="text">1.11 - August 29, 2002
<ul>
<li>Finish header for uninstaller can also be set using MUI_FINISHHEADER
</ul>
<li class="text">1.1 - August 29th, 2002
<li class="text">1.1 - August 29, 2002
<ul>
<li>Header file with macros, it's now very easy to use the UI in your scripts :)
<li>Added the modern2.exe UI, with an other location of the Description frame,
@ -178,7 +179,7 @@ table
descriptions to subsections
<li>Correct font size using High-DPI fonts
</ul>
<li class="text">1.0 - August 26th, 2002
<li class="text">1.0 - August 26, 2002
<ul>
<li>Initial release
</ul>

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB