From da6c41fa7b195bbb4fbf92198f504a8be959297d Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 12 Aug 2003 14:37:29 +0000 Subject: [PATCH] Direct link to new website git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2804 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/Makensisw/makensisw.cpp | 5 ----- Contrib/Makensisw/makensisw.h | 3 +-- Contrib/Makensisw/resource.h | 2 -- Contrib/Makensisw/resource.rc | 19 +++---------------- Contrib/Makensisw/toolbar.cpp | 2 -- Contrib/Makensisw/toolbar.h | 2 -- 6 files changed, 4 insertions(+), 29 deletions(-) diff --git a/Contrib/Makensisw/makensisw.cpp b/Contrib/Makensisw/makensisw.cpp index af8d8ea1..82d5f034 100644 --- a/Contrib/Makensisw/makensisw.cpp +++ b/Contrib/Makensisw/makensisw.cpp @@ -269,11 +269,6 @@ BOOL CALLBACK DialogProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) { ShellExecute(g_sdata.hwnd,"open",NSIS_URL,NULL,NULL,SW_SHOWNORMAL); return TRUE; } - case IDM_NSISDEV: - { - ShellExecute(g_sdata.hwnd,"open",NSIS_DEV,NULL,NULL,SW_SHOWNORMAL); - return TRUE; - } case IDM_FORUM: { ShellExecute(g_sdata.hwnd,"open",NSIS_FOR,NULL,NULL,SW_SHOWNORMAL); diff --git a/Contrib/Makensisw/makensisw.h b/Contrib/Makensisw/makensisw.h index fd5d421a..9d356068 100644 --- a/Contrib/Makensisw/makensisw.h +++ b/Contrib/Makensisw/makensisw.h @@ -29,8 +29,7 @@ #undef _RICHEDIT_VER // Defines -#define NSIS_DEV "http://nsis.sourceforge.net/" -#define NSIS_URL "http://www.nullsoft.com/free/nsis/" +#define NSIS_URL "http://nsis.sourceforge.net/" #define NSIS_FOR "http://forums.winamp.com/forumdisplay.php?forumid=65" #define NSIS_UPDATE "\\Bin\\NSISUpdate.exe" #define USAGE "Usage:\r\n\r\n - File | Load Script...\r\n - Drag the .nsi file into this window\r\n - Right click the .nsi file and choose \"Compile NSI\"" diff --git a/Contrib/Makensisw/resource.h b/Contrib/Makensisw/resource.h index 3bcac3ae..56fd4e6b 100644 --- a/Contrib/Makensisw/resource.h +++ b/Contrib/Makensisw/resource.h @@ -17,7 +17,6 @@ #define IDS_BROWSESCR 11 #define IDS_CLEARLOG 12 #define IDS_NSISHOME 13 -#define IDS_NSISDEV 14 #define IDS_FORUM 15 #define IDS_NSISUPDATE 16 #define IDS_DOCS 17 @@ -67,7 +66,6 @@ #define IDM_SELECTALL 40007 #define IDM_CLEARLOG 40009 #define IDM_BROWSESCR 40013 -#define IDM_NSISDEV 40014 #define IDM_FORUM 40016 #define IDM_DEFINES 40017 #define IDM_NSISUPDATE 40018 diff --git a/Contrib/Makensisw/resource.rc b/Contrib/Makensisw/resource.rc index cc330efb..df6fc9a3 100644 --- a/Contrib/Makensisw/resource.rc +++ b/Contrib/Makensisw/resource.rc @@ -84,14 +84,6 @@ BEGIN BEGIN MENUITEM "&Recompile\tCtrl+R", IDM_RECOMPILE MENUITEM "&Define Symbols...\tCtrl+D", IDM_DEFINES -#ifdef COMPRESSOR_OPTION - POPUP "&Set Compressor" - BEGIN - MENUITEM "Defa&ult", IDM_DEFAULT - MENUITEM "&zlib", IDM_ZLIB - MENUITEM "&gzip", IDM_GZIP - END -#endif MENUITEM "Test &Installer\tCtrl+T", IDM_TEST MENUITEM "Edit Script\tCtrl+E", IDM_EDITSCRIPT MENUITEM "Browse Script\tCtrl+B", IDM_BROWSESCR @@ -100,7 +92,6 @@ BEGIN POPUP "&Help" BEGIN MENUITEM "NSIS Homepage", IDM_NSISHOME - MENUITEM "NSIS Developer Site", IDM_NSISDEV MENUITEM "NSIS Forum", IDM_FORUM MENUITEM "NSIS Update", IDM_NSISUPDATE MENUITEM SEPARATOR @@ -252,15 +243,11 @@ BEGIN IDS_FIND "Find..." IDS_RECOMPILE "Recompile" IDS_DEFINES "Define Symbols..." -#ifdef COMPRESSOR_OPTION - IDS_COMPRESSOR "Set Compressor" -#endif IDS_TEST "Test Installer" IDS_EDITSCRIPT "Edit Script" IDS_BROWSESCR "Browse Script" IDS_CLEARLOG "Clear Log Window" IDS_NSISHOME "NSIS Homepage" - IDS_NSISDEV "NSIS Developer Site" IDS_FORUM "NSIS Forum" END @@ -268,9 +255,9 @@ STRINGTABLE DISCARDABLE BEGIN IDS_NSISUPDATE "NSIS Update" IDS_DOCS "Documentation" - IDS_DEFAULT "Default" - IDS_ZLIB "zlib" - IDS_GZIP "gzip" + IDS_DEFAULT "Default" + IDS_ZLIB "zlib" + IDS_GZIP "gzip" END #endif // English (U.S.) resources diff --git a/Contrib/Makensisw/toolbar.cpp b/Contrib/Makensisw/toolbar.cpp index 6f13a80c..99890551 100644 --- a/Contrib/Makensisw/toolbar.cpp +++ b/Contrib/Makensisw/toolbar.cpp @@ -64,7 +64,6 @@ void CreateToolBar() tbButton[TBB_CLEARLOG] = CreateToolBarButton(IDB_CLEARLOG, IDM_CLEARLOG, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, 0); tbButton[TBB_SEP3] = CreateToolBarButton(0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, 0); tbButton[TBB_NSISHOME] = CreateToolBarButton(IDB_NSISHOME, IDM_NSISHOME, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, 0); - tbButton[TBB_NSISDEV] = CreateToolBarButton(IDB_NSISDEV, IDM_NSISDEV, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, 0); tbButton[TBB_FORUM] = CreateToolBarButton(IDB_FORUM, IDM_FORUM, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, 0); tbButton[TBB_NSISUPDATE] = CreateToolBarButton(IDB_NSISUPDATE, IDM_NSISUPDATE, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, 0); tbButton[TBB_SEP4] = CreateToolBarButton(0, 0, TBSTATE_ENABLED, TBSTYLE_SEP, 0, 0); @@ -194,7 +193,6 @@ void AddToolBarTooltips() AddToolBarButtonTooltip(TBB_BROWSESCR, IDS_BROWSESCR); AddToolBarButtonTooltip(TBB_CLEARLOG, IDS_CLEARLOG); AddToolBarButtonTooltip(TBB_NSISHOME, IDS_NSISHOME); - AddToolBarButtonTooltip(TBB_NSISDEV, IDS_NSISDEV); AddToolBarButtonTooltip(TBB_FORUM, IDS_FORUM); AddToolBarButtonTooltip(TBB_NSISUPDATE, IDS_NSISUPDATE); AddToolBarButtonTooltip(TBB_DOCS, IDS_DOCS); diff --git a/Contrib/Makensisw/toolbar.h b/Contrib/Makensisw/toolbar.h index 7f6eee49..a4bfe92e 100644 --- a/Contrib/Makensisw/toolbar.h +++ b/Contrib/Makensisw/toolbar.h @@ -48,7 +48,6 @@ #define TBB_CLEARLOG 13 #define TBB_SEP3 14 #define TBB_NSISHOME 15 -#define TBB_NSISDEV 16 #define TBB_FORUM 17 #define TBB_NSISUPDATE 18 #define TBB_SEP4 19 @@ -69,7 +68,6 @@ #define IDB_BROWSESCR 10 #define IDB_CLEARLOG 11 #define IDB_NSISHOME 12 -#define IDB_NSISDEV 13 #define IDB_FORUM 14 #define IDB_NSISUPDATE 15 #define IDB_DOCS 16