Commit edits before refresh

This commit is contained in:
Michael Bucari-Tovo 2023-01-09 18:21:59 -07:00
parent 708cdcc24c
commit 2e49c7f697
12 changed files with 34 additions and 10 deletions

View file

@ -84,7 +84,12 @@ namespace LibationFileManager
// temp/working dir(s) should be outside of dropbox
[Description("Temporary location of files while they're in process of being downloaded and decrypted.\r\nWhen decryption is complete, the final file will be in Books location\r\nRecommend not using a folder which is backed up real time. Eg: Dropbox, iCloud, Google Drive")]
public string InProgress { get => GetString(defaultValue: WinTemp); set => SetString(value); }
public string InProgress { get
{
var tempDir = GetString();
return string.IsNullOrWhiteSpace(tempDir) ? WinTemp : tempDir;
}
set => SetString(value); }
[Description("Allow Libation to fix up audiobook metadata")]
public bool AllowLibationFixup { get => GetNonString(defaultValue: true); set => SetNonString(value); }