From 3966f5560cd793b6fb31fe3411c38646999e2039 Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 8 Feb 2003 22:57:10 +0000 Subject: [PATCH] - b1 version numbers - CreateShortcut works with URLs again, no file name validating though git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2130 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/makensis.nsi | 2 +- Source/exehead/exec.c | 2 +- Source/makenssi.cpp | 2 +- Source/script.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Examples/makensis.nsi b/Examples/makensis.nsi index be57cc4b..fd4dd695 100644 --- a/Examples/makensis.nsi +++ b/Examples/makensis.nsi @@ -31,7 +31,7 @@ InstallDirRegKey HKLM SOFTWARE\NSIS "" ;Modern UI Configuration !define MUI_PRODUCT "NSIS" - !define MUI_VERSION "2.0b1 (CVS)" + !define MUI_VERSION "2.0b1" !define MUI_NAME "Nullsoft Install System ${MUI_VERSION}" ;Installer name diff --git a/Source/exehead/exec.c b/Source/exehead/exec.c index e49c7c53..c65d2541 100644 --- a/Source/exehead/exec.c +++ b/Source/exehead/exec.c @@ -984,7 +984,7 @@ static int NSISCALL ExecuteEntry(entry *entry_) #ifdef NSIS_SUPPORT_CREATESHORTCUT case EW_CREATESHORTCUT: { char *buf2=process_string_fromparm_tobuf(-0x20); - char *buf1=process_string_fromparm_tobuf(-0x11); + char *buf1=process_string_fromparm_tobuf(0x11); char *buf0=process_string_fromparm_tobuf(0x02); char *buf3=process_string_fromparm_tobuf(-0x33); char *buf4=process_string_fromparm_tobuf(0x45); diff --git a/Source/makenssi.cpp b/Source/makenssi.cpp index 092f82a5..55ddf1c0 100644 --- a/Source/makenssi.cpp +++ b/Source/makenssi.cpp @@ -1,4 +1,4 @@ -const char *NSIS_VERSION="v2.0b1 (CVS)"; +const char *NSIS_VERSION="v2.0b1"; /* Nullsoft "SuperPimp" Installation System - makensis.cpp - installer compiler code diff --git a/Source/script.cpp b/Source/script.cpp index a92f341c..c5131448 100644 --- a/Source/script.cpp +++ b/Source/script.cpp @@ -1304,7 +1304,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line, FILE *fp, const char if (k == -1) PRINTHELP() SCRIPT_MSG("XPStyle: %s\n", line.gettoken_str(1)); init_res_editor(); - char* szXPManifest = k ? 0 : "Nullsoft Install System v2.0b1 (CVS)"; + char* szXPManifest = k ? 0 : "Nullsoft Install System v2.0b1"; res_editor->UpdateResource(MAKEINTRESOURCE(24), MAKEINTRESOURCE(1), MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), (unsigned char*)szXPManifest, k ? 0 : lstrlen(szXPManifest)); } catch (exception& err) {