mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
Merge remote-tracking branch 'upstream/master' into DevNewFeatures
This commit is contained in:
commit
3513947d70
@ -31,7 +31,7 @@ UCD - (UCD)ARDET is an Encoding Detector Library
|
||||
|
||||
|
||||
=====================================================
|
||||
Current BETA Version 5.20.130.(build_#) (2020-01-30)
|
||||
Current BETA Version 5.20.131.(build_#) (2020-01-31)
|
||||
=====================================================
|
||||
|
||||
-----------------------------------------------------
|
||||
@ -50,6 +50,7 @@ NEW:
|
||||
-----------------------------------------------------
|
||||
CHANGES:
|
||||
-----------------------------------------------------
|
||||
- Increase encoding detection confidence threshold to 92%.
|
||||
- Finetuning of Single Byte Char Set (SBCS) detection.
|
||||
- Add current Encoding and Lexer to "Copy Version Text".
|
||||
- Lexer keyword initializer list simplified.
|
||||
|
||||
@ -1 +1 @@
|
||||
2719
|
||||
2720
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<assemblyIdentity
|
||||
name="Notepad3"
|
||||
processorArchitecture="*"
|
||||
version="5.20.130.2719"
|
||||
version="5.20.131.2720"
|
||||
type="win32"
|
||||
/>
|
||||
<description>Notepad3 BETA</description>
|
||||
|
||||
@ -74,7 +74,9 @@
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#if (_MSC_VER == 1924)
|
||||
#if(_MSC_FULL_VER >= 192428315)
|
||||
#if(_MSC_FULL_VER >= 192428316)
|
||||
#define VER_CPL MS Visual C++ 2019 v16.4.4
|
||||
#elif(_MSC_FULL_VER >= 192428315)
|
||||
#define VER_CPL MS Visual C++ 2019 v16.4.3
|
||||
#elif(_MSC_FULL_VER >= 192428314)
|
||||
#define VER_CPL MS Visual C++ 2019 v16.4.(0-2)
|
||||
|
||||
@ -8,8 +8,8 @@
|
||||
#define SAPPNAME "Notepad3"
|
||||
#define VERSION_MAJOR 5
|
||||
#define VERSION_MINOR 20
|
||||
#define VERSION_REV 130
|
||||
#define VERSION_BUILD 2719
|
||||
#define VERSION_REV 131
|
||||
#define VERSION_BUILD 2720
|
||||
#define SCINTILLA_VER 430
|
||||
#define ONIGURUMA_REGEX_VER 6.9.4
|
||||
#define UCHARDET_VER 2018.09.27
|
||||
|
||||
Loading…
Reference in New Issue
Block a user