version bump

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5132 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-04-27 16:57:58 +00:00
parent 2f6ecc148a
commit 9cb8501db4
6 changed files with 26 additions and 7 deletions

View file

@ -1,3 +1,7 @@
DLL version 2.47 (4/27/2007)
* Line breaks support in Link control
* Added HLine and VLine controls
DLL version 2.46 (3/31/2007) DLL version 2.46 (3/31/2007)
* Use installer's name for message boxes * Use installer's name for message boxes

View file

@ -854,9 +854,10 @@ FunctionEnd
<h2>Version history</h2> <h2>Version history</h2>
<div> <div>
<ul> <ul>
<li>DLL version 2.46 (March 31st, 2007) <li>DLL version 2.47 (April 27th, 2007)
<ul> <ul>
<li>Use installer's name for message boxes</li> <li>Line breaks support in Link control</li>
<li>Added HLine and VLine controls</li>
</ul> </ul>
</li> </li>
</ul> </ul>

View file

@ -188,6 +188,9 @@ Version History
2.3 2.3
- Escape button closes MakeNSISw - Escape button closes MakeNSISw
2.3.1
- Fixed broken command line parameter handling
Copyright Information Copyright Information
--------------------- ---------------------

View file

@ -1,5 +1,12 @@
NSIS Modern User Interface - VERSION HISTORY NSIS Modern User Interface - VERSION HISTORY
1.77 - April 27, 2007
* Added MUI_FINISHPAGE_CANCEL_ENABLED
* Added MUI_FINISHPAGE_REBOOTLATER_DEFAULT
* Block unsupported languages in the language selection dialog
* Cancel button no longer enabled by default on the finish page
* Reduced flicker caused by MUI_HEADER_TRANSPARENT_TEXT
1.76 - September 23, 2006 1.76 - September 23, 2006
* Added MUI_ABORTWARNING_CANCEL_DEFAULT * Added MUI_ABORTWARNING_CANCEL_DEFAULT

View file

@ -1223,9 +1223,13 @@ Start Menu Folder page: <a href=
<h1>Version History</h1> <h1>Version History</h1>
<div> <div>
<ul> <ul>
<li>1.76 - September 23, 2006 <li>1.77 - April 27, 2006
<ul> <ul>
<li>Added MUI_ABORTWARNING_CANCEL_DEFAULT</li> <li>Added MUI_FINISHPAGE_CANCEL_ENABLED</li>
<li>Added MUI_FINISHPAGE_REBOOTLATER_DEFAULT</li>
<li>Block unsupported languages in the language selection dialog</li>
<li>Cancel button no longer enabled by default on the finish page</li>
<li>Reduced flicker caused by MUI_HEADER_TRANSPARENT_TEXT</li>
</ul> </ul>
</li> </li>
</ul> </ul>

View file

@ -1,4 +1,4 @@
;NSIS Modern User Interface version 1.75 ;NSIS Modern User Interface version 1.77
;Macro System ;Macro System
;Written by Joost Verburg ;Written by Joost Verburg
@ -8,7 +8,7 @@
;License: License.txt ;License: License.txt
;Examples: Examples\Modern UI ;Examples: Examples\Modern UI
!echo "NSIS Modern User Interface version 1.75 - © 2002-2007 Joost Verburg" !echo "NSIS Modern User Interface version 1.77 - © 2002-2007 Joost Verburg"
;-------------------------------- ;--------------------------------
@ -32,7 +32,7 @@
!include "WinMessages.nsh" !include "WinMessages.nsh"
!verbose pop !verbose pop
!define MUI_SYSVERSION "1.75" !define MUI_SYSVERSION "1.77"
Var /GLOBAL MUI_TEMP1 Var /GLOBAL MUI_TEMP1
Var /GLOBAL MUI_TEMP2 Var /GLOBAL MUI_TEMP2