mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
EAC CTDB plugin update for new EAC version
This commit is contained in:
@@ -62,10 +62,14 @@ namespace MetadataPlugIn
|
||||
extra += "Info URL: " + meta.infourl + "\r\n";
|
||||
if (!string.IsNullOrEmpty(meta.barcode))
|
||||
extra += "Barcode: " + meta.barcode + "\r\n";
|
||||
if (!string.IsNullOrEmpty(meta.releasedate))
|
||||
extra += "Release date: " + meta.releasedate + "\r\n";
|
||||
if (!string.IsNullOrEmpty(meta.country))
|
||||
extra += "Release country: " + meta.country + "\r\n";
|
||||
if (meta.release != null)
|
||||
foreach (var release in meta.release)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(release.date))
|
||||
extra += "Release date: " + release.date + "\r\n";
|
||||
if (!string.IsNullOrEmpty(release.country))
|
||||
extra += "Release country: " + release.country + "\r\n";
|
||||
}
|
||||
if (meta.label != null)
|
||||
foreach (var label in meta.label)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user