diff --git a/CHANGELIST.md b/CHANGELIST.md index dbf11309..b465c85d 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -38,6 +38,7 @@ - Redumper state file is not accessed - Fix tests broken by last commit - Regex outputs should not name based on pattern +- Make log archive handling more user-apparent ### 3.5.0 (2025-10-10) diff --git a/MPF.Check/Features/BaseFeature.cs b/MPF.Check/Features/BaseFeature.cs index bf326709..aa8b1f4d 100644 --- a/MPF.Check/Features/BaseFeature.cs +++ b/MPF.Check/Features/BaseFeature.cs @@ -128,7 +128,7 @@ namespace MPF.Check.Features public static void DisplayHelp() { Console.WriteLine("Usage:"); - Console.WriteLine("MPF.Check [options] ..."); + Console.WriteLine("MPF.Check [options] ..."); Console.WriteLine(); Console.WriteLine("Standalone Options:"); Console.WriteLine("?, h, help Show this help text"); diff --git a/MPF.UI/Windows/CheckDumpWindow.xaml.cs b/MPF.UI/Windows/CheckDumpWindow.xaml.cs index 70d5f254..8b6a74a6 100644 --- a/MPF.UI/Windows/CheckDumpWindow.xaml.cs +++ b/MPF.UI/Windows/CheckDumpWindow.xaml.cs @@ -112,7 +112,7 @@ namespace MPF.UI.Windows WinForms.FileDialog fileDialog = new WinForms.OpenFileDialog { InitialDirectory = directory, - Filter = "Disc Images|*.iso;*.cue;*.aaruf;*.bca|All Files|*.*", + Filter = "Disc Images|*.iso;*.cue;*.aaruf;*.bca|Log Archives|*_logs.zip|All Files|*.*", }; WinForms.DialogResult result = fileDialog.ShowDialog();