diff --git a/Build/Changes.txt b/Build/Changes.txt
index fc3ea0e81..a2c7fde28 100644
--- a/Build/Changes.txt
+++ b/Build/Changes.txt
@@ -12,7 +12,61 @@ LEGEND:
==================================================
+==================================================
+Version 5.18.1103.1407 (3 November 2018)
+==================================================
+
--------------------------------------------------
+NEW:
+--------------------------------------------------
+
+- Added initial "minipath.ini" to Visual Studio Project.
+- Read undefined MiniPath settings from Notepad3.ini (Preferred language and Favorites directory).
+- MiniPath Multilingual support.
+- Handle zero-length lines in line-sorting algorithm.
+- Support for "Rust" source code syntax highlighting.
+- Multilingual support.
+
+--------------------------------------------------
+CHANGES:
+--------------------------------------------------
+
+
+- MiniPath About dialog: visual adjustments.
+- Optimize icon resource handling.
+- Optimized MiniPath resource file (icon/bitmap placement).
+- Enhanced MiniPath.
+- Small design change of MiniPath's Copy/Move dialog box.
+- Scintilla updated to 410.
+- Print option "Screen Colors" now prints with the same colors used on screen including line numbers.
+- Changed behavior of removing duplicate lines (ignore EOL/EOF chars).
+- Line sorting: Move empty lines to end of selection (always, if not removed).
+- Adapted PortableApps.com creator script to MUI structure.
+- STD/2ND sync with DefaultText/2ndDefaultText handling.
+
+--------------------------------------------------
+FIXES:
+--------------------------------------------------
+
+- Do not reset scroll-width tracking on saving file (issue #539: https://github.com/rizonesoft/Notepad3/issues/539).
+- Fixed portable MiniPath redirector .ini files.
+- Support Scintilla's new indicator box styles ("INDIC_GRADIENT" and "INDIC_CRADIENTCENTRE").
+- Fixed incremental search on find/replace dialog.
+- Fixed line sorting.
+- Center commandline help dialog.
+- In case of STD lexer only display "Default Text" in statusbar (indicator shows which one).
+- Fixed resource file problem (preproc defines).
+
+--------------------------------------------------
+TRANSLATIONS (MUI):
+--------------------------------------------------
+
+- French Translation.
+- MiniPath German Translation.
+- English (UK) Translation.
+- German Translation.
+
+==================================================
Version 4.18.511.992 (12 May 2018)
--------------------------------------------------
- New: Menu entries for (hidden) Accelerator Keys.
diff --git a/Build/Ignore.txt b/Build/Ignore.txt
index 6a5e14e5c..b4883b320 100644
--- a/Build/Ignore.txt
+++ b/Build/Ignore.txt
@@ -1 +1,2 @@
-\obj\
\ No newline at end of file
+\obj\
+\lng\en-US\
\ No newline at end of file
diff --git a/Build/make_zip.bat b/Build/make_zip.bat
index c9414d998..fa44c7c00 100644
--- a/Build/make_zip.bat
+++ b/Build/make_zip.bat
@@ -85,7 +85,7 @@ IF EXIST "%TEMP_NAME%" RD /S /Q "%TEMP_NAME%"
IF NOT EXIST "%TEMP_NAME%" MD "%TEMP_NAME%"
IF NOT EXIST "Packages" MD "Packages"
-FOR %%A IN ("Changes.txt" "License.txt" "Readme.txt"^
+FOR %%A IN ("Changes.txt" "License.txt" "Readme.txt" "Notepad3.ini" "minipath.ini"^
"..\%1\ced.exe" "..\%1\Notepad3.exe" "..\%1\np3encrypt.exe"^
"..\%1\minipath.exe") DO COPY /Y /V "%%A" "%TEMP_NAME%\"
@@ -98,8 +98,8 @@ IF NOT EXIST "%FAVORITES%" MD "%FAVORITES%"
PUSHD "%TEMP_NAME%"
"%SEVENZIP%" a -tzip -mx=9^
- "%ZIP_NAME%.zip" "License.txt" "Notepad3.exe" "Changes.txt"^
- "Readme.txt" "Favorites" "minipath.exe" "np3encrypt.exe" "ced.exe" "lng">NUL
+ "%ZIP_NAME%.zip" "License.txt" "Notepad3.exe" "Notepad3.ini" "Changes.txt"^
+ "Readme.txt" "Favorites" "minipath.exe" "minipath.ini" "np3encrypt.exe" "ced.exe" "lng">NUL
IF %ERRORLEVEL% NEQ 0 CALL :SUBMSG "ERROR" "Compilation failed!"
CALL :SUBMSG "INFO" "%ZIP_NAME%.zip created successfully!"
diff --git a/Versions/build.txt b/Versions/build.txt
index 97dc46849..a2f103a07 100644
--- a/Versions/build.txt
+++ b/Versions/build.txt
@@ -1 +1 @@
-1339
+1434
diff --git a/np3portableapp/_buildname.txt b/np3portableapp/_buildname.txt
index 7f444cc8a..4c35976dc 100644
--- a/np3portableapp/_buildname.txt
+++ b/np3portableapp/_buildname.txt
@@ -1 +1 @@
-RC_NewMenu
+RC
diff --git a/res/Notepad3.exe.manifest.conf b/res/Notepad3.exe.manifest.conf
index adf761697..35fa20e70 100644
--- a/res/Notepad3.exe.manifest.conf
+++ b/res/Notepad3.exe.manifest.conf
@@ -3,8 +3,8 @@
- Notepad3 RC_NewMenu
+ Notepad3 RC
diff --git a/src/VersionEx.h b/src/VersionEx.h
index 7836e2e70..8a609b881 100644
--- a/src/VersionEx.h
+++ b/src/VersionEx.h
@@ -6,8 +6,8 @@
#define APPNAME "Notepad3"
#define VERSION_MAJOR 5
#define VERSION_MINOR 18
-#define VERSION_REV 1103
-#define VERSION_BUILD 1339
+#define VERSION_REV 1106
+#define VERSION_BUILD 1434
#define SCINTILLA_VER 412
#define ONIGMO_REGEX_VER 6.1.3
-#define VERSION_PATCH " RC_NewMenu"
+#define VERSION_PATCH " RC"