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

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB