New: Write metadata to tags, with UI for previewing changes (#633)

This commit is contained in:
ta264 2019-03-15 12:10:45 +00:00 committed by GitHub
parent 6548f4b1b7
commit 072f772dc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
82 changed files with 2938 additions and 358 deletions

View file

@ -265,6 +265,20 @@ namespace NzbDrone.Core.Configuration
set { SetValue("MetadataSource", value); }
}
public WriteAudioTagsType WriteAudioTags
{
get { return GetValueEnum("WriteAudioTags", WriteAudioTagsType.No); }
set { SetValue("WriteAudioTags", value); }
}
public bool ScrubAudioTags
{
get { return GetValueBoolean("ScrubAudioTags", false); }
set { SetValue("ScrubAudioTags", value); }
}
public int FirstDayOfWeek
{
get { return GetValueInt("FirstDayOfWeek", (int)CultureInfo.CurrentCulture.DateTimeFormat.FirstDayOfWeek); }