Added user option to download chapter titles from Audible.

This commit is contained in:
Michael Bucari-Tovo 2021-06-28 12:55:56 -06:00
parent b5389c67ea
commit b65f9567e0
6 changed files with 346 additions and 274 deletions

View file

@ -82,7 +82,13 @@ namespace FileManager
get => persistentDictionary.GetString(nameof(DecryptInProgressEnum));
set => persistentDictionary.Set(nameof(DecryptInProgressEnum), value);
}
[Description("Download chapter titles from Audible?")]
public bool DownloadChapters
{
get => persistentDictionary.Get<bool>(nameof(DownloadChapters));
set => persistentDictionary.Set(nameof(DownloadChapters), value);
}
// note: any potential file manager static ctors can't compensate if storage dir is changed at run time via settings. this is partly bad architecture. but the side effect is desirable. if changing LibationFiles location: restart app
// singleton stuff