Merge remote-tracking branch 'upstream/master' into DevNewFeatures

This commit is contained in:
RaiKoHoff 2020-01-31 15:40:54 +01:00
commit 3513947d70
5 changed files with 9 additions and 6 deletions

View File

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

View File

@ -1 +1 @@
2719
2720

View File

@ -3,7 +3,7 @@
<assemblyIdentity
name="Notepad3"
processorArchitecture="*"
version="5.20.130.2719"
version="5.20.131.2720"
type="win32"
/>
<description>Notepad3 BETA</description>

View File

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

View File

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