Notepad++ release 7.8.4
This commit is contained in:
parent
6e6341cc61
commit
1eb5f43886
|
@ -1,19 +1,7 @@
|
|||
Notepad++ v7.8.3 enhancements and bug-fixes:
|
||||
Notepad++ v7.8.4 bug-fixes:
|
||||
|
||||
1. Add the "Expand All", "Fold All" and "Select/Show current editing file" capacity into Folder as Workspace.
|
||||
2. Fix restoring line position issue while document is wrapped.
|
||||
3. Improve Json syntax highlighting.
|
||||
4. Make filling find field of Find dialog with selected word(s) optional.
|
||||
5. Make doSaveOrNot dialog simpler when there's a single file to save.
|
||||
6. Fix auto-insert {[""]} imbrication not working issue.
|
||||
7. Make cmd cli (for "Open Containing Folder in cmd") customizable.
|
||||
8. Prevent from setting Updater's Proxy as Notepad++ is not in Admin mode.
|
||||
9. Disable file association settings when Notepad++'s no admin right.
|
||||
10. Fix incremental search bar "highlight all" option not conserved bug.
|
||||
11. Enhance SQL syntax highlighting (add 2 more keyword lists).
|
||||
12. Fix too small buffer issue during add text macro playback.
|
||||
13. Fix "Close All Unchanged" not working issue for sub-view.
|
||||
14. Eliminate garbage displaying in Find-result fold margin.
|
||||
1. Fix regression of double clicking a found in files result while Word-Wrap is on.
|
||||
2. Fix HashFromDlg title bar localization issue.
|
||||
|
||||
|
||||
Included plugins:
|
||||
|
|
|
@ -1021,7 +1021,7 @@ BEGIN
|
|||
LTEXT NOTEPAD_PLUS_VERSION, IDC_STATIC,70,20,140,11
|
||||
LTEXT "bit",IDC_VERSION_BIT,150,20,140,11
|
||||
//LTEXT "Author :",IDC_STATIC,21,45,31,8
|
||||
LTEXT "FREE UYGHUR",IDC_AUTHOR_NAME,70,32,70,8
|
||||
//LTEXT "FREE UYGHUR",IDC_AUTHOR_NAME,70,32,70,8
|
||||
LTEXT "Home:",IDC_STATIC,21,52,47,8
|
||||
LTEXT "https://notepad-plus-plus.org/",IDC_HOME_ADDR,50,52,126,8
|
||||
GROUPBOX "GNU General Public Licence",IDC_STATIC,19,75,231,131,BS_CENTER
|
||||
|
|
|
@ -2797,8 +2797,9 @@ void Notepad_plus::command(int id)
|
|||
|
||||
if (doAboutDlg)
|
||||
{
|
||||
bool isFirstTime = !_aboutDlg.isCreated();
|
||||
//bool isFirstTime = !_aboutDlg.isCreated();
|
||||
_aboutDlg.doDialog();
|
||||
/*
|
||||
if (isFirstTime && _nativeLangSpeaker.getNativeLangA())
|
||||
{
|
||||
if (_nativeLangSpeaker.getLangEncoding() == NPP_CP_BIG5)
|
||||
|
@ -2811,6 +2812,7 @@ void Notepad_plus::command(int id)
|
|||
::SetWindowText(hItem, authorNameW);
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -62,8 +62,7 @@ INT_PTR CALLBACK AboutDlg::run_dlgProc(UINT message, WPARAM wParam, LPARAM lPara
|
|||
|
||||
//_emailLink.init(_hInst, _hSelf);
|
||||
//_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("mailto:don.h@free.fr"));
|
||||
_emailLink.init(_hInst, _hSelf);
|
||||
_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("https://notepad-plus-plus.org/news/v781-free-uyghur-edition/"));
|
||||
//_emailLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), TEXT("https://notepad-plus-plus.org/news/v781-free-uyghur-edition/"));
|
||||
|
||||
_pageLink.init(_hInst, _hSelf);
|
||||
_pageLink.create(::GetDlgItem(_hSelf, IDC_HOME_ADDR), TEXT("https://notepad-plus-plus.org/"));
|
||||
|
|
|
@ -27,12 +27,12 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.8.3")
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.8.4")
|
||||
|
||||
// should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
||||
// ex : #define VERSION_VALUE TEXT("5.63\0")
|
||||
#define VERSION_VALUE TEXT("7.83\0")
|
||||
#define VERSION_DIGITALVALUE 7, 8, 3, 0
|
||||
#define VERSION_VALUE TEXT("7.84\0")
|
||||
#define VERSION_DIGITALVALUE 7, 8, 4, 0
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue