Notepad++ v8.5.6 release

pull/14025/head v8.5.6
Don Ho 2023-08-15 16:13:59 +02:00
parent 119a256907
commit e39deab778
2 changed files with 13 additions and 5 deletions

View File

@ -1,3 +1,11 @@
Notepad++ v8.5.6 bug-fixes and new features:
1. Fix plugin crash regression due to CET enhancement.
2. Add new API: indicator allocation for plugins.
3. Fix hide lines merging to avoid merging across a visible line.
4. Fix "Clear Change History" issue: cloned document markers are not cleared.
Notepad++ v8.5.5 bug-fixes and new features:
1. Update to Scintilla 5.3.6 and Lexilla 5.2.6.
@ -12,7 +20,7 @@ Notepad++ v8.5.5 bug-fixes and new features:
10. Add SHA-512 hash features.
11. Fix normal.xml for Normal text auto-completion not working issue.
12. Fix Korean IME append file extension issue in save dialog.
13. Make find/replace in files result more inaccurate while used RegExpr is invalid.
13. Make find/replace in files result more accurate while used RegExpr is invalid.
14. Fix Project panel's inaccurate initialized path in save dialog.
15. Fix wrong syntax highlighting of URLs with quotes in JSON.
16. Fix Clipboard History panel shows corrupted data issue.
@ -34,4 +42,4 @@ Included plugins:
Updater (Installer only):
* WinGup (for Notepad++) v5.2.5
* WinGup (for Notepad++) v5.2.6

View File

@ -19,12 +19,12 @@
//
// Notepad++ version: begin
//
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.5.5")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.5.6")
// 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("8.55\0")
#define VERSION_DIGITALVALUE 8, 5, 5, 0
#define VERSION_VALUE TEXT("8.56\0")
#define VERSION_DIGITALVALUE 8, 5, 6, 0
// Notepad++ version: end