diff --git a/CHANGELIST.md b/CHANGELIST.md index d2bd7cab..786e7157 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -13,6 +13,7 @@ - Update Redumper to build 244 - Enable Bluray dumping with Redumper - Add Bluray layerbreak support for Redumper +- Remove now-obsolete notes ### 2.7.3 (2023-10-26) diff --git a/MPF.Core/Data/Drive.cs b/MPF.Core/Data/Drive.cs index 0eee3ea7..dd6c928c 100644 --- a/MPF.Core/Data/Drive.cs +++ b/MPF.Core/Data/Drive.cs @@ -13,7 +13,6 @@ namespace MPF.Core.Data /// Represents information for a single drive /// /// - /// TODO: This needs to be less Windows-centric. Devices do not always have a single letter that can be used. /// TODO: Can the Aaru models be used instead of the ones I've created here? /// public class Drive @@ -286,7 +285,6 @@ namespace MPF.Core.Data return defaultValue; // We're going to assume for floppies, HDDs, and removable drives - // TODO: Try to be smarter about this if (this.InternalDriveType != Data.InternalDriveType.Optical) return RedumpSystem.IBMPCcompatible; diff --git a/MPF.Core/Modules/Redumper/Parameters.cs b/MPF.Core/Modules/Redumper/Parameters.cs index f4e6adc9..07d5a50b 100644 --- a/MPF.Core/Modules/Redumper/Parameters.cs +++ b/MPF.Core/Modules/Redumper/Parameters.cs @@ -15,14 +15,6 @@ namespace MPF.Core.Modules.Redumper /// /// Represents a generic set of Redumper parameters /// - /// - /// TODO: Redumper natively supports multiple, chained commands but MPF - /// doesn't have an easy way of dealing with that right now. Maybe have - /// BaseCommand be a space-deliminated list of the commands? - /// TODO: With chained commands, how do we tell what parameters are - /// actually supported? Do we go one by one and if it doesn't match - /// any, then it's incorrect? - /// public class Parameters : BaseParameters { #region Generic Dumping Information