Add option to save podcasts to series folder

This commit is contained in:
Michael Bucari-Tovo 2022-06-12 19:36:18 -06:00
parent a3be3e354f
commit 7e989c730c
6 changed files with 1050 additions and 1012 deletions

View file

@ -275,6 +275,13 @@ namespace LibationFileManager
set => persistentDictionary.SetNonString(nameof(AutoDownloadEpisodes), value);
}
[Description("Save all podcast episodes in a series to the series parent folder?")]
public bool SavePodcastsToParentFolder
{
get => persistentDictionary.GetNonString<bool>(nameof(SavePodcastsToParentFolder));
set => persistentDictionary.SetNonString(nameof(SavePodcastsToParentFolder), value);
}
#region templates: custom file naming
[Description("How to format the folders in which files will be saved")]