Links
Tags
Creators
Details
1.1.0+26.1
Compatibility
Required content
Changes
FabPose 1.1.0
-
Minecraft 26.1 support alongside 1.21.11, managed in parallel via Stonecutter.
-
Stonecutter-based multi-version layout with a dual buildscript setup:
build.fabric.gradle.ktsfor 1.21.x (JDK 21, obfuscated Fabric Loom pipeline).build.fabric.unobfuscated.gradle.ktsfor 26.1+ (JDK 25, un-obfuscated Loom 1.16-SNAPSHOT).
-
Code ported to 26.1 Blaze3D / Gui / networking APIs through Stonecutter
?ifguards (displayClientMessage \u2192 sendSystemMessage, PacketByteBufs \u2192 FriendlyByteBuf, KeyBindingHelper \u2192 KeyMappingHelper, loominjected_interfaces\u2192 mixin-based PosingFlag access). -
Headless client tests stabilized in CI and locally via forced Mesa llvmpipe and a PulseAudio stub injected through
LD_PRELOADso flite TTS no longer aborts. -
New
mod-publish-pluginbased release flow: one annotatedvX.Y.Ztag now publishes every active Minecraft version to Modrinth, CurseForge, and GitHub Releases in a single run. -
1.21.x now ships the remapped production jar (
remapJar/remapSourcesJar) instead of the dev jar that previous wiring would have uploaded. -
Targets Minecraft 1.21.11 (JDK 21) and 26.1 (JDK 25).
-
Requires Fabric API and Fabric Language Kotlin.
Supplementary resources
| File | Type | Size | |
|---|---|---|---|
| fabpose-1.1.0+26.1-sources.jar | Unknown | 52.09 KiB |
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:xP1ieq80:6i6tMiie"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:xP1ieq80:6i6tMiie"
}


