diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index 1cf7b4509..d8ac01623 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -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: diff --git a/PowerEditor/src/Notepad_plus.rc b/PowerEditor/src/Notepad_plus.rc index 3eb51b227..d1124f365 100644 --- a/PowerEditor/src/Notepad_plus.rc +++ b/PowerEditor/src/Notepad_plus.rc @@ -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 diff --git a/PowerEditor/src/NppCommands.cpp b/PowerEditor/src/NppCommands.cpp index f4f1071c7..b20089039 100644 --- a/PowerEditor/src/NppCommands.cpp +++ b/PowerEditor/src/NppCommands.cpp @@ -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; } diff --git a/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp b/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp index 8efd773b1..89e9b8bf1 100644 --- a/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp +++ b/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp @@ -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/")); diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index 269456b03..7e2f544f3 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -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