Notepad++ 8.7.2 release

This commit is contained in:
Don Ho 2024-11-27 04:15:57 +01:00
parent ae56752472
commit aaf3b3906e
2 changed files with 13 additions and 18 deletions

View File

@ -1,21 +1,16 @@
Notepad++ v8.7.1 bug-fixes & new enhancements: Notepad++ v8.7.2 new features & bug-fixes:
1. Update cURL in Notepad++ updater (WinGUp) for fixing cURL's CVE-2024-7264 issue. 1. Add Pin tab feature.
2. Fix opened network files hanging while the network disconnected. 2. Tabbar enhancement: Hide inactive tab Close & Pin buttons.
3. Fix not being able to open folder via cammand argument regression. 3. Tabbar enhancement: Highlight inactive darken tab on mouse hover.
4. Update to Scintilla 5.5.3 & Lexilla 5.4.1. 4. Fix Ctrl-C not doing copy from Search result issue.
5. Fix modified Find dialog status msg colors not being remembered through sessions. 5. Add "Minimize / Close to" option for System tray.
6. Fix hanging issue while hiding lines. 6. Add ability to open/copy selected files from Search-results.
7. Make left behide hide line close marker removable. 7. Fix replace field focus losing when Notepad++ is switched back.
8. Fix Find dialog status bar wrong messaging (regression).
9. Fix URL parsing issue with '?' after '#'.
10. Add "Close to system tray" ability.
11. Add tab created time tooltip for new opened untitled tab.
12. Improve GUI to avoid user confusion between Global override & Default Styles.
Get more info on Get more info on
https://notepad-plus-plus.org/downloads/v8.7.1/ https://notepad-plus-plus.org/downloads/v8.7.2/
Included plugins: Included plugins:

View File

@ -19,14 +19,14 @@
// //
// Notepad++ version: begin // Notepad++ version: begin
// //
#define NOTEPAD_PLUS_VERSION L"Notepad++ v8.7.1" #define NOTEPAD_PLUS_VERSION L"Notepad++ v8.7.2"
// should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 // 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" // ex : #define VERSION_VALUE L"5.63\0"
#define VERSION_INTERNAL_VALUE L"8.71\0" #define VERSION_INTERNAL_VALUE L"8.72\0"
#define VERSION_PRODUCT_VALUE L"8.7.1\0" #define VERSION_PRODUCT_VALUE L"8.7.2\0"
#define VERSION_DIGITALVALUE 8, 7, 1, 0 #define VERSION_DIGITALVALUE 8, 7, 2, 0
// Notepad++ version: end // Notepad++ version: end