Updated Changelog.

This commit is contained in:
LoRd_MuldeR 2011-10-15 01:32:58 +02:00
parent e3d1a6cc7a
commit b57d08b874
3 changed files with 5 additions and 5 deletions

View 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!)

View 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

View 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>");