Notepad++ v7.9 release
Notepad++ Stand with Hong Kong edition
This commit is contained in:
parent
a66e8a2646
commit
30ab547198
|
@ -1,15 +1,32 @@
|
||||||
Notepad++ v7.8.9 Enhancements & bug-fixes:
|
Notepad++ v7.9 Enhancements & bug-fixes:
|
||||||
|
|
||||||
1. Fix Line operations (join lines, split lines, remove duplicate lines and sort lines) doing one too many lines issue.
|
|
||||||
2. Fix the regression of jump line failure via command line (-n).
|
|
||||||
3. Fix URL Hovered colour disappears after modifying any Clickable Link Settings regression.
|
|
||||||
4. Fix URL is not clickable in certain stuation while wrapped is enabled.
|
|
||||||
5. Fix "Save" not working in Windows dialog.
|
|
||||||
6. Fix Flickering cursor after double clicking a found line in find results.
|
|
||||||
7. Fix Found line may not be centered by double clicking in find results, if word wrap is on.
|
|
||||||
8. Fix wrong horizontal scroll bar position after restoring Window position.
|
|
||||||
9. Fix Find result window output TAB-width incoherent issue.
|
|
||||||
|
|
||||||
|
1. Add the ability to open the target file of a Shortcut (*.lnk).
|
||||||
|
2. Enhance side panels behaviour: close a single panel instead of the entire stack.
|
||||||
|
3. Fix Monitoring & document auto-update not scrolling to the end of the file with Word wrap enabled issue.
|
||||||
|
4. Fix mouse cursor flicker while hovering URLs.
|
||||||
|
5. Add back hovered blue underlined URLs.
|
||||||
|
6. Enhance C++, Perl, Python parsers and add VHDL in Function List.
|
||||||
|
7. Improve some ambiguous commands naming in Shortcut Mapper.
|
||||||
|
8. Add an option to prevent right click from canceling selection.
|
||||||
|
9. Add ability to sort lines randomly.
|
||||||
|
10. Fix "Close All BUT this" looses current document data issue.
|
||||||
|
11. Allow user to start making a stream selection and then change to column block (by pressing ALT key).
|
||||||
|
12. Add word wrap option to find results context menu.
|
||||||
|
13. Add keyboard navigation ability to Column Editor.
|
||||||
|
14. Add keyboard shortcut ability to Projects, Folder as Workspace and Function List for switching among these panels.
|
||||||
|
15. Enable project panels toggle from menu.
|
||||||
|
16. Enhance Folder as Workspace to restore latest selected item of last session on Notepad++ startup.
|
||||||
|
17. Fix inaccurate line margin update with word wrap enabled.
|
||||||
|
18. Fix Find previous/next commands not scroll vertically to show match result issue (with word wrap disabled).
|
||||||
|
19. Fix column key sort with col block starting in col1 bug.
|
||||||
|
20. Add confirmation preference for Replace All in All Opened Documents operation.
|
||||||
|
21. Add Escape keypress in functionlist searchbox to clear its text.
|
||||||
|
22. Add RTL capability to localized messageboxes.
|
||||||
|
23. Make (Find) dlgAlwaysVisible a true Preference setting.
|
||||||
|
24. Fix sorting by column key using incorrect key values.
|
||||||
|
25. Add search scope to Find window status bar output.
|
||||||
|
26. Fix false hit result in Find in Finder.
|
||||||
|
27. Prevent redundant line data copy in Finder.
|
||||||
|
|
||||||
Included plugins:
|
Included plugins:
|
||||||
|
|
||||||
|
|
|
@ -27,12 +27,12 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.8.9")
|
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.9")
|
||||||
|
|
||||||
// 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("7.89\0")
|
#define VERSION_VALUE TEXT("7.9\0")
|
||||||
#define VERSION_DIGITALVALUE 7, 8, 9, 0
|
#define VERSION_DIGITALVALUE 7, 9, 0, 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue