parent
6cae886dde
commit
d80b0b254e
|
@ -1,3 +1,13 @@
|
||||||
|
Notepad++ v8.1.7 bug-fixes:
|
||||||
|
|
||||||
|
1. Fix empty file not being saved regression.
|
||||||
|
2. Fix white flash in dark mode on CMD launch with position parameters.
|
||||||
|
3. Enhance dark themes for some programming languages (JSON, Python & Makefile).
|
||||||
|
4. Fix "Run macro until the end of file" command skipping the last line issue.
|
||||||
|
5. Fix tooltip layout and position in RTL mode.
|
||||||
|
6. Fix docking problem for dockable panel in RTL mode.
|
||||||
|
|
||||||
|
|
||||||
Notepad++ v8.1.6 bug-fixes:
|
Notepad++ v8.1.6 bug-fixes:
|
||||||
|
|
||||||
1. Fix NUL file-corruption issue after system shutting down brutally (power cuts).
|
1. Fix NUL file-corruption issue after system shutting down brutally (power cuts).
|
||||||
|
@ -12,7 +22,7 @@ Notepad++ v8.1.6 bug-fixes:
|
||||||
|
|
||||||
|
|
||||||
More fixes & implementations detail:
|
More fixes & implementations detail:
|
||||||
https://notepad-plus-plus.org/downloads/v8.1.6/
|
https://notepad-plus-plus.org/downloads/v8.1.7/
|
||||||
|
|
||||||
|
|
||||||
Included plugins:
|
Included plugins:
|
||||||
|
|
|
@ -19,12 +19,12 @@
|
||||||
//
|
//
|
||||||
// Notepad++ version: begin
|
// Notepad++ version: begin
|
||||||
//
|
//
|
||||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.1.6")
|
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.1.7")
|
||||||
|
|
||||||
// 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.16\0")
|
#define VERSION_VALUE TEXT("8.17\0")
|
||||||
#define VERSION_DIGITALVALUE 8, 1, 6, 0
|
#define VERSION_DIGITALVALUE 8, 1, 7, 0
|
||||||
|
|
||||||
// Notepad++ version: end
|
// Notepad++ version: end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue