mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Code cleanup; Reader classes renamed to Decoders, Writers to Encoders, every Decoder must have a corresponding Settings class now just like Encoders. UserDefinedEncoders renamed to CommandLineEncoders, etc.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace CUETools.Processor
|
||||
{
|
||||
@@ -39,7 +38,6 @@ namespace CUETools.Processor
|
||||
}
|
||||
}
|
||||
|
||||
internal static XmlSerializer serializer = new XmlSerializer(typeof(CUEConfigAdvanced));
|
||||
[DefaultValue("i"), Category("Freedb"), DisplayName("Email user")]
|
||||
public string FreedbUser { get; set; }
|
||||
|
||||
@@ -64,9 +62,9 @@ namespace CUETools.Processor
|
||||
[DefaultValue(true), Category("Tagging"), DisplayName("Cache metadata")]
|
||||
public bool CacheMetadata { get; set; }
|
||||
|
||||
[DefaultValue(new string[] { "folder.jpg", "cover.jpg", "albumart.jpg", "thumbnail.jpg", "albumartlarge.jpg", "front.jpg", "%album%.jpg" })]
|
||||
[DefaultValue("folder.jpg;cover.jpg;albumart.jpg;thumbnail.jpg;albumartlarge.jpg;front.jpg;%album%.jpg")]
|
||||
[Category("Cover Art"), DisplayName("Cover Art Files")]
|
||||
public string[] CoverArtFiles { get; set; }
|
||||
public string CoverArtFiles { get; set; }
|
||||
|
||||
[DefaultValue(true)]
|
||||
[Category("Cover Art"), DisplayName("Cover Art Extended Search")]
|
||||
|
||||
Reference in New Issue
Block a user