From d45345d33879979d7d43b04ffbd80fa7411a0ae7 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 6 Aug 2024 14:18:08 -0400 Subject: [PATCH] Add comments around default options object --- CHANGELIST.md | 1 + MPF.Check/Program.cs | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGELIST.md b/CHANGELIST.md index 7fdf2563..4c1c0571 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -2,6 +2,7 @@ - Clean up some Check options, add IRD option - Add Check flags for protection scan extras +- Add comments around default options object ### 3.2.1 (2024-08-05) diff --git a/MPF.Check/Program.cs b/MPF.Check/Program.cs index 344203ad..e65fb748 100644 --- a/MPF.Check/Program.cs +++ b/MPF.Check/Program.cs @@ -20,8 +20,10 @@ namespace MPF.Check // Create a default options object var options = new Frontend.Options() { + // Internal Program InternalProgram = InternalProgram.NONE, + // Extra Dumping Options ScanForProtection = false, AddPlaceholders = true, PullAllInformation = false, @@ -32,11 +34,13 @@ namespace MPF.Check DeleteUnnecessaryFiles = false, CreateIRDAfterDumping = false, + // Protection Scanning Options ScanArchivesForProtection = true, ScanPackersForProtection = false, IncludeDebugProtectionInformation = false, HideDriveLetters = false, + // Redump Login Information RedumpUsername = null, RedumpPassword = null, };