Notepad++ 8.7.5 release

This commit is contained in:
Don Ho 2024-12-25 05:34:02 +01:00
parent 50c2c3a74a
commit 8a8f8b2a89
2 changed files with 22 additions and 5 deletions

View File

@ -1,3 +1,20 @@
Notepad++ v8.7.5 regression-fixes, bug-fixes & enhancements:
1. Fix nfo file losing modification issue (regression from v8.7.4).
2. Fix network file wrong modification detection (regression from v8.7.1).
3. Fix regression "Open Selected PathName(s)" command not working while all selected.
4. Fix unusuability after deleting files in split view.
5. Fix unsaved documents lost on next launch if portable Notepad++ change path.
6. Refactoring for the better performance & smaller binary size.
7. Improve "Copy Selected Lines" command.
8. Add Visual Basic function list.
9. Add Swift, TypeScript, and Go for advanced Auto-indent.
10. Fix UDL comment line not working due to conflict with stream comment definition.
11. Enhance "Follow current doc." GUI action/option in Find in files.
12. Fix Reload Workspace not working.
13. Add "Show details" functionality in installer.
Notepad++ v8.7.4 regression-fix & bug-fixes:
1. Fix regression of multi-line tabbar height not updated after closing tabs.
@ -27,7 +44,7 @@ Notepad++ v8.7.2 new features & bug-fixes:
Get more info on
https://notepad-plus-plus.org/downloads/v8.7.4/
https://notepad-plus-plus.org/downloads/v8.7.5/
Included plugins:

View File

@ -19,14 +19,14 @@
//
// Notepad++ version: begin
//
#define NOTEPAD_PLUS_VERSION L"Notepad++ v8.7.4"
#define NOTEPAD_PLUS_VERSION L"Notepad++ v8.7.5"
// 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.74\0"
#define VERSION_INTERNAL_VALUE L"8.75\0"
#define VERSION_PRODUCT_VALUE L"8.7.4\0"
#define VERSION_DIGITALVALUE 8, 7, 4, 0
#define VERSION_PRODUCT_VALUE L"8.7.5\0"
#define VERSION_DIGITALVALUE 8, 7, 5, 0
// Notepad++ version: end