Notepad++ 8.1.9.1 release

This commit is contained in:
Don HO 2021-11-13 18:57:32 +01:00
parent bd082e8205
commit aa06651a39
3 changed files with 16 additions and 5 deletions

1
.gitignore vendored
View File

@ -52,6 +52,7 @@ UpgradeLog*.htm
.builds .builds
*.pidb *.pidb
*.vcxproj.filters *.vcxproj.filters
*.bak
PowerEditor/bin/notepad++.exe PowerEditor/bin/notepad++.exe
PowerEditor/bin/SciLexer.dll PowerEditor/bin/SciLexer.dll

View File

@ -1,3 +1,13 @@
Notepad++ v8.1.9.1 bug-fixes and new enhancement:
1. Fix a regression of saving problem.
2. Fix a regression of reloading false alarm from the network drive.
3. Make Function list/Project panel/Folder as Workspace icon display correct under high DPI.
4. Make UDL generic dark mode (working for all dark theme) possible via UDL UI.
5. Fix phantom docked panels issue after restoring from systray.
6. Enable backup on save (simple) feature by default (only for the new installation).
Notepad++ v8.1.9 bug-fixes: Notepad++ v8.1.9 bug-fixes:
1. Fix empty file with non-Unicode encoding cannot be saved issue. 1. Fix empty file with non-Unicode encoding cannot be saved issue.
@ -34,7 +44,7 @@ Notepad++ v8.1.6 bug-fixes:
More fixes & implementations detail: More fixes & implementations detail:
https://notepad-plus-plus.org/downloads/v8.1.8/ https://notepad-plus-plus.org/downloads/v8.1.9.1/
Included plugins: Included plugins:
@ -46,4 +56,4 @@ Included plugins:
Updater (Installer only): Updater (Installer only):
* WinGup (for Notepad++) v5.2.1 * WinGup (for Notepad++) v5.2.2

View File

@ -19,12 +19,12 @@
// //
// Notepad++ version: begin // Notepad++ version: begin
// //
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.1.9") #define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.1.9.1")
// 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 TEXT("5.63\0") // ex : #define VERSION_VALUE TEXT("5.63\0")
#define VERSION_VALUE TEXT("8.19\0") #define VERSION_VALUE TEXT("8.191\0")
#define VERSION_DIGITALVALUE 8, 1, 9, 0 #define VERSION_DIGITALVALUE 8, 1, 9, 1
// Notepad++ version: end // Notepad++ version: end