diff --git a/Contrib/Makensisw/logo.bmp b/Contrib/Makensisw/logo.bmp index afc5d309..c9b552f2 100644 Binary files a/Contrib/Makensisw/logo.bmp and b/Contrib/Makensisw/logo.bmp differ diff --git a/Contrib/Makensisw/makensisw.cpp b/Contrib/Makensisw/makensisw.cpp index 7cc6b427..663a4558 100644 --- a/Contrib/Makensisw/makensisw.cpp +++ b/Contrib/Makensisw/makensisw.cpp @@ -230,6 +230,11 @@ BOOL CALLBACK DialogProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) { ShellExecute(g_hwnd,"open",NSIS_URL,NULL,NULL,SW_SHOWNORMAL); return TRUE; } + case IDM_NSISDEV: + { + ShellExecute(g_hwnd,"open",NSIS_DEV,NULL,NULL,SW_SHOWNORMAL); + return TRUE; + } case IDM_SELECTALL: { SendDlgItemMessage(g_hwnd, IDC_LOGWIN, EM_SETSEL, 0, -1); diff --git a/Contrib/Makensisw/makensisw.h b/Contrib/Makensisw/makensisw.h index 6c90a845..14378f31 100644 --- a/Contrib/Makensisw/makensisw.h +++ b/Contrib/Makensisw/makensisw.h @@ -30,7 +30,8 @@ #undef _RICHEDIT_VER // Defines -#define NSIS_URL "http://nsis.sourceforge.net/" +#define NSIS_DEV "http://nsis.sourceforge.net/" +#define NSIS_URL "http://www.nullsoft.com/free/nsis/" #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\"" #define COPYRIGHT "Copyright © 2002 Robert Rainwater" #define CONTRIB "Fritz Elfert, Justin Frankel, Amir Szekely" diff --git a/Contrib/Makensisw/resource.h b/Contrib/Makensisw/resource.h index 53d14f52..24b85779 100644 --- a/Contrib/Makensisw/resource.h +++ b/Contrib/Makensisw/resource.h @@ -34,13 +34,14 @@ #define IDM_SELECTALL 40007 #define IDM_CLEARLOG 40009 #define IDM_BROWSESCR 40013 +#define IDM_NSISDEV 40014 // Next default values for new objects // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NEXT_RESOURCE_VALUE 116 -#define _APS_NEXT_COMMAND_VALUE 40014 +#define _APS_NEXT_COMMAND_VALUE 40015 #define _APS_NEXT_CONTROL_VALUE 1017 #define _APS_NEXT_SYMED_VALUE 101 #endif diff --git a/Contrib/Makensisw/resource.rc b/Contrib/Makensisw/resource.rc index b8f7b9d8..f63e90af 100644 --- a/Contrib/Makensisw/resource.rc +++ b/Contrib/Makensisw/resource.rc @@ -91,7 +91,9 @@ BEGIN END POPUP "&Help" BEGIN - MENUITEM "NSIS Home", IDM_NSISHOME + MENUITEM "NSIS Homepage", IDM_NSISHOME + MENUITEM "NSIS Developer Site", IDM_NSISDEV + MENUITEM SEPARATOR MENUITEM "Documentation\tF1", IDM_DOCS MENUITEM SEPARATOR MENUITEM "&About MakeNSISW", IDM_ABOUT