Added user option to download chapter titles from Audible.
This commit is contained in:
parent
b5389c67ea
commit
b65f9567e0
6 changed files with 346 additions and 274 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue