23.12.10
Caution
dotMCLauncher.Versioning in this release contains a bug resulting some unique libraries been detected as duplicates and skipped.
What's Changed
- LauncherProfileIcon of furnace becomes NULL when using ProfileManager.toJson() fixed by @dusmartijngames in #8
- Added support for handling maven types and new natives definition by @dedepete in #10
- Tests updated to .NET 8
New Contributors
- @dusmartijngames made their first contribution in #8
Full Changelog: https://github.com/dedepete/dotMCLauncher/commits/23.12.10
The packages are available on NuGet and GitHub:
dotMCLauncher.Profiling 1.0.2
dotMCLauncher.Versioning 2.0.0
dotMCLauncher.Resourcing 1.0.2
dotMCLauncher.Yggdrasil 1.0.2
Breaking changes
Versioning
- Type of Library.Name has been changed from
string
toMavenLibraryName
. For example:
public static Library GetOptifineLib(string oprifineVersion)
{
return new Library {
- Name = $"optifine:OptiFine:{oprifineVersion}"
+ Name = new LibraryMavenName($"optifine:OptiFine:{oprifineVersion}")
};
}