Merge pull request #3622 from hpwamr/mui

+ Upd: Version files and Changes.txt
This commit is contained in:
Pairi Daiza 2021-08-28 17:20:50 +02:00 committed by GitHub
commit 154e47feed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 6 deletions

View File

@ -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.

View File

@ -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
---------

View File

@ -1 +1 @@
827
828

View File

@ -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>

View File

@ -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);
}
}

View File

@ -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