Notepad++ 8.1.2 Release

This commit is contained in:
Don HO 2021-07-19 03:51:50 +02:00
parent 53f1e6bff8
commit fdb2951e00
2 changed files with 15 additions and 60 deletions

View File

@ -1,64 +1,19 @@
Notepad++ v8.1.1 bug-fixes:
Notepad++ v8.1.2 new features, enhancements & bug-fixes:
1. Fix edit zone not being applied to dark mode issue on another user account in the same machine.
2. Enhance dark mode (make user interface more dark-modable).
1. Make dark mode restartless.
2. Activate dark mode in Windows 11.
3. Make Notepad++ dark mode colors customizable: add 6 more color tone choices.
4. Add customizing dynamically dark mode colors capacity
5. Add command line flag -udl="UDL name" to open a file by applying an existent UDL via its name.
6. Use always current file directory in File Rename dialog.
7. Fix "Remember last used directory" unexpected behaviour.
8. Fix corrupted encoding text on status bar if shortcut assigned to encode command.
9. Add a Save all confirm dialog.
10. Improve JavaScript auto-completion.
Notepad++ v8.1 bug-fixes & enhancements:
1. Fix regression of auto-completion performance issue.
2. Fix Open dialog with "Save" label for "Open" button.
3. Fix Notepad++ crash on dark mode while starting up.
4. Improve look & feel in dark mode.
5. Adapt Tooltips in dark mode.
6. Remove white line under menubar in dark mode.
7. Make multiline and vertical tabs work in dark mode.
Notepad++ v8 new features, enhancements & bug-fixes:
1. Add Dark Mode.
2. ARM64 build is available.
3. One button to build them all - build Notepad++ with Scintilla static lib and Boost RegExpr headers.
4. Add new Fluent UI icons for toolbar.
5. Add new feature "Distraction Free Mode" (Menu "View->Distraction Free Mode").
6. Add new API NPPM_ADDTOOLBARICON_FORDARKMODE for dark mode.
7. Add 1 click action (SHIFT-click) on close button to close all tabs in dockable panel.
8. Add ability of changing select text foreground color (optional).
9. Allow Replace to stop after replacement (optional).
10. Fix append extension feature not working in save dialog.
11. Add ability to reverse line order.
12. Add ability to style only current instance of text.
13. Fix duplicated entries in Auto-Completion pop-up window.
14. Fix Python Function List not showing functions in some circumstance.
15. Enhance Folder as Workspace performance while adding/removing files in bulk.
16. Add Ada, Fortran, Fortran77 & Haskell in function lists.
17. Improve performance of "Open all" command in Search results.
18. Add "Copy Pathnames" command to Search results context menu.
19. Catch regex search exceptions and show exception message.
20. Add MarkAll Preference settings for case and word.
21. Fix regression: Handle "Default Directory" setting correctly in Open/Save File Dialog.
22. Fix a special character in UTF16 file crash issue
23. Add "Append extension" checkbox to Save As dialog.
24. Fix Copy command in Search result is available as there's no selection.
25. Add padding ability in the edit zone.
26. Make new tab name translatable.
27. Improve character case handling in RegEx.
28. Fix dragged out UDL file is not applied to UDL in the new instance.
29. Add command line parameter for adding specified string to app title bar.
30. Fix Auto-Completion ignoring case issue.
31. Fix "Match Whole Word" option being enabled in RegEx Search.
32. Fix sort with column key selection that appears after tab characters.
33. Fix "Reload Workspace" menu command not working issue.
34. Fix view file in Edge browser failure issue if name contains spaces.
35. Add ability to avoid accumulating multiple search results.
36. Fix UTF-16 decoding/encoding for code points above U+FFFF.
37. Fix "Save As" command removing original path from recent files history issue.
38. Fix function List button tool tips mixed up issue.
39. Remove Microsoft Bing from search engines for Search on Internet command.
More fixes & implementations detail:
https://notepad-plus-plus.org/downloads/v8.1/
https://notepad-plus-plus.org/downloads/v8.1.2/
Included plugins:

View File

@ -19,12 +19,12 @@
//
// Notepad++ version: begin
//
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.1.1")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.1.2")
// 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.11\0")
#define VERSION_DIGITALVALUE 8, 1, 1, 0
#define VERSION_VALUE TEXT("8.12\0")
#define VERSION_DIGITALVALUE 8, 1, 2, 0
// Notepad++ version: end