From 3379b2e850c392da9d5dd7429c0d0158aeb239a7 Mon Sep 17 00:00:00 2001 From: AlexIIL Date: Fri, 13 Sep 2024 21:12:17 +0100 Subject: [PATCH] 0.26.4 Release & Changelog --- gradle.properties | 2 +- src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java | 2 +- src/main/resources/changelog/0.26.4.txt | 7 +++++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index f4811126d..06584f49b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ group = org.quiltmc description = The mod loading component of Quilt url = https://github.com/quiltmc/quilt-loader # Don't forget to change this in QuiltLoaderImpl as well -quilt_loader = 0.26.4-beta.7 +quilt_loader = 0.26.4 # Fabric & Quilt Libraries asm = 9.6 diff --git a/src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java b/src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java index 0683298ad..75a68022d 100644 --- a/src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java +++ b/src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java @@ -132,7 +132,7 @@ public final class QuiltLoaderImpl { public static final int ASM_VERSION = Opcodes.ASM9; - public static final String VERSION = "0.26.4-beta.7"; + public static final String VERSION = "0.26.4"; public static final String MOD_ID = "quilt_loader"; public static final String DEFAULT_MODS_DIR = "mods"; public static final String DEFAULT_CACHE_DIR = ".cache"; diff --git a/src/main/resources/changelog/0.26.4.txt b/src/main/resources/changelog/0.26.4.txt index 541d96f60..1e5d43cf9 100644 --- a/src/main/resources/changelog/0.26.4.txt +++ b/src/main/resources/changelog/0.26.4.txt @@ -1,14 +1,17 @@ Bug fixes: - Fixed an oversight where Loader can try to open a GUI in a headless environment +- Fixed the solver pre-processor sometimes removing a rule it's optimising when merging rules together. Changes: - Mixin compatibility level for quilt mods is currently set to 0.10.0. We'll add a way to change this in the future. +- Include the full solver pre-processor input and output state when it crashes. -Changes from updating Fabric Loader from 0.15.11 to 0.16.2: +Changes from updating Fabric Loader from 0.15.11 to 0.16.4: - Updated mixin extras to 0.4.1 -- Updated mixin to 0.15.2+mixin.0.8.7 +- Updated mixin to 0.15.3+mixin.0.8.7 - Added version parsing support for 1.21.2 - Include full entrypoint definition in entrypoint crashes. +- Added support for ignoring newer ASM versions on dedicated servers for 24w33a and later.