Notepad++ 8.7.3 release

This commit is contained in:
Don Ho 2024-12-01 17:05:43 +01:00
parent 1c3c2f8d3b
commit a7e2faf868
2 changed files with 15 additions and 5 deletions

View File

@ -1,3 +1,13 @@
Notepad++ v8.7.3 bug-fixes & new features :
1. Fix a crash while disabling "Pin tab" feature.
2. Fix drag&drop a folder in Notepad++ launch redundant dialog regression.
3. Fix docked panels invisibility in multi-instance mode.
4. Add "Pin/Unpin Tab" context menu item.
5. Add "Close All BUT Pinned" command.
6. Fix a possible buffer overflow issue.
Notepad++ v8.7.2 new features & bug-fixes:
1. Add Pin tab feature.
@ -10,7 +20,7 @@ Notepad++ v8.7.2 new features & bug-fixes:
Get more info on
https://notepad-plus-plus.org/downloads/v8.7.2/
https://notepad-plus-plus.org/downloads/v8.7.3/
Included plugins:

View File

@ -19,14 +19,14 @@
//
// Notepad++ version: begin
//
#define NOTEPAD_PLUS_VERSION L"Notepad++ v8.7.2"
#define NOTEPAD_PLUS_VERSION L"Notepad++ v8.7.3"
// 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.72\0"
#define VERSION_INTERNAL_VALUE L"8.73\0"
#define VERSION_PRODUCT_VALUE L"8.7.2\0"
#define VERSION_DIGITALVALUE 8, 7, 2, 0
#define VERSION_PRODUCT_VALUE L"8.7.3\0"
#define VERSION_DIGITALVALUE 8, 7, 3, 0
// Notepad++ version: end