OSDN Git Service

Updated Changelog.
authorlordmulder <mulder2@gmx.de>
Fri, 14 Oct 2011 23:32:58 +0000 (01:32 +0200)
committerlordmulder <mulder2@gmx.de>
Fri, 14 Oct 2011 23:32:58 +0000 (01:32 +0200)
doc/Changelog.html
src/Config.h
src/Dialog_About.cpp

index 1cec2e2..15b94dd 100644 (file)
@@ -23,13 +23,13 @@ a:visited { color: #0000EE; }
 <li>Added optional support for the FHG AAC Encoder included with Winamp 5.62 (see <a href="FAQ.html#71a113b0" target="_blank">FAQ doc</a> for details)
 <li>Added a menu for bookmarking "favorite" output folders to the "output folder" tab
 <li>Added Polish translation, thanks to Sir Daniel K &lt;sir.daniel.k@gmail.com&gt;
+<li>Added channel equalization options to the normalization filter (also fixes multi-channel processing)
 <li>Updated Qt runtime libraries to v4.8.0 RC-1 (2011-10-13), compiled with MSVC 10.0
 <li>Updated mpg123 decoder to v1.13.4 (2011-09-07), compiled with GCC 4.6.1
 <li>Updated MediaInfo to v0.7.50 (2011-09-23), compiled with MSVC 10.0
 <li>Updated language files (big thank-you to all contributors !!!)
 <li>Improved "downmix" filter by using explicit channel mappings for each number of input channels
 <li>Fixed Cue Sheet import for tracks with certain characters in the title
-<li>Fixed a problem with the "normalization" filter that sometimes caused the resulting file to be empty
 <li>Workaround for malicious "anti-virus" programs that prevent innocent applications from functioning
 <li>Enabled "Aero Glass" theme in installer and web-update program (Vista and Windows 7 only)
 <li>Restored Windows 2000 support with Visual Studio 2010 builds (this is experimental!)
index ee90f24..3ec3661 100644 (file)
@@ -30,7 +30,7 @@
 #define VER_LAMEXP_MINOR_LO                                    3
 #define VER_LAMEXP_TYPE                                                Beta
 #define VER_LAMEXP_PATCH                                       4
-#define VER_LAMEXP_BUILD                                       735
+#define VER_LAMEXP_BUILD                                       736
 
 ///////////////////////////////////////////////////////////////////////////////
 // Tools versions
index b354718..4d62649 100644 (file)
@@ -652,9 +652,9 @@ QString AboutDialog::makeToolText(const QString &toolName, const QString &toolBi
                verStr = lamexp_version2string(toolVerFmt, lamexp_tool_version(toolBin), tr("n/a"));
        }
 
-       toolText += QString("<li><nobr><b>%1 (%2)</b></nobr><br>").arg(toolName, verStr);
-       toolText += QString("<nobr>%1</nobr><br>").arg(toolLicense);
-       if(!extraInfo.isEmpty()) toolText += QString("<nobr><i>%1</i></nobr><br>").arg(extraInfo);
+       toolText += QString("<li><nobr><b>%1 (%2)</b></nobr><br>").arg(toolName, verStr).replace("-", "&minus;");
+       toolText += QString("<nobr>%1</nobr><br>").arg(toolLicense).replace("-", "&minus;");
+       if(!extraInfo.isEmpty()) toolText += QString("<nobr><i>%1</i></nobr><br>").arg(extraInfo).replace("-", "&minus;");
        toolText += QString("<a href=\"%1\">%1</a>").arg(toolWebsite);
        toolText += QString("<div style=\"font-size:1pt\"><br></div>");