diff --git a/CHANGELIST.md b/CHANGELIST.md index 04f93c27..3e048c61 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -1,3 +1,16 @@ +### 1.17 (2020-09-12) +- Updated to Aaru version 5.1 +- Updated to BurnOutSharp version 1.4.0 +- Updated to DIC version 20200716 +- Added experimental Avalonia UI +- Created wiki +- Removed .NET 4.6.2 and .NET Core 3.0 builds +- Added .NET 4.8 and .NET Core 3.1 builds +- Fix numerous things related to PS1/PS2 +- Make subdump running optional +- Overhaul DICUI.Check with more options +- Numerous small bug- and regression-fixes + ### 1.16.1 (2020-05-07) - Add preliminary support for DD for Windows (end to end still NW) diff --git a/DICUI.Avalonia/DICUI.Avalonia.csproj b/DICUI.Avalonia/DICUI.Avalonia.csproj index df81ad72..5632b9c3 100644 --- a/DICUI.Avalonia/DICUI.Avalonia.csproj +++ b/DICUI.Avalonia/DICUI.Avalonia.csproj @@ -1,11 +1,23 @@  + - WinExe net472;net48;netcoreapp3.1 + WinExe Icon.ico - 1.16.1 - Copyright © 2020 + true + DICUI + DICUI.Avalonia + Frontend for various dumping programs + Matt Nadareski;ReignStumble;Jakz + Copyright (c)2019-2020 + https://github.com/SabreTools/DICUI + 1.17.0 + 1.17.0 + 1.17.0 + true + true + @@ -13,9 +25,11 @@ + + DiscInformationWindow.axaml @@ -30,6 +44,7 @@ OptionsWindow.axaml + diff --git a/DICUI.Check/DICUI.Check.csproj b/DICUI.Check/DICUI.Check.csproj index 44f6565d..86e50a3e 100644 --- a/DICUI.Check/DICUI.Check.csproj +++ b/DICUI.Check/DICUI.Check.csproj @@ -2,9 +2,19 @@ net472;net48;netcoreapp3.1 - false Exe true + DICUI Check + DICUI.Check + Validator for various dumping programs + Matt Nadareski;ReignStumble;Jakz + Copyright (c)2019-2020 + https://github.com/SabreTools/DICUI + 1.17.0 + 1.17.0 + 1.17.0 + true + true diff --git a/DICUI.Check/Properties/AssemblyInfo.cs b/DICUI.Check/Properties/AssemblyInfo.cs deleted file mode 100644 index 5ab98e5c..00000000 --- a/DICUI.Check/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("DICUI.Check")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DICUI.Check")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("8cfde289-e171-4d49-a40d-5293265c1253")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.16.1")] -[assembly: AssemblyFileVersion("1.16.1.0")] diff --git a/DICUI.Check/launchSettings.json b/DICUI.Check/launchSettings.json new file mode 100644 index 00000000..aea1803c --- /dev/null +++ b/DICUI.Check/launchSettings.json @@ -0,0 +1,7 @@ +{ + "profiles": { + "DICUI.Check": { + "commandName": "Project" + } + } +} \ No newline at end of file diff --git a/DICUI.Library/AssemblyInfo.cs b/DICUI.Library/AssemblyInfo.cs new file mode 100644 index 00000000..ce6ad6dd --- /dev/null +++ b/DICUI.Library/AssemblyInfo.cs @@ -0,0 +1,4 @@ +using System.Runtime.CompilerServices; + +// Anything marked as internal can be used by the test methods +[assembly: InternalsVisibleTo("DICUI.Test")] \ No newline at end of file diff --git a/DICUI.Library/DICUI.Library.csproj b/DICUI.Library/DICUI.Library.csproj index 414a48e9..0cc68c9b 100644 --- a/DICUI.Library/DICUI.Library.csproj +++ b/DICUI.Library/DICUI.Library.csproj @@ -2,7 +2,17 @@ net472;net48;netcoreapp3.1 - false + DICUI Library + DICUI.Library + Library code for DICUI and DICUI.Check + Matt Nadareski;ReignStumble;Jakz + Copyright (c)2019-2020 + https://github.com/SabreTools/DICUI + 1.17.0 + 1.17.0 + 1.17.0 + true + true true diff --git a/DICUI.Library/Properties/AssemblyInfo.cs b/DICUI.Library/Properties/AssemblyInfo.cs deleted file mode 100644 index b4880061..00000000 --- a/DICUI.Library/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("DICUI.Library")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DICUI.Library")] -[assembly: AssemblyCopyright("Copyright © 2019")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("51ab0928-13f9-44bf-a407-b6957a43a056")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.16.1")] -[assembly: AssemblyFileVersion("1.16.1.0")] -[assembly: InternalsVisibleTo("DICUI.Test")] diff --git a/DICUI/AssemblyInfo.cs b/DICUI/AssemblyInfo.cs new file mode 100644 index 00000000..ce6ad6dd --- /dev/null +++ b/DICUI/AssemblyInfo.cs @@ -0,0 +1,4 @@ +using System.Runtime.CompilerServices; + +// Anything marked as internal can be used by the test methods +[assembly: InternalsVisibleTo("DICUI.Test")] \ No newline at end of file diff --git a/DICUI/DICUI.csproj b/DICUI/DICUI.csproj index 777ea887..ee48e1f6 100644 --- a/DICUI/DICUI.csproj +++ b/DICUI/DICUI.csproj @@ -2,12 +2,22 @@ net472;net48;netcoreapp3.1 - false WinExe true true - true Icon.ico + true + DICUI + DICUI + Frontend for various dumping programs + Matt Nadareski;ReignStumble;Jakz + Copyright (c)2019-2020 + https://github.com/SabreTools/DICUI + 1.17.0 + 1.17.0 + 1.17.0 + true + true diff --git a/DICUI/Properties/AssemblyInfo.cs b/DICUI/Properties/AssemblyInfo.cs deleted file mode 100644 index ce5dd733..00000000 --- a/DICUI/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System.Reflection; -using System.Resources; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Windows; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("DICUI")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DICUI")] -[assembly: AssemblyCopyright("Copyright © 2020")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -//In order to begin building localizable applications, set -//CultureYouAreCodingWith in your .csproj file -//inside a . For example, if you are using US english -//in your source files, set the to en-US. Then uncomment -//the NeutralResourceLanguage attribute below. Update the "en-US" in -//the line below to match the UICulture setting in the project file. - -//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] - - -[assembly: ThemeInfo( - ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located - //(used if a resource is not found in the page, - // or application resource dictionaries) - ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located - //(used if a resource is not found in the page, - // app, or any theme specific resource dictionaries) -)] - - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.16.1")] -[assembly: AssemblyFileVersion("1.16.1.0")] - -// Anything marked as internal can be used by the test methods -[assembly: InternalsVisibleTo("DICUI.Test")] \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml index 91300a77..51dad013 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ # version format -version: 1.16-{build} +version: 1.17-{build} # pull request template pull_requests: