Files
MPF/README.md

139 lines
8.5 KiB
Markdown
Raw Permalink Normal View History

2020-11-10 17:43:21 -08:00
# Media Preservation Frontend (MPF)
2018-05-12 20:11:23 -04:00
2023-09-02 15:24:03 -04:00
Redumper/Aaru/DiscImageCreator UI in C#
2018-05-14 12:08:51 -04:00
[![Build and Test](https://github.com/SabreTools/MPF/actions/workflows/build_and_test.yml/badge.svg)](https://github.com/SabreTools/MPF/actions/workflows/build_and_test.yml)
This is a community project, so if you have some time and knowledge to give, we'll be glad to add you as a contributor to this project. If you have any suggestions, issues, bugs, or crashes, please look at the [Issues](https://github.com/SabreTools/MPF/issues) page first to see if it has been reported before and try out the latest WIP build below to see if it has already been addressed. If it hasn't, please open an issue that's as descriptive as you can be. Help me make this a better program for everyone :)
2020-08-14 11:06:57 -07:00
## Releases
2023-11-07 11:13:12 -05:00
For the most recent stable build, download the latest release here: [Releases Page](https://github.com/SabreTools/MPF/releases)
2020-08-14 11:06:57 -07:00
2024-02-23 21:18:46 -05:00
For the latest WIP build here: [Rolling Release](https://github.com/SabreTools/MPF/releases/tag/rolling)
2018-05-14 12:08:51 -04:00
2024-06-24 10:46:40 -04:00
## Media Preservation Frontend UI (MPF.UI)
2018-06-25 10:18:06 -07:00
MPF is the main, UI-centric application of the MPF suite. This program allows users to use Redumper, Aaru, or DiscImageCreator in a more user-friendly way. Each backend dumping program is supported as fully as possible to ensure that all information is captured on output. There are many customization options and quality of life settings that can be access through the Options menu.
2018-06-25 10:18:06 -07:00
Configuration files are stored by default next to the application as `config.json`. This contains all settings for the UI including credentials. In addition to this, the configuration can also be located at `%userprofile%\.config\mpf\config.json` on Windows or `~/.config/mpf/config.json` on Unix-like systems. The second path will be used by default if running from a read-only device or folder. If neither directory is readable, no options will be loaded or saved.
2024-06-24 10:46:40 -04:00
### UI Support Limitations
2023-07-24 13:45:31 -04:00
The main UI has some known limitations that are documented in code and in some prior support tickets:
2023-07-24 13:45:31 -04:00
- Windows-only due to reliance on WPF and Winforms
2023-11-07 00:18:54 -05:00
- MAUI is not a viable alternative due to lack of out-of-box support for Linux
- Avalonia is being heavily considered as an alternative
2023-11-06 23:13:08 -05:00
- For those who need .NET Framework 4.8, there is an official fork: [MPF Legacy](https://github.com/Deterous/MPF-Legacy)
2025-10-21 08:30:53 -04:00
- Some archive types may not be supported for protection scanning, see [Compatibility Notes](https://github.com/SabreTools/BinaryObjectScanner?tab=readme-ov-file#compatibility-notes) for more details
2023-07-24 13:45:31 -04:00
2024-06-24 10:46:40 -04:00
## Media Preservation Frontend CLI (MPF.CLI)
MPF.CLI is a commandline-only program that allows users to use Redumper, Aaru, or DiscImageCreator in a more user-friendly way. Each backend dumping program is supported as fully as possible to ensure that all information is captured on output. All options are manually configured through the configuration file. See below for details.
Configuration files are stored by default next to the application as `config.json`. This contains all settings for the UI including credentials. In addition to this, the configuration can also be located at `%userprofile%\.config\mpf\config.json` on Windows or `~/.config/mpf/config.json` on Unix-like systems. The second path will be used by default if running from a read-only device or folder. If neither directory is readable, no options will be loaded or saved.
2024-06-24 10:46:40 -04:00
### CLI Support Limitations
The main CLI has some known limitations that are documented in code and in some prior support tickets:
2025-10-21 08:30:53 -04:00
- Some archive types may not be supported for protection scanning, see [Compatibility Notes](https://github.com/SabreTools/BinaryObjectScanner?tab=readme-ov-file#compatibility-notes) for more details
2024-06-24 10:46:40 -04:00
2023-03-13 13:25:32 -04:00
## Media Preservation Frontend Checker (MPF.Check)
2023-09-27 15:50:30 -04:00
MPF.Check is a commandline-only program that allows users to generate submission information from their personal rips. This program supports the outputs from Redumper, Aaru, DiscImageCreator, Cleanrip, and UmdImageCreator. Running this program without any parameters will display the help text, including all supported parameters.
2023-03-13 13:25:32 -04:00
2023-11-07 00:18:54 -05:00
## System Requirements
2024-06-24 10:46:40 -04:00
MPF.UI, MPF.CLI, and MPF.Check have the same system requirements for running, with the exception that MPF.UI is Windows-only.
2023-03-13 13:25:32 -04:00
2025-11-25 09:14:46 -05:00
- [Supported OS versions for .NET 10](https://github.com/dotnet/core/blob/main/release-notes/10.0/supported-os.md)
- Requires [.NET 10.0 Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/10.0) if built without bundled runtime
2023-11-07 00:18:54 -05:00
Ensure that your operating system and runtimes are as up-to-date as possible, since some features may rely on those updates.
## Build Instructions
2023-03-13 13:25:32 -04:00
2025-11-25 09:14:46 -05:00
To build for .NET 10.0, ensure that the [.NET 10.0 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/10.0) (or later) is installed and included in your `PATH`. Then, run the following commands from command prompt, Powershell, Terminal, or shell:
2023-07-23 23:48:04 -04:00
2024-06-24 10:46:40 -04:00
**MPF.UI (Windows only):**
2023-07-23 23:48:04 -04:00
2023-11-07 00:18:54 -05:00
```bash
2025-11-25 09:14:46 -05:00
dotnet build MPF.UI/MPF.UI.csproj --framework net10.0-windows --runtime [win-x86|win-x64]
2023-07-23 23:48:04 -04:00
```
2023-11-07 00:18:54 -05:00
2024-06-24 10:46:40 -04:00
**MPF.CLI (Windows, OSX, Linux):**
```bash
2025-11-25 09:14:46 -05:00
dotnet build MPF.CLI/MPF.CLI.csproj --framework net10.0 --runtime [win-x86|win-x64|win-arm64|linux-x64|linux-arm64|osx-x64|osx-arm64]
2024-06-24 10:46:40 -04:00
```
2023-11-07 00:18:54 -05:00
**MPF.Check (Windows, OSX, Linux):**
```bash
2025-11-25 09:14:46 -05:00
dotnet build MPF.Check/MPF.Check.csproj --framework net10.0 --runtime [win-x86|win-x64|win-arm64|linux-x64|linux-arm64|osx-x64|osx-arm64]
2023-07-23 23:48:04 -04:00
```
2024-06-20 14:40:42 -04:00
Choose one of `win-x86`, `win-x64`, `win-arm64`, `linux-x64`, `linux-arm64`, `osx-x64`, or `osx-arm64` depending on the machine you are targeting.
2023-11-07 00:18:54 -05:00
2023-11-07 00:22:54 -05:00
### Build Scripts
2024-06-24 10:46:40 -04:00
Windows users may run `publish-win.ps1` and Linux users may run `publish-nix.sh` to perform a full release build. Both scripts will build and package all variants of MPF.UI, MPF.CLI, and MPF.Check with commandline switches to control what is included.
2023-11-07 00:22:54 -05:00
- `publish-win.ps1` requires [7-zip commandline](https://www.7-zip.org/download.html) and [Git for Windows](https://git-scm.com/downloads) to be installed and in `PATH`.
- `publish-nix.sh` requires `zip` and `git` to be installed and in `PATH`. Optionally, if `wget` is installed and in `PATH`, you can enable pulling dumping programs on publish.
2023-07-23 23:48:04 -04:00
2020-09-08 23:30:02 -07:00
## Information
2020-08-04 13:53:33 -07:00
2020-11-10 20:42:04 -08:00
For all additional information, including information about the individual components included in the project and what dumping programs are supported, please see [the wiki](https://github.com/SabreTools/MPF/wiki) for more details.
2020-08-04 13:53:33 -07:00
## Changelist
2018-06-13 12:26:57 -07:00
2020-11-10 17:43:21 -08:00
A list of all changes in each stable release and current WIP builds can now be found [here](https://github.com/SabreTools/MPF/blob/master/CHANGELIST.md).
2020-07-28 14:10:29 -07:00
## External Libraries
2020-11-10 17:43:21 -08:00
MPF uses some external libraries to assist with additional information gathering after the dumping process.
2020-07-28 14:10:29 -07:00
2024-05-06 21:51:14 -04:00
- **Binary Object Scanner** - Protection scanning - [GitHub](https://github.com/SabreTools/BinaryObjectScanner)
2022-04-18 22:59:07 -07:00
- **WPFCustomMessageBox.thabse** - Custom message boxes in UI - [GitHub](https://github.com/thabse/WPFCustomMessageBox)
2018-06-08 17:20:33 -04:00
## Contributors
2018-06-08 17:20:33 -04:00
2023-09-02 15:24:03 -04:00
Here are the talented people who have contributed to the project so far in ways that GitHub doesn't like to track:
2018-06-08 17:20:33 -04:00
- **ReignStumble** - Former Project Lead / UI Design
- **Shadów** - UI Support
2018-05-18 22:39:05 -04:00
2023-09-02 15:24:03 -04:00
For all others who have contributed in some way, please see [here](https://github.com/SabreTools/MPF/graphs/contributors).
## Notable Testers
2018-05-18 22:39:05 -04:00
2020-11-10 17:43:21 -08:00
These are the tireless individuals who have dedicated countless hours to help test the many features of MPF and have worked with the development team closely:
2018-05-14 13:49:26 -04:00
2023-09-02 15:24:03 -04:00
- [**ajshell1**](https://github.com/ajshell1)
- [**Billy**](https://github.com/InternalLoss)
- [**David 'Foxhack' Silva**](https://github.com/FoxhackDN)
- [**ehw**](https://github.com/ehw)
- [**fuzzball**](https://github.com/fuzz6001)
- [**Gameboi64**](https://github.com/gameboi64)
- [**Intothisworld**](https://github.com/Intothisworld)
- [**John Veness**](https://github.com/JohnVeness)
2021-02-28 13:19:55 -08:00
- **Kludge**
2023-09-02 15:24:03 -04:00
- [**Matt Sephton**](https://github.com/gingerbeardman)
- [**NightsoN Blaze**](https://github.com/nightson)
- [**NovaSAurora**](https://github.com/NovaSAurora)
- [**Seventy7**](https://github.com/7Seventy7) - Additonal thanks for the original concept
- [**Silent**](https://github.com/CookiePLMonster)
- [**Terry Janas**](https://github.com/tjanas)
- [**TheRogueArchivist**](https://github.com/TheRogueArchivist)
- [**Whovian9369**](https://github.com/Whovian9369)
2021-02-28 13:19:55 -08:00
## Community Shout-Outs
2021-04-09 13:52:03 -07:00
Thanks to these communities for their use, testing, and feedback. I can't even hope to be able to thank everyone individually.
2021-02-28 13:19:55 -08:00
2023-09-02 15:24:03 -04:00
- [**VGPC Discord**](https://discord.gg/AHTfxQV) - Fast feedback and a lot of testing
- [**Redump Community**](http://redump.org/) - Near-daily use to assist with metadata gathering