All versions
0.1.3
Release
Protoncracker Engine 0.1.33 days ago 14
Compatibility
Minecraft: Java Edition
26.2
26.1.x
Platform
Fabric
Supported environments
Client and server
Required content
Changes
- Minecraft 26.x Target: Shifted active focus to Minecraft 26.1–26.2+, migrating HUD hooks to Fabric's
HudElementRegistryto fix 26.2 crashes and offloading older legacy support to Omni Adapt. - Runtime Compatibility: Set Java 21 as the bytecode and mixin baseline to run seamlessly across Java 21 and Java 25.
- Mod Menu Provider: Added native
ModMenuApisupport so external mod config screens load directly inside the engine without crashes. - UI & Mod Management: Added dynamic mod filtering (
PCKR Only, Client, Server), split-view layout, custom theming, metadata dialogs, and a persistent diagnostics panel. - Core Engine Systems: Includes an in-game declarative layout solver, 3D paper-doll viewport, secure slot networking, and atomic config handling.
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:a9R9UDwu:kQGEHMpf"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:a9R9UDwu:kQGEHMpf"
}

