diff --git a/Build/Changes.txt b/Build/Changes.txt
index 890128adb..e13ef0d75 100644
--- a/Build/Changes.txt
+++ b/Build/Changes.txt
@@ -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.
diff --git a/Versions/build.txt b/Versions/build.txt
index 8ef17f6ce..443b34dd0 100644
--- a/Versions/build.txt
+++ b/Versions/build.txt
@@ -1 +1 @@
-2719
+2720
diff --git a/res/Notepad3.exe.manifest.conf b/res/Notepad3.exe.manifest.conf
index fbcd840f5..67d7d59df 100644
--- a/res/Notepad3.exe.manifest.conf
+++ b/res/Notepad3.exe.manifest.conf
@@ -3,7 +3,7 @@
Notepad3 BETA
diff --git a/src/Version.h b/src/Version.h
index fba9ee942..08864ef81 100644
--- a/src/Version.h
+++ b/src/Version.h
@@ -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)
diff --git a/src/VersionEx.h b/src/VersionEx.h
index fddaceeed..35d6b4c7e 100644
--- a/src/VersionEx.h
+++ b/src/VersionEx.h
@@ -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