diff --git a/doc/Changelog.html b/doc/Changelog.html
index 48c5422b..46234c37 100644
--- a/doc/Changelog.html
+++ b/doc/Changelog.html
@@ -104,6 +104,8 @@ document.write(''+e+'<\/'+'a'+'>');
Updated GnuPG to v1.4.19 (2015-02-27), compiled with GCC 4.9.2
Fixed potential deadlock in Cue Sheet import dialog when "Browse..." button is clicked
Fixed function to restore the default Temp folder, if custom Temp folder doesn't exist anymore
+Fixed parsing of command-line parameters, regression in MUtilities library (LameXP v4.12 RC-1)
+QAAC encoder is now using --cvbr
instead of --abr
when "ABR" mode is selected
Enable the embedding of cover artwork for Opus encoder (opusenc), using the --picture
option
Some installer improvements have been implemented (especially in "update" mode)
Full support for Windows 10 RTM (Build #10240)
diff --git a/doc/Changelog.md b/doc/Changelog.md
index caf93798..335d61eb 100644
--- a/doc/Changelog.md
+++ b/doc/Changelog.md
@@ -21,6 +21,8 @@
* Updated GnuPG to v1.4.19 (2015-02-27), compiled with GCC 4.9.2
* Fixed potential deadlock in Cue Sheet import dialog when "Browse..." button is clicked
* Fixed function to restore the default Temp folder, if custom Temp folder doesn't exist anymore
+* Fixed parsing of command-line parameters, regression in MUtilities library (LameXP v4.12 RC-1)
+* QAAC encoder is now using `--cvbr` instead of `--abr` when "ABR" mode is selected
* Enable the embedding of cover artwork for Opus encoder (opusenc), using the ``--picture`` option
* Some installer improvements have been implemented (especially in "update" mode)
* Full support for Windows 10 RTM (Build #10240)
diff --git a/src/Config.h b/src/Config.h
index 07608fb7..5e6dd31f 100644
--- a/src/Config.h
+++ b/src/Config.h
@@ -34,8 +34,8 @@
#define VER_LAMEXP_MINOR_HI 1
#define VER_LAMEXP_MINOR_LO 2
#define VER_LAMEXP_TYPE RC
-#define VER_LAMEXP_PATCH 3
-#define VER_LAMEXP_BUILD 1810
+#define VER_LAMEXP_PATCH 4
+#define VER_LAMEXP_BUILD 1812
#define VER_LAMEXP_CONFG 1700
///////////////////////////////////////////////////////////////////////////////
diff --git a/src/Encoder_AAC_QAAC.cpp b/src/Encoder_AAC_QAAC.cpp
index c5aee188..2bf7bcaf 100644
--- a/src/Encoder_AAC_QAAC.cpp
+++ b/src/Encoder_AAC_QAAC.cpp
@@ -179,7 +179,7 @@ bool QAACEncoder::encode(const QString &sourceFile, const AudioFileModel_MetaInf
args << "--cbr" << QString::number(qBound(8, index2bitrate(m_configBitrate), 576));
break;
case SettingsModel::ABRMode:
- args << "--abr" << QString::number(qBound(8, index2bitrate(m_configBitrate), 576));
+ args << "--cvbr" << QString::number(qBound(8, index2bitrate(m_configBitrate), 576));
break;
case SettingsModel::VBRMode:
args << "--tvbr" << QString::number(g_qaacVBRQualityLUT[qBound(0, m_configBitrate , 14)]);