diff --git a/Build/Changes.txt b/Build/Changes.txt
index 0cc06d681..e687e3ff1 100644
--- a/Build/Changes.txt
+++ b/Build/Changes.txt
@@ -59,6 +59,7 @@ NEW:
CHANGES:
--------------------------------------------------------
[.###.#]- .
+[.413.2]- Configurable position offset on launching new instance.
[.413.1]- Clarify menu item string (only one instance per file).
[.413.1]- Drag-n-Drop: allow multiple files to drop.
[.413.1]- Drag-n-Drop: replace current file (Ctrl+ for new instance).
@@ -88,6 +89,7 @@ CHANGES:
FIXES:
--------------------------------------------------------
[.###.#]- .
+[.413.2]- Sticky Window Flag on launching new instance.
[.413.1]- Prevent duplicate instance, if setting does not allow.
[.412.1]- Lazy styling (no need for SCN_STYLENEEDED).
[.412.1]- Caret visibility on JumpTo() after file (re-)load.
diff --git a/Readme.md b/Readme.md
index 21a2e1c9f..1494f8555 100644
--- a/Readme.md
+++ b/Readme.md
@@ -356,6 +356,10 @@ See Replacing Windows Notepad for detailed explanations.
This items are managed by Notepad3.
- `Menu->View->Position->Sticky Window Position` (Will remember current window position on restart, instead of last closed position (save on exit))
+#### `LaunchInstanceWndPosOffset=0`
+
+#### `LaunchInstanceFullVisible=0`
+
#### `UseOldStyleBraceMatching=0`
UseOldStyleBraceMatching=1 to switch back to (not recommended) old style behavior
diff --git a/Versions/build.txt b/Versions/build.txt
index d00491fd7..0cfbf0888 100644
--- a/Versions/build.txt
+++ b/Versions/build.txt
@@ -1 +1 @@
-1
+2
diff --git a/res/Notepad3.exe.manifest.conf b/res/Notepad3.exe.manifest.conf
index 8a75970aa..9d2d853cd 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 bec5469ba..0e3652e4b 100644
--- a/src/Version.h
+++ b/src/Version.h
@@ -77,7 +77,9 @@
#if defined(_MSC_VER)
#if (_MSC_VER == 1928)
- #if (_MSC_FULL_VER >= 192829913)
+ #if (_MSC_FULL_VER >= 192829914)
+ #define VER_CPL MS Visual C++ 2019 v16.9.4
+ #elif (_MSC_FULL_VER >= 192829913)
#define VER_CPL MS Visual C++ 2019 v16.9.(2-3)
#elif (_MSC_FULL_VER >= 192829912)
#define VER_CPL MS Visual C++ 2019 v16.9.1
diff --git a/src/VersionEx.h b/src/VersionEx.h
index 2128c3672..d22d9bbbc 100644
--- a/src/VersionEx.h
+++ b/src/VersionEx.h
@@ -9,7 +9,7 @@
#define VERSION_MAJOR 5
#define VERSION_MINOR 21
#define VERSION_REV 413
-#define VERSION_BUILD 1
+#define VERSION_BUILD 2
#define SCINTILLA_VER 501
#define LEXILLA_VER 501
#define ONIGURUMA_REGEX_VER 6.9.6