Tags
Creators
Details
All versions
2.0.0
Release
MineGPT 2.0.03 weeks ago 67
Compatibility
Minecraft: Java Edition
26.2
Platform
Fabric
Supported environments
Client-side
Client and server
Changes
MineGPT v2.0.0 — ported to Minecraft 26.2 (Fabric) with Java 25.
🚀 Migration to Minecraft 26.2
- Updated Minecraft version from 1.21.11 to 26.2
- Updated Fabric Loader to 0.19.3
- Updated Fabric Loom to 1.17.12
- Updated Gradle wrapper to 9.5.1
- Java version updated to 25
- Removed Yarn mappings (26.2 is non-obfuscated)
🔧 API Fixes for 26.2
- `GuiGraphics` → `GuiGraphicsExtractor` with `extractRenderState()` render method
- `drawString` → `text()`, `drawCenteredString` → `centeredText()`
- `ClientCommandManager` → `ClientCommands`
- `InputConstants` → `com.mojang.blaze3d.platform.InputConstants`
- `Click` → `MouseButtonEvent`, `KeyInput` → `KeyEvent`
- `getHandle()` → `handle()`, `close()` → `onClose()`
- `modImplementation` → `implementation` for non-obfuscated dependencies
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:PEw4p6hG:XIZOFKLP"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:PEw4p6hG:XIZOFKLP"
}

