mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
Merge pull request #3622 from hpwamr/mui
+ Upd: Version files and Changes.txt
This commit is contained in:
commit
154e47feed
@ -33,7 +33,7 @@ UCD - (UCD)ARDET is an Encoding Detector Library
|
||||
|
||||
|
||||
========================================================
|
||||
Current BETA/RC Version 5.21.827.(build_#) (2021-08-27)
|
||||
Current BETA/RC Version 5.21.828.(build_#) (2021-08-28)
|
||||
========================================================
|
||||
|
||||
--------------------------------------------------------
|
||||
@ -162,6 +162,8 @@ CHANGES Versions in Tools or Libraries:
|
||||
FIXES:
|
||||
--------------------------------------------------------
|
||||
[.###.#]- .
|
||||
[.828.1]- Open color selection on Ctrl+Left mouse click on color indicator too.
|
||||
[.828.1]- Change cursor hand on Ctrl key-Up.
|
||||
[.827.1]- Broken "scroll undo/redo history via mouse (RMB+WHEEL)" feature.
|
||||
[.827.1]- Don't jump on initial F/R Dialog on empty clipboard.
|
||||
[.827.1]- Cursor hand on ctrl-keydown hover hyperlink.
|
||||
@ -262,6 +264,7 @@ FIXES:
|
||||
REMOVED:
|
||||
--------------------------------------------------------
|
||||
[.###.#]- .
|
||||
[.828.1]- Open color selection on Alt+Left mouse click on color indicator.
|
||||
[.807.1]- Remove deprecated (no sensible use case) "overlapping find" option.
|
||||
[.506.1]- "fontsValid" extension (closer to default scintilla code base).
|
||||
[.420.1]- Remove useless font stretch handling.
|
||||
|
||||
@ -189,7 +189,8 @@
|
||||
Ctrl+Space Select Word or Lines.
|
||||
Ctrl+Shift+Space Multi-Select All Matches.
|
||||
Alt+Shift+Arrows Rectangular Selection.
|
||||
Alt+Shift+Left Mouse Rectangular Selection.
|
||||
Alt+Left Mouse Rectangular Selection.
|
||||
Ctrl+Left Mouse On hovering color indicator → Open color selection.
|
||||
|
||||
Bookmarks
|
||||
---------
|
||||
|
||||
@ -1 +1 @@
|
||||
827
|
||||
828
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<assemblyIdentity
|
||||
name="Rizonesoft.Notepad3"
|
||||
processorArchitecture="*"
|
||||
version="5.21.827.1"
|
||||
version="5.21.828.1"
|
||||
type="win32"
|
||||
/>
|
||||
<description>Notepad3 rc</description>
|
||||
|
||||
@ -7772,7 +7772,7 @@ static LRESULT _MsgNotifyFromEdit(HWND hwnd, const SCNotification* const scn)
|
||||
HandleHotSpotURLClicked(scn->position, OPEN_WITH_BROWSER); // if applicable (file://)
|
||||
}
|
||||
} else if (SciCall_IndicatorValueAt(INDIC_NP3_COLOR_DEF, scn->position) > 0) {
|
||||
if (_s_indic_click_modifiers & (SCMOD_CTRL | SCMOD_ALT)) {
|
||||
if (_s_indic_click_modifiers & SCMOD_CTRL) {
|
||||
HandleColorDefClicked(Globals.hwndEdit, scn->position);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
#define SAPPNAME "Notepad3"
|
||||
#define VERSION_MAJOR 5
|
||||
#define VERSION_MINOR 21
|
||||
#define VERSION_REV 827
|
||||
#define VERSION_REV 828
|
||||
#define VERSION_BUILD 1
|
||||
#define SCINTILLA_VER 511
|
||||
#define LEXILLA_VER 511
|
||||
|
||||
Loading…
Reference in New Issue
Block a user