Fixed a bug with the "Prepend relative source file path to output file" option: This option should not be in effect when "Save output files to the same location where the input file is located" is enabled. Therefore, in the GUI, the "Prepend relative source file path to output file" option was correctly disabled (greyed out) when "Save output files to the same location where the input file is located" was checked. Nonetheless "Prepend relative source file path to output file" could still be in effect, if the user had checked that option *before* it had been disabled (greyed out). This is fixed now.

This commit is contained in:
LoRd_MuldeR 2011-10-24 00:31:46 +02:00
parent 330eb7cf13
commit 0126635669
3 changed files with 4 additions and 3 deletions

View File

@ -33,6 +33,7 @@ a:visited { color: #0000EE; }
<li>Improved "downmix" filter by using explicit channel mappings for each number of input channels <li>Improved "downmix" filter by using explicit channel mappings for each number of input channels
<li>Fixed a potential bug in CPU type detection that might have caused the wrong binary to be used <li>Fixed a potential bug in CPU type detection that might have caused the wrong binary to be used
<li>Fixed Cue Sheet import for tracks with certain characters in the title <li>Fixed Cue Sheet import for tracks with certain characters in the title
<li>Fixed a bug with "Prepend relative source file path to output file" under certain conditions
<li>Workaround for malicious "anti-virus" programs that prevent innocent applications from functioning <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>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!) <li>Restored Windows 2000 support with Visual Studio 2010 builds (this is experimental!)

View File

@ -29,8 +29,8 @@
#define VER_LAMEXP_MINOR_HI 0 #define VER_LAMEXP_MINOR_HI 0
#define VER_LAMEXP_MINOR_LO 3 #define VER_LAMEXP_MINOR_LO 3
#define VER_LAMEXP_TYPE RC #define VER_LAMEXP_TYPE RC
#define VER_LAMEXP_PATCH 1 #define VER_LAMEXP_PATCH 2
#define VER_LAMEXP_BUILD 754 #define VER_LAMEXP_BUILD 756
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// Tools versions // Tools versions

View File

@ -671,7 +671,7 @@ void ProcessingDialog::startNextJob(void)
(m_settings->outputToSourceDir() ? QFileInfo(currentFile.filePath()).absolutePath() : m_settings->outputDir()), (m_settings->outputToSourceDir() ? QFileInfo(currentFile.filePath()).absolutePath() : m_settings->outputDir()),
(m_settings->customTempPathEnabled() ? m_settings->customTempPath() : lamexp_temp_folder2()), (m_settings->customTempPathEnabled() ? m_settings->customTempPath() : lamexp_temp_folder2()),
encoder, encoder,
m_settings->prependRelativeSourcePath() m_settings->prependRelativeSourcePath() && (!m_settings->outputToSourceDir())
); );
//Add audio filters //Add audio filters