diff --git a/CHANGELIST.md b/CHANGELIST.md index 1017d8ea..99e7fd11 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -10,6 +10,7 @@ - Update DIC to 20260101 - Update Redumper to build 683 - Add editorconfig, fix issues +- Add MPRESS to packer filters ### 3.6.0 (2025-11-28) diff --git a/MPF.Frontend.Test/Tools/ProtectionToolTests.cs b/MPF.Frontend.Test/Tools/ProtectionToolTests.cs index 2cb142d5..6d4cc115 100644 --- a/MPF.Frontend.Test/Tools/ProtectionToolTests.cs +++ b/MPF.Frontend.Test/Tools/ProtectionToolTests.cs @@ -363,6 +363,19 @@ namespace MPF.Frontend.Test.Tools Assert.Empty(sanitized); } + [Fact] + public void SanitizeFoundProtections_MPRESS() + { + List protections = + [ + "MPRESS", + "MPRESS ANYTHING", + ]; + + string sanitized = ProtectionTool.SanitizeFoundProtections(protections); + Assert.Empty(sanitized); + } + [Fact] public void SanitizeFoundProtections_NeoLite() { diff --git a/MPF.Frontend/Tools/ProtectionTool.cs b/MPF.Frontend/Tools/ProtectionTool.cs index 5341e8c0..6119e4d8 100644 --- a/MPF.Frontend/Tools/ProtectionTool.cs +++ b/MPF.Frontend/Tools/ProtectionTool.cs @@ -43,6 +43,7 @@ namespace MPF.Frontend.Tools "Installer VISE", "Intel Installation Framework", "Microsoft CAB SFX", + "MPRESS", "NeoLite", "NSIS", "PE Compact",