From da5a514482d3624946d7ae5e7df300446bb5f319 Mon Sep 17 00:00:00 2001 From: Deterous <138427222+Deterous@users.noreply.github.com> Date: Fri, 12 Sep 2025 20:35:01 +0900 Subject: [PATCH] Update redumper to build 655 (#888) --- CHANGELIST.md | 1 + MPF.ExecutionContexts/Redumper/CommandStrings.cs | 1 + MPF.ExecutionContexts/Redumper/ExecutionContext.cs | 1 + publish-nix.sh | 12 ++++++------ publish-win.ps1 | 12 ++++++------ 5 files changed, 15 insertions(+), 12 deletions(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index 1e02d854..409cda92 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -22,6 +22,7 @@ - Update DIC to 20250901 (Windows/Linux only) - Fix UIC processing logic - Update RedumpLib, detect Playmaji Polymega system +- Update redumper to b655 ### 3.3.3 (2025-07-18) diff --git a/MPF.ExecutionContexts/Redumper/CommandStrings.cs b/MPF.ExecutionContexts/Redumper/CommandStrings.cs index 0eb52752..33bbb6c4 100644 --- a/MPF.ExecutionContexts/Redumper/CommandStrings.cs +++ b/MPF.ExecutionContexts/Redumper/CommandStrings.cs @@ -22,6 +22,7 @@ namespace MPF.ExecutionContexts.Redumper public const string Skeleton = "skeleton"; public const string FlashMT1339 = "flash::mt1339"; public const string FlashSD616 = "flash::sd616"; + public const string FlashPlextor = "flash::plextor"; public const string Subchannel = "subchannel"; public const string Debug = "debug"; public const string FixMSF = "fixmsf"; diff --git a/MPF.ExecutionContexts/Redumper/ExecutionContext.cs b/MPF.ExecutionContexts/Redumper/ExecutionContext.cs index 48203d9d..677e92b9 100644 --- a/MPF.ExecutionContexts/Redumper/ExecutionContext.cs +++ b/MPF.ExecutionContexts/Redumper/ExecutionContext.cs @@ -445,6 +445,7 @@ namespace MPF.ExecutionContexts.Redumper case CommandStrings.Skeleton: case CommandStrings.FlashMT1339: case CommandStrings.FlashSD616: + case CommandStrings.FlashPlextor: case CommandStrings.Subchannel: case CommandStrings.Debug: case CommandStrings.FixMSF: diff --git a/publish-nix.sh b/publish-nix.sh index df8ceda5..27502b42 100755 --- a/publish-nix.sh +++ b/publish-nix.sh @@ -99,13 +99,13 @@ function download_programs() { DL_MAP["Creator_win-x64"]="https://github.com/user-attachments/files/22080480/DiscImageCreator_20250901.zip" # Redumper - DL_MAP["Redumper_linux-arm64"]="https://github.com/superg/redumper/releases/download/b653/redumper-b653-linux-arm64.zip" - DL_MAP["Redumper_linux-x64"]="https://github.com/superg/redumper/releases/download/b653/redumper-b653-linux-x64.zip" - DL_MAP["Redumper_osx-arm64"]="https://github.com/superg/redumper/releases/download/b653/redumper-b653-macos-arm64.zip" + DL_MAP["Redumper_linux-arm64"]="https://github.com/superg/redumper/releases/download/b655/redumper-b655-linux-arm64.zip" + DL_MAP["Redumper_linux-x64"]="https://github.com/superg/redumper/releases/download/b655/redumper-b655-linux-x64.zip" + DL_MAP["Redumper_osx-arm64"]="https://github.com/superg/redumper/releases/download/b655/redumper-b655-macos-arm64.zip" DL_MAP["Redumper_osx-x64"]="" - DL_MAP["Redumper_win-arm64"]="https://github.com/superg/redumper/releases/download/b653/redumper-b653-windows-arm64.zip" - DL_MAP["Redumper_win-x86"]="https://github.com/superg/redumper/releases/download/b653/redumper-b653-windows-x86.zip" - DL_MAP["Redumper_win-x64"]="https://github.com/superg/redumper/releases/download/b653/redumper-b653-windows-x64.zip" + DL_MAP["Redumper_win-arm64"]="https://github.com/superg/redumper/releases/download/b655/redumper-b655-windows-arm64.zip" + DL_MAP["Redumper_win-x86"]="https://github.com/superg/redumper/releases/download/b655/redumper-b655-windows-x86.zip" + DL_MAP["Redumper_win-x64"]="https://github.com/superg/redumper/releases/download/b655/redumper-b655-windows-x64.zip" # Download and extract files echo "===== Downloading Required Programs =====" diff --git a/publish-win.ps1 b/publish-win.ps1 index 6c67cd6c..78e5d117 100644 --- a/publish-win.ps1 +++ b/publish-win.ps1 @@ -88,13 +88,13 @@ function Download-Programs { "Creator_win-x64" = "https://github.com/user-attachments/files/22080480/DiscImageCreator_20250901.zip" # Redumper - "Redumper_linux-arm64" = "https://github.com/superg/redumper/releases/download/b653/redumper-b653-linux-arm64.zip" - "Redumper_linux-x64" = "https://github.com/superg/redumper/releases/download/b653/redumper-b653-linux-x64.zip" - "Redumper_osx-arm64" = "https://github.com/superg/redumper/releases/download/b653/redumper-b653-macos-arm64.zip" + "Redumper_linux-arm64" = "https://github.com/superg/redumper/releases/download/b655/redumper-b655-linux-arm64.zip" + "Redumper_linux-x64" = "https://github.com/superg/redumper/releases/download/b655/redumper-b655-linux-x64.zip" + "Redumper_osx-arm64" = "https://github.com/superg/redumper/releases/download/b655/redumper-b655-macos-arm64.zip" "Redumper_osx-x64" = "" - "Redumper_win-arm64" = "https://github.com/superg/redumper/releases/download/b653/redumper-b653-windows-arm64.zip" - "Redumper_win-x86" = "https://github.com/superg/redumper/releases/download/b653/redumper-b653-windows-x86.zip" - "Redumper_win-x64" = "https://github.com/superg/redumper/releases/download/b653/redumper-b653-windows-x64.zip" + "Redumper_win-arm64" = "https://github.com/superg/redumper/releases/download/b655/redumper-b655-windows-arm64.zip" + "Redumper_win-x86" = "https://github.com/superg/redumper/releases/download/b655/redumper-b655-windows-x86.zip" + "Redumper_win-x64" = "https://github.com/superg/redumper/releases/download/b655/redumper-b655-windows-x64.zip" } # Download and extract files