Added link the forum in help menu
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1978 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
4a167c9293
commit
8023f617dd
6 changed files with 11 additions and 26 deletions
|
@ -162,6 +162,7 @@ Version History
|
||||||
- Added Clear Log (Ctrl+W)
|
- Added Clear Log (Ctrl+W)
|
||||||
- Browse Script (Ctrl+B) launches explorer in script directory
|
- Browse Script (Ctrl+B) launches explorer in script directory
|
||||||
- Check for Update command
|
- Check for Update command
|
||||||
|
- Added link to the NSIS Forum under Help menu
|
||||||
- Bunch of other stuff not worth mentioning
|
- Bunch of other stuff not worth mentioning
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -236,6 +236,11 @@ BOOL CALLBACK DialogProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
|
||||||
{
|
{
|
||||||
ShellExecute(g_sdata.hwnd,"open",NSIS_DEV,NULL,NULL,SW_SHOWNORMAL);
|
ShellExecute(g_sdata.hwnd,"open",NSIS_DEV,NULL,NULL,SW_SHOWNORMAL);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
}
|
||||||
|
case IDM_FORUM:
|
||||||
|
{
|
||||||
|
ShellExecute(g_sdata.hwnd,"open",NSIS_FOR,NULL,NULL,SW_SHOWNORMAL);
|
||||||
|
return TRUE;
|
||||||
}
|
}
|
||||||
case IDM_SELECTALL:
|
case IDM_SELECTALL:
|
||||||
{
|
{
|
||||||
|
|
|
@ -137,31 +137,11 @@ SOURCE=.\utils.h
|
||||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE="..\Icons\adni18-installer-C-no48xp.ico"
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\Source\default1.bin
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\source\icon.ico
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\Icons\lama.ico
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\Icons\lama3.ico
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\logo.bmp
|
SOURCE=.\logo.bmp
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=..\Icons\new_nsis.ico
|
SOURCE="..\Icons\modern-install.ico"
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
|
@ -169,10 +149,6 @@ SOURCE=.\resource.rc
|
||||||
# End Source File
|
# End Source File
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=..\..\Source\rt_manif.bin
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\shell.ico
|
SOURCE=.\shell.ico
|
||||||
# End Source File
|
# End Source File
|
||||||
# End Group
|
# End Group
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
#define NSIS_URL "http://www.nullsoft.com/free/nsis/"
|
#define NSIS_URL "http://www.nullsoft.com/free/nsis/"
|
||||||
#define NSIS_UPDATE "http://nsis.sourceforge.net/update.php?version="
|
#define NSIS_UPDATE "http://nsis.sourceforge.net/update.php?version="
|
||||||
#define NSIS_DDL "http://sourceforge.net/project/showfiles.php?group_id=22049"
|
#define NSIS_DDL "http://sourceforge.net/project/showfiles.php?group_id=22049"
|
||||||
|
#define NSIS_FOR "http://forums.winamp.com/forumdisplay.php?forumid=65"
|
||||||
#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 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 COPYRIGHT "Copyright © 2002 Robert Rainwater"
|
||||||
#define CONTRIB "Fritz Elfert, Justin Frankel, Amir Szekely"
|
#define CONTRIB "Fritz Elfert, Justin Frankel, Amir Szekely"
|
||||||
|
|
|
@ -36,13 +36,14 @@
|
||||||
#define IDM_BROWSESCR 40013
|
#define IDM_BROWSESCR 40013
|
||||||
#define IDM_NSISDEV 40014
|
#define IDM_NSISDEV 40014
|
||||||
#define IDM_UPDATE 40015
|
#define IDM_UPDATE 40015
|
||||||
|
#define IDM_FORUM 40016
|
||||||
|
|
||||||
// Next default values for new objects
|
// Next default values for new objects
|
||||||
//
|
//
|
||||||
#ifdef APSTUDIO_INVOKED
|
#ifdef APSTUDIO_INVOKED
|
||||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||||
#define _APS_NEXT_RESOURCE_VALUE 116
|
#define _APS_NEXT_RESOURCE_VALUE 116
|
||||||
#define _APS_NEXT_COMMAND_VALUE 40016
|
#define _APS_NEXT_COMMAND_VALUE 40017
|
||||||
#define _APS_NEXT_CONTROL_VALUE 1017
|
#define _APS_NEXT_CONTROL_VALUE 1017
|
||||||
#define _APS_NEXT_SYMED_VALUE 101
|
#define _APS_NEXT_SYMED_VALUE 101
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -94,6 +94,7 @@ BEGIN
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "NSIS Homepage", IDM_NSISHOME
|
MENUITEM "NSIS Homepage", IDM_NSISHOME
|
||||||
MENUITEM "NSIS Developer Site", IDM_NSISDEV
|
MENUITEM "NSIS Developer Site", IDM_NSISDEV
|
||||||
|
MENUITEM "NSIS Forum", IDM_FORUM
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "Documentation\tF1", IDM_DOCS
|
MENUITEM "Documentation\tF1", IDM_DOCS
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue