From b57d08b87486c8e5505f72d73465869a440d4af3 Mon Sep 17 00:00:00 2001 From: lordmulder Date: Sat, 15 Oct 2011 01:32:58 +0200 Subject: [PATCH] Updated Changelog. --- doc/Changelog.html | 2 +- src/Config.h | 2 +- src/Dialog_About.cpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/Changelog.html b/doc/Changelog.html index 1cec2e27..15b94dd7 100644 --- a/doc/Changelog.html +++ b/doc/Changelog.html @@ -23,13 +23,13 @@ a:visited { color: #0000EE; }
  • Added optional support for the FHG AAC Encoder included with Winamp 5.62 (see FAQ doc for details)
  • Added a menu for bookmarking "favorite" output folders to the "output folder" tab
  • Added Polish translation, thanks to Sir Daniel K <sir.daniel.k@gmail.com> +
  • Added channel equalization options to the normalization filter (also fixes multi-channel processing)
  • Updated Qt runtime libraries to v4.8.0 RC-1 (2011-10-13), compiled with MSVC 10.0
  • Updated mpg123 decoder to v1.13.4 (2011-09-07), compiled with GCC 4.6.1
  • Updated MediaInfo to v0.7.50 (2011-09-23), compiled with MSVC 10.0
  • Updated language files (big thank-you to all contributors !!!)
  • Improved "downmix" filter by using explicit channel mappings for each number of input channels
  • Fixed Cue Sheet import for tracks with certain characters in the title -
  • Fixed a problem with the "normalization" filter that sometimes caused the resulting file to be empty
  • Workaround for malicious "anti-virus" programs that prevent innocent applications from functioning
  • Enabled "Aero Glass" theme in installer and web-update program (Vista and Windows 7 only)
  • Restored Windows 2000 support with Visual Studio 2010 builds (this is experimental!) diff --git a/src/Config.h b/src/Config.h index ee90f244..3ec3661c 100644 --- a/src/Config.h +++ b/src/Config.h @@ -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 diff --git a/src/Dialog_About.cpp b/src/Dialog_About.cpp index b354718a..4d626499 100644 --- a/src/Dialog_About.cpp +++ b/src/Dialog_About.cpp @@ -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("
  • %1 (%2)
    ").arg(toolName, verStr); - toolText += QString("%1
    ").arg(toolLicense); - if(!extraInfo.isEmpty()) toolText += QString("%1
    ").arg(extraInfo); + toolText += QString("
  • %1 (%2)
    ").arg(toolName, verStr).replace("-", "−"); + toolText += QString("%1
    ").arg(toolLicense).replace("-", "−"); + if(!extraInfo.isEmpty()) toolText += QString("%1
    ").arg(extraInfo).replace("-", "−"); toolText += QString("%1").arg(toolWebsite); toolText += QString("

    ");