2.02->2.03

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3786 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-11-26 19:30:01 +00:00
parent 5acba7ec75
commit 6d438d0f34
4 changed files with 52 additions and 6 deletions

View file

@ -1,5 +1,51 @@
\A{history} Changelog and Release Notes
\H{v2.03} 2.03
Released on December 3rd, 2004
\S1{v2.03-rn} Release Notes
\b Command line switches prefix on POSIX has changed to a dash
\b The plug-in API change is backward compatible
\S1{v2.03-cl} Changelog
\S2{} Major Changes
\b Added another parameter to plug-in functions with a pointer to exec_flags and ExecuteCodeSegment
\b Fixed handling of absolute paths on POSIX
\b Made RegDLL load and unload a DLL exactly once to fix crashes with COM DLLs registration
\S2{} New/Changed Commands
\b Added /date switch to !define for definition of date and time constants
\b Added /x switch for \R{file}{File} and \R{reservefile}{ReserveFile} to exclude files and directories
\S2{} Minor Changes
\b Added LIBRARY_SHELL_EXTENSION and LIBRARY_COM to \R{library}{Library}
\b Added missing #include
\b Added NSIS_LZMA_COMPRESS_WHOLE to the script define list
\b Documentation fixes and improvements
\b Fixed an access violation in case of a script jump beyond the last entry
\b Fixed keyboard navigation in the instfiles page while installing
\b Fixed unpacking window not showing when \R{abggradient}{BGGradient} is used
\b Fixed unused label warning in \R{library}{Library.nsh}
\b Language file fixes
\H{v2.02} 2.02
Released on October 23rd, 2004

View file

@ -3,11 +3,11 @@
!define VER_MAJOR 2
!define VER_MINOR 0
!define VER_REVISION 2
!define VER_BUILD 20
!define VER_REVISION 3
!define VER_BUILD 21
!define VER_FILE "202"
!define VER_DISPLAY "2.02"
!define VER_FILE "203"
!define VER_DISPLAY "2.03"
;--------------------------------
;Compile CVS Data Setup

View file

@ -1,4 +1,4 @@
const char *NSIS_VERSION="v2.02";
const char *NSIS_VERSION="v2.03";
/*

View file

@ -2189,7 +2189,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();
const char *szXPManifest = k ? 0 : "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v1\" manifestVersion=\"1.0\"><assemblyIdentity version=\"1.0.0.0\" processorArchitecture=\"X86\" name=\"Nullsoft.NSIS.exehead\" type=\"win32\"/><description>Nullsoft Install System v2.02</description><dependency><dependentAssembly><assemblyIdentity type=\"win32\" name=\"Microsoft.Windows.Common-Controls\" version=\"6.0.0.0\" processorArchitecture=\"X86\" publicKeyToken=\"6595b64144ccf1df\" language=\"*\" /></dependentAssembly></dependency></assembly>";
const char *szXPManifest = k ? 0 : "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v1\" manifestVersion=\"1.0\"><assemblyIdentity version=\"1.0.0.0\" processorArchitecture=\"X86\" name=\"Nullsoft.NSIS.exehead\" type=\"win32\"/><description>Nullsoft Install System v2.03</description><dependency><dependentAssembly><assemblyIdentity type=\"win32\" name=\"Microsoft.Windows.Common-Controls\" version=\"6.0.0.0\" processorArchitecture=\"X86\" publicKeyToken=\"6595b64144ccf1df\" language=\"*\" /></dependentAssembly></dependency></assembly>";
res_editor->UpdateResource(MAKEINTRESOURCE(24), MAKEINTRESOURCE(1), NSIS_DEFAULT_LANG, (unsigned char*)szXPManifest, k ? 0 : strlen(szXPManifest));
}
catch (exception& err) {