+ enh: grepWinNP3: asynchronous search & replace version

+ upd: VS2019 compiler version
This commit is contained in:
RaiKoHoff 2020-04-01 15:24:49 +02:00
parent 05531a17ed
commit ddbd2f370f
7 changed files with 9 additions and 7 deletions

View File

@ -1 +1 @@
3
1

View File

@ -1 +1 @@
331
401

Binary file not shown.

Binary file not shown.

View File

@ -3,7 +3,7 @@
<assemblyIdentity
name="Notepad3"
processorArchitecture="*"
version="5.20.331.3"
version="5.20.401.1"
type="win32"
/>
<description>Notepad3 NF</description>

View File

@ -74,7 +74,9 @@
#if defined(_MSC_VER)
#if (_MSC_VER == 1925)
#if(_MSC_FULL_VER >= 192528611)
#if(_MSC_FULL_VER >= 192528612)
#define VER_CPL MS Visual C++ 2019 v16.5.2
#elif(_MSC_FULL_VER >= 192528611)
#define VER_CPL MS Visual C++ 2019 v16.5.1
#elif(_MSC_FULL_VER >= 192528610)
#define VER_CPL MS Visual C++ 2019 v16.5.0

View File

@ -8,12 +8,12 @@
#define SAPPNAME "Notepad3"
#define VERSION_MAJOR 5
#define VERSION_MINOR 20
#define VERSION_REV 331
#define VERSION_BUILD 3
#define VERSION_REV 401
#define VERSION_BUILD 1
#define SCINTILLA_VER 432
#define ONIGURUMA_REGEX_VER 6.9.4
#define UCHARDET_VER 2018.09.27
#define TINYEXPR_VER 2018.05.11
#define UTHASH_VER 2.1.0
#define VERSION_PATCH NF
#define VERSION_COMMIT_ID dkt1-amr
#define VERSION_COMMIT_ID t7820-rk