Notepad++ 8.6.6 release

This commit is contained in:
Don Ho 2024-05-10 01:45:08 +02:00
parent eb627b0677
commit ec7c5cec42
2 changed files with 27 additions and 25 deletions

View File

@ -1,28 +1,30 @@
Notepad++ v8.6.5 bug-fixes & new enhancements: Notepad++ v8.6.6 bug-fixes & new enhancements:
1. Fix "Replace All" action not notifying plugins of modification regression by adding NPPN_GLOBALMODIFIED. 1. Update to scintilla 5.5.0 & Lexilla 5.3.2.
2. Fix plugins not receiving some Scintilla notification types regression. 2. Fix crash when crossing the 2GB file size threshold.
3. Fix Shortcut Mapper pontential crash problem. 3. Fix a performance issue due to URL recognition.
4. Fix period backup pontential crash due to the dead lock. 4. Update to nlohman json 3.11.3.
5. Fix NUL characters file corruption after power outrages. 5. Fix multi-edit resists escape after typing issue.
6. Remedy losing session problem after power outrages. 6. Make F3 & Shift-F3 work in Find Replace dialog.
7. Fix URLs are not detected after a "Replace All" regression. 7. Allow Ctrl-TAB to switch tabs in FindReplace, PluginAdmin and UDL dialogs.
8. Notify user while saving failure due to hardware problem. 8. Add programming language support for Go & Raku(Perl 6).
9. Update to scintilla 5.4.3 (from 5.4.1) & Lexilla 5.3.1. 9. Fix user defined auto-insert not working issue.
10. Support template literal (template strings) in JavaScript & make `back-quoted strings` more readable. 10. Enhance GUI: resize checkboxes/radio buttons as text length needs.
11. Add support for Change History in the text, besides in the margin. Also, make Change History color configurable. 11. Enhance GUI: make sizing arrows more coherent in Find dialog.
12. Fix NPPM_RELOADFILE API return wrong result issue. 12. Fix URL enclosed in apostrophes or backtick not working issue.
13. Enhance Shortcut Mapper filter to find command items more easily 13. Fix wrong dropped file view issue.
14. Prevent typing control characters into document & make it optional. 14. Fix Korean(한)/English(영) key not working regression.
15. Fix possible no-GUI state when using systray. 15. Fix the tab labels of some dialogs being cut in Dark mode.
16. Make context menu popup location at current text position when invoked via keyboard. 16. Fix close button disappeared issue in Find Replace dialog.
17. Fix Notepad++ blocked when closed minimized or from systray. 17. Apply dark theme to checkbox buttons on Windows 11.
18. Fix python wrong decorator attribute colors & add "ATTRIBUTE" color in styles.xml.model. 18. Fix menu bar cluttered in Dark Mode issue.
19. Fix Mouse Wheel Scrolling in Shortcut Mapper & reduce also the memory use. 19. Fix Debug Info minor display regression.
20. Enhance Lua language syntax highlighting.
21. Enhance the function list support for Ada.
Get more info on Get more info on
https://notepad-plus-plus.org/downloads/v8.6.5/ https://notepad-plus-plus.org/downloads/v8.6.6/
Included plugins: Included plugins:

View File

@ -19,14 +19,14 @@
// //
// Notepad++ version: begin // Notepad++ version: begin
// //
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.6.5") #define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.6.6")
// 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_INTERNAL_VALUE TEXT("8.65\0") #define VERSION_INTERNAL_VALUE TEXT("8.66\0")
#define VERSION_PRODUCT_VALUE TEXT("8.6.5\0") #define VERSION_PRODUCT_VALUE TEXT("8.6.6\0")
#define VERSION_DIGITALVALUE 8, 6, 5, 0 #define VERSION_DIGITALVALUE 8, 6, 6, 0
// Notepad++ version: end // Notepad++ version: end