Add guided walkthrough

This commit is contained in:
Mbucari 2023-03-27 16:11:30 -06:00
parent cdf1a01457
commit 702219ee69
9 changed files with 302 additions and 14 deletions

View file

@ -191,6 +191,9 @@ namespace LibationFileManager
Ignore = 3
}
[Description("Indicates that this is the first time Libation has been run")]
public bool FirstLaunch { get => GetNonString(defaultValue: true); set => SetNonString(value); }
[Description("When liberating books and there is an error, Libation should:")]
public BadBookAction BadBook { get => GetNonString(defaultValue: BadBookAction.Ask); set => SetNonString(value); }