Tags
Creators
Details
Licensed MIT
Published 3 months ago
All versions
5.0.0+1.20.1
Release
CTA 5.0.0 - Forge 1.20.1yesterday 4
Compatibility
Minecraft: Java Edition
1.20.1
Platform
Forge
Supported environments
Client-side
Required content
Any compatible version
Any compatible version
Changes
Full Changelog
5.0.0+1.20.1
This release introduces native dynamic translation support and a major structural refactoring of the API.
BREAKING: API CHANGES
- If you're a developer, please read the entire changelog in GitHub.
New Features
- Added native Translation Key support! You can now use the
<translate:your.translation.key>block directly inside your custom text. - Tooltips using translation keys will instantly update if the player changes their language in the Minecraft settings menu.
- Added full support for Animated Tooltip Backgrounds! You can now place
.png.mcmetafiles alongside your custom backgrounds in thebackgroundsfolder, and they will be displayed as native animated textures. - Added a new configuration file
external_backgrounds.json5. This allows users to cleanly add external textures (or scan entire folders) from other mods or resource packs directly into the GUI dropdown for custom background selection.
Fixes & Optimizations
- Optimized resource pack generation: Custom textures and fonts are no longer aggressively rewritten to disk on every startup if they already exist, significantly reducing I/O operations
- Cleaned up internal background rendering code
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:RGKUGobH:x51kkA4k"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:RGKUGobH:x51kkA4k"
}

