mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
* ALAC decoding length mismatches fixed
* Problem with single-track albums fixed * Added an option to disable assembler optimizations in flac
This commit is contained in:
@@ -132,7 +132,7 @@ namespace JDP
|
||||
else
|
||||
cueName = Path.GetFileNameWithoutExtension(pathIn) + ".cue";
|
||||
|
||||
bool outputAudio = _accurateRip != AccurateRipMode.Verify;
|
||||
bool outputAudio = _accurateRip != AccurateRipMode.Verify && _accurateRip != AccurateRipMode.VerifyPlusCRCs;
|
||||
cueSheet.Open(pathIn);
|
||||
if (outputAudio)
|
||||
{
|
||||
@@ -173,7 +173,7 @@ namespace JDP
|
||||
progressBar2.Value = 0;
|
||||
if (cueSheet.IsCD)
|
||||
{
|
||||
textBox1.Text += cueSheet.LOGContents();
|
||||
textBox1.Text += cueSheet.LOGContents;
|
||||
textBox1.Show();
|
||||
}
|
||||
else if (cueSheet.AccurateRip != AccurateRipMode.None)
|
||||
@@ -270,7 +270,7 @@ namespace JDP
|
||||
if (_reducePriority)
|
||||
Process.GetCurrentProcess().PriorityClass = System.Diagnostics.ProcessPriorityClass.Idle;
|
||||
|
||||
if (_accurateRip != AccurateRipMode.Verify)
|
||||
if (_accurateRip != AccurateRipMode.Verify && _accurateRip != AccurateRipMode.VerifyPlusCRCs)
|
||||
txtOutputFile.Show();
|
||||
|
||||
StartConvert();
|
||||
|
||||
Reference in New Issue
Block a user