Add filename suffix setting (nw)

This commit is contained in:
Matt Nadareski
2023-10-18 22:04:15 -04:00
parent f87a4d9fe2
commit 7dcdadda75
2 changed files with 10 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
- Add optional file deletion
- Rearrange OptionsWindow to be easier to navigate
- Fix up DumpEnvironment a bit
- Add filename suffix setting (nw)
### 2.7.2 (2023-10-17)

View File

@@ -475,6 +475,15 @@ namespace MPF.Core.Data
set { Settings["ToolsInSeparateWindow"] = value.ToString(); }
}
/// <summary>
/// Add the dump filename as a suffix to the auto-generated files
/// </summary>
public bool AddFilenameSuffix
{
get { return GetBooleanSetting(Settings, "AddFilenameSuffix", false); }
set { Settings["AddFilenameSuffix"] = value.ToString(); }
}
/// <summary>
/// Output the compressed JSON version of the submission info
/// </summary>