diff --git a/Docs/src/history.but b/Docs/src/history.but index 7eee940c..52332a4c 100644 --- a/Docs/src/history.but +++ b/Docs/src/history.but @@ -2,7 +2,7 @@ \H{v2.0rc3} 2.0 Release Candidate 3 -Released on January 24th, 2004 +Released on January 26th, 2004 \S1{v2.0rc3-cl} Changelog @@ -26,7 +26,7 @@ Released on January 24th, 2004 \S2{} Utilities and Plug-ins -\b \L{../Contrib/Makensisw/Readme.txt}{MakeNSISW}: Fixed resize bug, added double click handling in settings window +\b \L{../Contrib/Makensisw/Readme.txt}{MakeNSISW}: Fixed resize bug, fixed some UI issues in the settings dialog \b NSIS Update: Improved UI diff --git a/Examples/makensis.nsi b/Examples/makensis.nsi index 8dac6cea..6dbc1bc6 100644 --- a/Examples/makensis.nsi +++ b/Examples/makensis.nsi @@ -4,10 +4,10 @@ !define VER_MAJOR 2 !define VER_MINOR 0 !define VER_REVISION 0 -!define VER_BUILD 15 +!define VER_BUILD 16 -!define VER_FILE "20rc2" -!define VER_DISPLAY "2.0 release candidate 2" +!define VER_FILE "20rc3" +!define VER_DISPLAY "2.0 release candidate 3" ;-------------------------------- ;Compile CVS Data Setup diff --git a/Source/makenssi.cpp b/Source/makenssi.cpp index d217a84a..f1283ae9 100644 --- a/Source/makenssi.cpp +++ b/Source/makenssi.cpp @@ -1,4 +1,4 @@ -const char *NSIS_VERSION="v2.0rc2"; +const char *NSIS_VERSION="v2.0rc3"; /* Nullsoft Scriptable Install System (NSIS) diff --git a/Source/script.cpp b/Source/script.cpp index 409be89b..2da3b232 100644 --- a/Source/script.cpp +++ b/Source/script.cpp @@ -2077,7 +2077,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line) if (k == -1) PRINTHELP() SCRIPT_MSG("XPStyle: %s\n", line.gettoken_str(1)); init_res_editor(); - char* szXPManifest = k ? 0 : "Nullsoft Install System v2.0rc2"; + char* szXPManifest = k ? 0 : "Nullsoft Install System v2.0rc3"; res_editor->UpdateResource(MAKEINTRESOURCE(24), MAKEINTRESOURCE(1), MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), (unsigned char*)szXPManifest, k ? 0 : lstrlen(szXPManifest)); } catch (exception& err) {