Added link to developer site

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1359 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
rainwater 2002-10-09 17:38:24 +00:00
parent 8b94e4124e
commit 60e5d6cb1b
5 changed files with 12 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

Before After
Before After

View file

@ -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);

View file

@ -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"

View file

@ -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

View file

@ -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