diff --git a/CHANGELIST.md b/CHANGELIST.md index e0c31e2e..c520276c 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -39,6 +39,7 @@ - Make inner and outer layers in UI and outputs more clear - Program output to log by default, setting otherwise - DVDs and BDs can have label-side data +- Remove .NET Framework 4.7.2 support ### 1.18 (2020-11-10) - Add more information extraction and generation for Aaru diff --git a/MPF.Check/MPF.Check.csproj b/MPF.Check/MPF.Check.csproj index a7718bfb..ebba198d 100644 --- a/MPF.Check/MPF.Check.csproj +++ b/MPF.Check/MPF.Check.csproj @@ -1,14 +1,14 @@  - net472;net48;netcoreapp3.1 + net48;netcoreapp3.1 Exe true MPF Check MPF.Check Validator for various dumping programs Matt Nadareski;ReignStumble;Jakz - Copyright (c)2019-2020 + Copyright (c)2019-2021 https://github.com/SabreTools/MPF 1.18 1.18 diff --git a/MPF.Library/MPF.Library.csproj b/MPF.Library/MPF.Library.csproj index ac93b818..b70fa54b 100644 --- a/MPF.Library/MPF.Library.csproj +++ b/MPF.Library/MPF.Library.csproj @@ -1,12 +1,12 @@  - net472;net48;netcoreapp3.1 + net48;netcoreapp3.1 MPF Library MPF.Library Library code for MPF and MPF.Check Matt Nadareski;ReignStumble;Jakz - Copyright (c)2019-2020 + Copyright (c)2019-2021 https://github.com/SabreTools/MPF 1.18 1.18 diff --git a/MPF.Test/MPF.Test.csproj b/MPF.Test/MPF.Test.csproj index e78afc08..a46dff41 100644 --- a/MPF.Test/MPF.Test.csproj +++ b/MPF.Test/MPF.Test.csproj @@ -1,7 +1,7 @@  - net472;net48;netcoreapp3.1 + net48;netcoreapp3.1 false diff --git a/MPF/MPF.csproj b/MPF/MPF.csproj index f71ccfe0..b9412fb0 100644 --- a/MPF/MPF.csproj +++ b/MPF/MPF.csproj @@ -1,7 +1,7 @@  - net472;net48;netcoreapp3.1 + net48;netcoreapp3.1 WinExe true true @@ -11,7 +11,7 @@ MPF Frontend for various dumping programs Matt Nadareski;ReignStumble;Jakz - Copyright (c)2019-2020 + Copyright (c)2019-2021 https://github.com/SabreTools/MPF 1.18 1.18 diff --git a/README.md b/README.md index 505b241a..bf6d275b 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ For those who like to test the newest features, download the latest AppVeyor WIP Even though this is written in C#, this program can only be used on Windows systems due to one of the base programs, DiscImageCreator, being Windows-only. There is some preliminary support for Linux underway, and we will try to integrate with that when the time comes. - Windows 7 (newest version of Windows recommended) or Mono-compatible Linux environment (MPF.Check only) -- .NET Framework 4.7.2, .NET Framework 4.8, or .NET Core 3.1 Runtimes (.NET Core 3.1 is mostly functional due to a dependency issues but may be unstable in some situations) +- .NET Framework 4.8 or .NET Core 3.1 Runtimes (.NET Core 3.1 is mostly functional due to a dependency issues but may be unstable in some situations) - 1 GB of free RAM - As much hard drive space as the amount of discs you will be dumping (20+ GB recommended) diff --git a/appveyor.yml b/appveyor.yml index ac3c0538..4d8a1dc0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -40,21 +40,15 @@ after_build: - ps: appveyor DownloadFile https://github.com/saramibreak/DiscImageCreator/files/6062407/DiscImageCreator_20210301.zip - ps: appveyor DownloadFile https://archive.org/download/subdump_fua_0x28/subdump_fua_0x28.zip -- 7z e aaru-5.2.0.3330-1_windows_x64.zip -oMPF\bin\Debug\net472\Programs\Aaru * - 7z e aaru-5.2.0.3330-1_windows_x64.zip -oMPF\bin\Debug\net48\Programs\Aaru * - 7z e aaru-5.2.0.3330-1_windows_x64.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Aaru * -- 7z e dd-0.6beta3.zip -oMPF\bin\Debug\net472\Programs\DD * - 7z e dd-0.6beta3.zip -oMPF\bin\Debug\net48\Programs\DD * - 7z e dd-0.6beta3.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\DD * -- 7z e DiscImageCreator_20210301.zip -oMPF\bin\Debug\net472\Programs\Creator Release_ANSI\* - 7z e DiscImageCreator_20210301.zip -oMPF\bin\Debug\net48\Programs\Creator Release_ANSI\* - 7z e DiscImageCreator_20210301.zip -oMPF\bin\Debug\netcoreapp3.1\Programs\Creator Release_ANSI\* -- 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\net472 * -- mkdir MPF\bin\Debug\net472\Programs\Subdump -- mv MPF\bin\Debug\net472\subdump_fua_0x28.exe MPF\bin\Debug\net472\Programs\Subdump\subdump.exe - 7z e subdump_fua_0x28.zip -oMPF\bin\Debug\net48 * - mkdir MPF\bin\Debug\net48\Programs\Subdump - mv MPF\bin\Debug\net48\subdump_fua_0x28.exe MPF\bin\Debug\net48\Programs\Subdump\subdump.exe @@ -63,26 +57,20 @@ after_build: - mv MPF\bin\Debug\netcoreapp3.1\subdump_fua_0x28.exe MPF\bin\Debug\netcoreapp3.1\Programs\Subdump\subdump.exe - cd MPF\bin\Debug -- 7z a MPF_net472.zip net472\* - 7z a MPF_net48.zip net48\* - 7z a MPF_netcoreapp3.1.zip netcoreapp3.1\* - cd ..\..\..\MPF.Check\bin\Debug -- 7z a MPF-Check_net472.zip net472\* - 7z a MPF-Check_net48.zip net48\* - 7z a MPF-Check_netcoreapp3.1.zip netcoreapp3.1\* # artifact linking artifacts: -- path: MPF\bin\Debug\MPF_net472.zip - name: MPF (WPF UI) (.NET Framework 4.7.2) - path: MPF\bin\Debug\MPF_net48.zip name: MPF (WPF UI) (.NET Framework 4.8) - path: MPF\bin\Debug\MPF_netcoreapp3.1.zip name: MPF (WPF UI) (.NET Core 3.1) -- path: MPF.Check\bin\Debug\MPF-Check_net472.zip - name: MPF Check (.NET Framework 4.7.2) - path: MPF.Check\bin\Debug\MPF-Check_net48.zip name: MPF Check (.NET Framework 4.8) - path: MPF.Check\bin\Debug\MPF-Check_netcoreapp3.1.zip