mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-25 23:00:21 +01:00
2015-04-07 Fred Gleason <fredg@paravelsystems.com>
* Added a 'RDLIBRARY.READ_ISRC' field to the database. * Incremented the database version to 245. * Added 'RDLibraryConf::readIsrc()' and 'RDLibraryConf::setReadIsrc()' methods in 'lib/rdlibrary_conf.cpp' and 'lib/rdlibrary_conf.h'. * Added a 'Read ISRCs from CD' control to the 'Edit RDLibrary' dialog in 'rdadmin/edit_rdlibrary.cpp' and 'rdadmin/edi_rdlibrary.h'. * Implemented the 'Read ISRCs from CD' option in the full disc ripper in 'rdlibrary/disk_ripper.cpp'. * Implemented the 'Read ISRCs from CD' option in the per-track disc ripper in 'rdlibrary/cdripper.cpp'.
This commit is contained in:
@@ -461,7 +461,9 @@ void CdRipper::ripTrackButtonData()
|
||||
// Read ISRCs
|
||||
//
|
||||
if(!rip_isrc_read) {
|
||||
rip_cddb_lookup->readIsrc(rip_cdda_dir.path(),rip_conf->ripperDevice());
|
||||
if(rdlibrary_conf->readIsrc()) {
|
||||
rip_cddb_lookup->readIsrc(rip_cdda_dir.path(),rip_conf->ripperDevice());
|
||||
}
|
||||
rip_isrc_read=true;
|
||||
}
|
||||
|
||||
|
||||
@@ -433,8 +433,10 @@ void DiskRipper::ripDiskButtonData()
|
||||
// Read ISRCs
|
||||
//
|
||||
if(!rip_isrc_read) {
|
||||
rip_cddb_lookup->
|
||||
readIsrc(rip_cdda_dir.path(),rdlibrary_conf->ripperDevice());
|
||||
if(rdlibrary_conf->readIsrc()) {
|
||||
rip_cddb_lookup->
|
||||
readIsrc(rip_cdda_dir.path(),rdlibrary_conf->ripperDevice());
|
||||
}
|
||||
rip_isrc_read=true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user