Notepad++ 8.4.7 release
This commit is contained in:
parent
e5708bf3ea
commit
c8816e08f7
|
@ -1,28 +1,32 @@
|
||||||
Notepad++ v8.4.6 bug/regression-fixes and new features:
|
Notepad++ v8.4.7 bug-fixes and new features:
|
||||||
|
|
||||||
1. Add Change History markers for document saved/unsaved/undone modification.
|
1. Fix empty session issue due to forced Windows update restart.
|
||||||
2. Add setting tab color ability.
|
2. Fix printing with extra background colors issue due to Change History.
|
||||||
3. Update to Scintilla 5.3.0 and Lexilla 5.1.9
|
3. Update to Scintilla 5.3.1 and Lexilla 5.2.0.
|
||||||
4. Fix "Never" button not showing on Updater dialog regression.
|
4. Updated nlohmann json to 3.11.2 and Boost to 1.80.0.
|
||||||
5. Fix a printing selection regression.
|
5. Make large file restriction configurable.
|
||||||
6. Revamp tab context menu: make it less cluttered by adding sub-menu.
|
6. Optimizing open/save large files time.
|
||||||
7. Fix a security vulnerability.
|
7. Remember Column Editor settings through the sessions.
|
||||||
8. Add dark mode support to Choose Color dialog.
|
8. Fix plugin admin search issue.
|
||||||
9. Add a page (tab) for incompatible (unloaded) plugins in Plugin Admin.
|
9. Installer enhancement: prevent arm64 installer from installing on non ARM64 system.
|
||||||
10. Add Plugin list repository link and its version in PluginAdmin dialog.
|
10. Installer enhancement: remember "Don't use_%APPDATA%" option.
|
||||||
11. Fix horizontal bar showing issue while resizing document list's height.
|
11. Add new API NPPM_GETBOOKMARKID for getting bookmark ID.
|
||||||
12. Fix NPPN_DARKMODECHANGED wrong return value to plugins.
|
12. Enhance "Go To" dialog: update line/position data dynamically.
|
||||||
|
13. Fix lines hiding issue.
|
||||||
|
14. Fix language detected from content not applied if default language is set.
|
||||||
|
15. Fix long filters get truncated in Find in Files feature.
|
||||||
|
16. Add ESC Key for aborting "Move to Recycle Bin" confirmation prompt.
|
||||||
|
|
||||||
|
|
||||||
Get more info on
|
Get more info on
|
||||||
https://notepad-plus-plus.org/downloads/v8.4.6/
|
https://notepad-plus-plus.org/downloads/v8.4.7/
|
||||||
|
|
||||||
|
|
||||||
Included plugins:
|
Included plugins:
|
||||||
|
|
||||||
1. NppExport v0.4
|
1. NppExport v0.4
|
||||||
2. Converter v4.4
|
2. Converter v4.5
|
||||||
3. Mime Tool v2.8
|
3. Mime Tool v2.9
|
||||||
|
|
||||||
|
|
||||||
Updater (Installer only):
|
Updater (Installer only):
|
||||||
|
|
|
@ -19,12 +19,12 @@
|
||||||
//
|
//
|
||||||
// Notepad++ version: begin
|
// Notepad++ version: begin
|
||||||
//
|
//
|
||||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.4.6")
|
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.4.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.46\0")
|
#define VERSION_VALUE TEXT("8.47\0")
|
||||||
#define VERSION_DIGITALVALUE 8, 4, 6, 0
|
#define VERSION_DIGITALVALUE 8, 4, 7, 0
|
||||||
|
|
||||||
// Notepad++ version: end
|
// Notepad++ version: end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue