Notepad++ v8.6.2 release
This commit is contained in:
parent
75ae73c173
commit
7479e31fb3
|
@ -1,30 +1,37 @@
|
|||
Notepad++ v8.6.2 fixed regressions:
|
||||
|
||||
1. Fix Shift-DEL, Ctrl-INS and Shift-INS not working regression.
|
||||
2. Fix Ctrl+V cannot paste into the text fields of certain plugins regression.
|
||||
3. Remove option "disableLineCopyCutDelete.xml" (the empty file takes no effect).
|
||||
4. Fix a regression: the position in the previous session is now restored correctly in cloned document.
|
||||
|
||||
|
||||
Notepad++ v8.6.1 new features & bug-fixes:
|
||||
|
||||
1. Updated to Scintilla 5.4.1 & Lexilla 5.3.0.
|
||||
2. Fix a regression: the position in the previous session is now restored correctly in cloned document.
|
||||
3. Fix a regression: customized extension in Style Configurator is now saved correctly.
|
||||
4. Add an ability (disableLineCopyCutDelete.xml) to disable line copy/cut/delete when no selection is made.
|
||||
5. Add an ability (noColumnToMultiSelect.xml) to disable column mode to multi-select mode.
|
||||
6. Fix deleting in column mode also delete an unexpected EOL.
|
||||
7. Fix hidden results of long lines for Search results with "Find in..." commands.
|
||||
8. Enhance Search-results by showing search options for "Find in..." commands.
|
||||
9. Fix an issue: replacements are no longer duplicated (the 2nd time in cloned document) for "Replace in Opened Docs".
|
||||
10. Fix a regression to make F3 & Shift-F3 work again in Incremental Search.
|
||||
11. Add document tab navigation commands: "First tab" & "Last tab".
|
||||
12. Add document tab commands: "Move to Start" & "Move to End" commands.
|
||||
13. 3 RTL new abilities: RTL per document, RTL per document remembered across the sessions & new attribute editZoneRTL="no" in RTL localization files.
|
||||
14. Enhance the "-loadingTime" command line parameter.
|
||||
15. Enhance the performance: disable undo collection while loading a file.
|
||||
16. Sort language list in the Preferences dialog.
|
||||
17. Fix a visual glitch that occurred during multi-paste.
|
||||
18. Fix confusing memory allocation error message.
|
||||
19. Fix python wrong decorator attribute color.
|
||||
20. Fix file status in "other view" is not detected.
|
||||
21. Fix dropped file being opened in the wrong view.
|
||||
2. Fix a regression: customized extension in Style Configurator is now saved correctly.
|
||||
3. Add an ability (disableLineCopyCutDelete.xml) to disable line copy/cut/delete when no selection is made.
|
||||
4. Add an ability (noColumnToMultiSelect.xml) to disable column mode to multi-select mode.
|
||||
5. Fix deleting in column mode also delete an unexpected EOL.
|
||||
6. Fix hidden results of long lines for Search results with "Find in..." commands.
|
||||
7. Enhance Search-results by showing search options for "Find in..." commands.
|
||||
8. Fix an issue: replacements are no longer duplicated (the 2nd time in cloned document) for "Replace in Opened Docs".
|
||||
9. Fix a regression to make F3 & Shift-F3 work again in Incremental Search.
|
||||
10. Add document tab navigation commands: "First tab" & "Last tab".
|
||||
11. Add document tab commands: "Move to Start" & "Move to End" commands.
|
||||
12. 3 RTL new abilities: RTL per document, RTL per document remembered across the sessions & new attribute editZoneRTL="no" in RTL localization files.
|
||||
13. Enhance the "-loadingTime" command line parameter.
|
||||
14. Enhance the performance: disable undo collection while loading a file.
|
||||
15. Sort language list in the Preferences dialog.
|
||||
16. Fix a visual glitch that occurred during multi-paste.
|
||||
17. Fix confusing memory allocation error message.
|
||||
18. Fix python wrong decorator attribute color.
|
||||
19. Fix file status in "other view" is not detected.
|
||||
20. Fix dropped file being opened in the wrong view.
|
||||
|
||||
|
||||
Get more info on
|
||||
https://notepad-plus-plus.org/downloads/v8.6.1/
|
||||
https://notepad-plus-plus.org/downloads/v8.6.2/
|
||||
|
||||
|
||||
Included plugins:
|
||||
|
|
|
@ -19,14 +19,14 @@
|
|||
//
|
||||
// Notepad++ version: begin
|
||||
//
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.6.1")
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.6.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_INTERNAL_VALUE TEXT("8.61\0")
|
||||
#define VERSION_INTERNAL_VALUE TEXT("8.62\0")
|
||||
|
||||
#define VERSION_PRODUCT_VALUE TEXT("8.6.1\0")
|
||||
#define VERSION_DIGITALVALUE 8, 6, 1, 0
|
||||
#define VERSION_PRODUCT_VALUE TEXT("8.6.2\0")
|
||||
#define VERSION_DIGITALVALUE 8, 6, 2, 0
|
||||
|
||||
// Notepad++ version: end
|
||||
|
||||
|
|
Loading…
Reference in New Issue