Added beta opt-in setting

This commit is contained in:
Michael Bucari-Tovo 2022-07-16 23:57:12 -06:00
parent ad6b86fcb4
commit 8bb17d09c3
7 changed files with 100 additions and 29 deletions

View file

@ -74,6 +74,13 @@ namespace LibationFileManager
public bool Exists(string propertyName) => persistentDictionary.Exists(propertyName);
[Description("Use the beta version of Libation\r\nNew and experimental features, but probably buggy.\r\n(requires restart to take effect)")]
public bool BetaOptIn
{
get => persistentDictionary.GetNonString<bool>(nameof(BetaOptIn));
set => persistentDictionary.SetNonString(nameof(BetaOptIn), value);
}
[Description("Location for book storage. Includes destination of newly liberated books")]
public string Books
{