Tags
Creators
Details
2.11.3
Compatibility
Changes
What's Changed
- Add 1.20 support
- Try printing the shaders plugin name in incompatibility messages
- Print warning when shading the plugin instead of the api/setting the shaded target to "de.tr7zw.nbtapi" (this is reserved for the official plugin)
- Disable version check for shaded versions by default(turn back on using MinecraftVersion.enableUpdateCheck())
- Add support for boolean in getOrDefault/getOrNull by @SoSeDiK in https://github.com/tr7zw/Item-NBT-API/pull/222
- Allow checking nbt type alongside the key by @SoSeDiK in https://github.com/tr7zw/Item-NBT-API/pull/223
- Bump license-maven-plugin from 2.0.0 to 2.0.1 by @dependabot in https://github.com/tr7zw/Item-NBT-API/pull/221
- Fix a small typo in nbt-injector by @tom-devv in https://github.com/tr7zw/Item-NBT-API/pull/224
- Bump maven-source-plugin from 3.2.1 to 3.3.0 by @dependabot in https://github.com/tr7zw/Item-NBT-API/pull/227
A heads-up
More features like Mojang mapped jars/Folia support and a cleaner way to access data using interfaces are on the way. You should consider joining the discord to join the discussion.
New Contributors
- @tom-devv made their first contribution in https://github.com/tr7zw/Item-NBT-API/pull/224
Full Changelog: https://github.com/tr7zw/Item-NBT-API/compare/2.11.2...2.11.3
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:nfGCP9fk:wtKsBSun"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:nfGCP9fk:wtKsBSun"
}
