From 910f02dfd529b6ad558ef3f9646baa68b4d2e830 Mon Sep 17 00:00:00 2001 From: Don Ho Date: Mon, 5 May 2025 04:21:55 +0200 Subject: [PATCH] Notepad++ release 8.8.1 --- PowerEditor/bin/change.log | 19 +++++++++++++++++-- .../src/WinControls/AboutDlg/AboutDlg.cpp | 2 +- PowerEditor/src/resource.h | 8 ++++---- 3 files changed, 22 insertions(+), 7 deletions(-) diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index 4a35f198c..b6d27194a 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,3 +1,18 @@ +Notepad++ v8.8.1 regression-fixes, bug-fixes & new features: + + 1. Fix ShortcutMapper regression (from v8.7.6) of displaying wrong shortcut while editing. + 2. Fix Find in files progress bar visual regression (from v8.8). + 3. Fix search result cut off result content due to nul characters ('\0'). + 4. Add Locale-based line sort feature. + 5. Enable selection history for undo & redo. + 6. Fix plugins removal failure issue (fixed in WinGUp). + 7. Fix tab settings for external lexers cannot be saved issue. + 8. Add ErrorList syntax highlighting. + 9. Fix disabled Paste command with no previous text-data in clipboard. +10. Fix wrong directory opened for opening files issue. +11. Improve Find dialog look & feel (more space). + + Notepad++ v8.8 new features, regression-fixes & bug-fixes: 1. Update to scintilla 5.5.6 & Lexilla 5.4.4. @@ -22,7 +37,7 @@ Notepad++ v8.8 new features, regression-fixes & bug-fixes: Get more info on -https://notepad-plus-plus.org/downloads/v8.8/ +https://notepad-plus-plus.org/downloads/v8.8.1/ Included plugins: @@ -34,4 +49,4 @@ Included plugins: Updater (Installer only): -* WinGUp (for Notepad++) v5.3.1 +* WinGUp (for Notepad++) v5.3.2 diff --git a/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp b/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp index 7be4844e0..e608a40f9 100644 --- a/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp +++ b/PowerEditor/src/WinControls/AboutDlg/AboutDlg.cpp @@ -68,7 +68,7 @@ intptr_t CALLBACK AboutDlg::run_dlgProc(UINT message, WPARAM wParam, LPARAM lPar _pageLink.init(_hInst, _hSelf); //_pageLink.create(::GetDlgItem(_hSelf, IDC_HOME_ADDR), L"https://notepad-plus-plus.org/"); - _pageLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), L"https://notepad-plus-plus.org/news/v88-we-are-with-ukraine/"); + _pageLink.create(::GetDlgItem(_hSelf, IDC_AUTHOR_NAME), L"https://notepad-plus-plus.org/news/v881-we-are-with-ukraine/"); return TRUE; } diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index dcfced4ed..279195923 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -19,14 +19,14 @@ //************ Notepad++ version ************************** -#define NOTEPAD_PLUS_VERSION L"Notepad++ v8.8" +#define NOTEPAD_PLUS_VERSION L"Notepad++ v8.8.1" // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 // ex : #define VERSION_VALUE L"5.63\0" -#define VERSION_INTERNAL_VALUE L"8.8\0" +#define VERSION_INTERNAL_VALUE L"8.81\0" -#define VERSION_PRODUCT_VALUE L"8.8\0" -#define VERSION_DIGITALVALUE 8, 8, 0, 0 +#define VERSION_PRODUCT_VALUE L"8.8.1\0" +#define VERSION_DIGITALVALUE 8, 8, 1, 0 //**********************************************************