mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
* support for new metadata sources via CTDB
* CUETools: GUI tweaks for large screen resolutions on windows 7 * CUETools.Codecs.LAMEEncoder: fix VBR header update for filenames with unicode characters * CUERipper: more string messages for SCSI errors when ripping
This commit is contained in:
@@ -888,7 +888,7 @@ namespace JDP {
|
||||
if (useLocalDB)
|
||||
cueSheet.UseLocalDB(_localDB);
|
||||
if (useCUEToolsDB)
|
||||
cueSheet.UseCUEToolsDB("CUETools " + CUESheet.CUEToolsVersion, null, true, CTDBPriority.None, CTDBPriority.None, CTDBPriority.None);
|
||||
cueSheet.UseCUEToolsDB("CUETools " + CUESheet.CUEToolsVersion, null, true, CTDBMetadataSearch.None);
|
||||
if (useAR)
|
||||
cueSheet.UseAccurateRip();
|
||||
|
||||
@@ -924,9 +924,7 @@ namespace JDP {
|
||||
dlg.LookupAlbumInfo(_profile._config.advanced.CacheMetadata,
|
||||
true,
|
||||
true,
|
||||
checkBoxUseMusicBrainz.Checked ? CTDBPriority.High : CTDBPriority.None,
|
||||
checkBoxUseFreeDb.Checked ? CTDBPriority.Medium : CTDBPriority.None,
|
||||
checkBoxUseFreeDb.Checked ? CTDBPriority.Low : CTDBPriority.None);
|
||||
CTDBMetadataSearch.Default);
|
||||
dlgRes = dlg.ShowDialog(this);
|
||||
_choiceMaxed = dlg.WindowState == FormWindowState.Maximized;
|
||||
if (!_choiceMaxed)
|
||||
@@ -2183,7 +2181,7 @@ namespace JDP {
|
||||
if (_choiceMaxed)
|
||||
dlg.WindowState = FormWindowState.Maximized;
|
||||
dlg.CUE = CueSheet;
|
||||
dlg.LookupAlbumInfo(true, node is FileSystemTreeNodeLocalDBEntry, true, CTDBPriority.High, CTDBPriority.Medium, CTDBPriority.Low);
|
||||
dlg.LookupAlbumInfo(true, node is FileSystemTreeNodeLocalDBEntry, true, CTDBMetadataSearch.Default);
|
||||
var dlgRes = dlg.ShowDialog(this);
|
||||
_choiceMaxed = dlg.WindowState == FormWindowState.Maximized;
|
||||
if (!_choiceMaxed)
|
||||
|
||||
Reference in New Issue
Block a user