mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
Merge pull request #1611 from hpwamr/mui
+chg Minor correction of HotKey and update MS VS to 19.2.4
This commit is contained in:
commit
e89ffa16f7
@ -31,17 +31,20 @@ UCD - (UCD)ARDET is an Encoding Detector Library
|
||||
|
||||
|
||||
==================================================
|
||||
Current BETA Version 5.19.903.#(build) (2019-09-03)
|
||||
Current BETA Version 5.19.906.#(build) (2019-09-06)
|
||||
==================================================
|
||||
|
||||
--------------------------------------------------
|
||||
NEW:
|
||||
--------------------------------------------------
|
||||
- Preserve File Modification Date/Time: Option stays until new Session is loaded.
|
||||
- Save with Original File Date/Time - Ctrl+Alt+F6.
|
||||
|
||||
--------------------------------------------------
|
||||
CHANGES:
|
||||
--------------------------------------------------
|
||||
- Ctrl+Alt+Enter AutoCompletion behaviour.
|
||||
- Changed version of MarkDown-Lexer.
|
||||
- Menu and behavior for copy/paste and copy/paste line.
|
||||
- Allow each modification step to split undo typing sequence (set timeout < 20ms).
|
||||
- Split undo typing sequence (by line-breaks and/or timeout).
|
||||
@ -58,6 +61,9 @@ ENHANCEMENT:
|
||||
--------------------------------------------------
|
||||
FIXES:
|
||||
--------------------------------------------------
|
||||
- Ctrl+Shift-C/X and Paste behaviour.
|
||||
- Markdown highlight overflow.
|
||||
- Redo initial selection after replace (ins/del).
|
||||
- Hyperlink Regex detection and Update visible indicator issue.
|
||||
- Correct resource id for language sk-SK.
|
||||
- Insertion handling: keep selection if non empty selection is replaced.
|
||||
|
||||
@ -342,7 +342,7 @@ BEGIN
|
||||
MENUITEM "&Toggle Folds\tCtrl+Shift+F", IDM_VIEW_TOGGLEFOLDS
|
||||
MENUITEM "Focused View\tCtrl+Alt+V", IDM_VIEW_TOGGLE_VIEW
|
||||
MENUITEM "&Monitoring Log", IDM_VIEW_CHASING_DOCTAIL
|
||||
MENUITEM "Scroll Past End of &File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "&Scroll Past End of File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "Show &Hyperlink Tooltip", IDM_VIEW_SHOW_HYPLNK_CALLTIP
|
||||
END
|
||||
POPUP "&Toolbar"
|
||||
|
||||
@ -342,7 +342,7 @@ BEGIN
|
||||
MENUITEM "&Toggle Folds\tCtrl+Shift+F", IDM_VIEW_TOGGLEFOLDS
|
||||
MENUITEM "Focused View\tCtrl+Alt+V", IDM_VIEW_TOGGLE_VIEW
|
||||
MENUITEM "&Monitoring Log", IDM_VIEW_CHASING_DOCTAIL
|
||||
MENUITEM "Scroll Past End of &File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "&Scroll Past End of File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "Show &Hyperlink Tooltip", IDM_VIEW_SHOW_HYPLNK_CALLTIP
|
||||
END
|
||||
POPUP "&Toolbar"
|
||||
|
||||
@ -342,7 +342,7 @@ BEGIN
|
||||
MENUITEM "&Toggle Folds\tCtrl+Shift+F", IDM_VIEW_TOGGLEFOLDS
|
||||
MENUITEM "Focused View\tCtrl+Alt+V", IDM_VIEW_TOGGLE_VIEW
|
||||
MENUITEM "&Monitoring Log", IDM_VIEW_CHASING_DOCTAIL
|
||||
MENUITEM "Scroll Past End of &File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "&Scroll Past End of File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "Show &Hyperlink Tooltip", IDM_VIEW_SHOW_HYPLNK_CALLTIP
|
||||
END
|
||||
POPUP "&Toolbar"
|
||||
|
||||
@ -342,7 +342,7 @@ BEGIN
|
||||
MENUITEM "&Toggle Folds\tCtrl+Shift+F", IDM_VIEW_TOGGLEFOLDS
|
||||
MENUITEM "Focused View\tCtrl+Alt+V", IDM_VIEW_TOGGLE_VIEW
|
||||
MENUITEM "&Monitoring Log", IDM_VIEW_CHASING_DOCTAIL
|
||||
MENUITEM "Scroll Past End of &File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "&Scroll Past End of File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "Show &Hyperlink Tooltip", IDM_VIEW_SHOW_HYPLNK_CALLTIP
|
||||
END
|
||||
POPUP "&Toolbar"
|
||||
|
||||
@ -342,7 +342,7 @@ BEGIN
|
||||
MENUITEM "&Toggle Folds\tCtrl+Shift+F", IDM_VIEW_TOGGLEFOLDS
|
||||
MENUITEM "Focused View\tCtrl+Alt+V", IDM_VIEW_TOGGLE_VIEW
|
||||
MENUITEM "&Monitoring Log", IDM_VIEW_CHASING_DOCTAIL
|
||||
MENUITEM "Scroll Past End of &File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "&Scroll Past End of File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "Show &Hyperlink Tooltip", IDM_VIEW_SHOW_HYPLNK_CALLTIP
|
||||
END
|
||||
POPUP "&Toolbar"
|
||||
|
||||
@ -342,7 +342,7 @@ BEGIN
|
||||
MENUITEM "&Toggle Folds\tCtrl+Shift+F", IDM_VIEW_TOGGLEFOLDS
|
||||
MENUITEM "Focused View\tCtrl+Alt+V", IDM_VIEW_TOGGLE_VIEW
|
||||
MENUITEM "&Monitoring Log", IDM_VIEW_CHASING_DOCTAIL
|
||||
MENUITEM "Scroll Past End of &File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "&Scroll Past End of File", IDM_VIEW_SCROLLPASTEOF
|
||||
MENUITEM "Show &Hyperlink Tooltip", IDM_VIEW_SHOW_HYPLNK_CALLTIP
|
||||
END
|
||||
POPUP "&Toolbar"
|
||||
|
||||
@ -72,7 +72,7 @@
|
||||
#if defined(_MSC_VER)
|
||||
#if (_MSC_VER >= 1922)
|
||||
#if(_MSC_FULL_VER >= 192227905)
|
||||
#define VER_CPL MS Visual C++ 2019 v16.2.(0-3)
|
||||
#define VER_CPL MS Visual C++ 2019 v16.2.(0-4)
|
||||
#endif
|
||||
#elif (_MSC_VER >= 1921)
|
||||
#if(_MSC_FULL_VER >= 192127702)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user