2022-10-22 Fred Gleason <fredg@paravelsystems.com>

* Added an 'icedax' dependency to the 'rivendell' DEB package.
	* Documented the 'icedax' dependency in 'INSTALL'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-10-22 13:01:26 -04:00
parent 821a0c9055
commit 4d8d01509c
4 changed files with 18 additions and 4 deletions

View File

@@ -476,9 +476,16 @@ bool RDDiscLookup::ReadCdText(const QString &cdda_dev)
return false;
}
if((exit_code=proc->exitCode())!=0) {
QMessageBox::warning(this,lookup_caption+" - "+tr("Ripper Error"),
tr("CD-Text reader process returned an error!")+"\n"+
"["+output+"]");
if(output.isEmpty()) {
QMessageBox::warning(this,lookup_caption+" - "+tr("Ripper Error"),
tr("CD-Text reader process failed.")+"\n"+
"["+tr("Call to \"/usr/bin/cdda2wav\" failed")+"]");
}
else {
QMessageBox::warning(this,lookup_caption+" - "+tr("Ripper Error"),
tr("CD-Text reader process returned an error!")+"\n"+
"["+output+"]");
}
delete proc;
return false;
}