[NEW_FEATURE] Add a menu entry to access to notepad++ plugins project page.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@4 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
b4f7260e9b
commit
98e9f1f971
|
@ -7,6 +7,7 @@ v4.2 fixed bugs and added features (from v4.1.2) :
|
|||
5. Add new feature which backups files in a user specific directory.
|
||||
6. Fix TeX syntax highlighting corruption problem while switching off then switching back to current document.
|
||||
7. Fix User Define Language extension recognition problem for sensitive case (now it's insensitive).
|
||||
8. Add a menu entry to access to notepad++ plugins project page.
|
||||
|
||||
Plugins included in v4.2 :
|
||||
|
||||
|
|
|
@ -3235,6 +3235,12 @@ void Notepad_plus::command(int id)
|
|||
break;
|
||||
}
|
||||
|
||||
case IDM_PLUGINSHOME:
|
||||
{
|
||||
::ShellExecute(NULL, "open", "https://sourceforge.net/projects/npp-plugins/", NULL, NULL, SW_SHOWNORMAL);
|
||||
break;
|
||||
}
|
||||
|
||||
case IDC_AUTOCOMPLETE :
|
||||
showAutoComp();
|
||||
break;
|
||||
|
@ -5765,7 +5771,7 @@ LRESULT Notepad_plus::runProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lPa
|
|||
if (lParam)
|
||||
{
|
||||
const char *filtre = (const char *)lParam;
|
||||
_findReplaceDlg.setFindInFilesDirFilter(dir, filtre);
|
||||
_findReplaceDlg.setFindInFilesDirFilter(dir, filtre);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -473,6 +473,7 @@ BEGIN
|
|||
MENUITEM "Notepad++ Project Page", IDM_PROJECTPAGE
|
||||
MENUITEM "Online help", IDM_ONLINEHELP
|
||||
MENUITEM "Forum", IDM_FORUM
|
||||
MENUITEM "Get more plugins", IDM_PLUGINSHOME
|
||||
MENUITEM "About Notepad++\tF1", IDM_ABOUT
|
||||
END
|
||||
|
||||
|
|
|
@ -377,6 +377,7 @@
|
|||
#define IDM_PROJECTPAGE (IDM_ABOUT + 2)
|
||||
#define IDM_ONLINEHELP (IDM_ABOUT + 3)
|
||||
#define IDM_FORUM (IDM_ABOUT + 4)
|
||||
#define IDM_PLUGINSHOME (IDM_ABOUT + 5)
|
||||
|
||||
#define IDC_MINIMIZED_TRAY (IDM + 7001)
|
||||
|
||||
|
|
Loading…
Reference in New Issue