Skip to content

23.12.10

Compare
Choose a tag to compare
@dedepete dedepete released this 10 Dec 16:11
· 2 commits to master since this release
72fd7a5

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

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 to MavenLibraryName. For example:
public static Library GetOptifineLib(string oprifineVersion)
{
    return new Library {
-        Name = $"optifine:OptiFine:{oprifineVersion}"
+        Name = new LibraryMavenName($"optifine:OptiFine:{oprifineVersion}")
    };
}