Links
Tags
Creators
Details
1.10.0-B52
Compatibility
Changes
Version 1.10.0:
- Initial port to 1.13.2 on Forge
- Modders beware: There are several API changes to bring it up to modern standards. Notable changes include
- Tooltips are now backed by `ITextComponent` instead of `String`
- `ITaggedList` has been reworked to be much easier to work with
- See `HUDHandlerVillager#appendHead(...)` for an example of how to replace an existing tagged line
- Config values are now namespaced
- See `PluginCore` or `PluginMinecraft` for examples
- Tooltip renderers are now namespaced
- See `PluginCore` or `PluginMinecraft` for examples
- Some classes were renamed to remove the "Waila" identifier
- `getNBTData(...)` in `IWailaDataProvider` was moved to `IServerDataProvider`
- See `HUDHandlerFurnace` or `HUDHandlerVillager` in the default Minecraft plugin for block/entity examples
- Registration methods for data providers have been flattened into a single method (`registerComponentProvider`) with a position parameter
- See `PluginCore` or `PluginMinecraft` for examples
- There is now a way to display a stack for an entity (`registerEntityStackProvider`)
When in doubt, check the javadocs.
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:kr1RaEqy:SYpz1UZE"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:kr1RaEqy:SYpz1UZE"
}

