Links
Tags
Creators
Details
26.04.27
Compatibility
Changes
Changelog
-
Ctrl / Strg + Q drops a full stack again on Mac, including from the hotbar (not just single items). (Try to disable "USE COMMAND KEY" if it does not work)
-
Inventory and shortcuts that rely on Control should behave more like on Windows when you’re not using ⌘ as “control”.
-
Optional blocking of ⌘ Q so Minecraft doesn’t quit when you hit Command+Q by mistake — matches the in-game toggle; rebuild included native library so this works reliably.
-
Small cleanup under the hood so fewer moving parts clash with NeoForge keybind behaviour.
-
Mod version is set automatically from the build date (shown like 26.04.27), so you always see how fresh a build is without manual version bumps.
-
GitHub Actions now runs the build when you push to main or master, not only on tags — so checks run on normal updates too.
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:ac3bcWXA:l5jRTw9P"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ac3bcWXA:l5jRTw9P"
}

