Tags
Creators
Details
ppr-0.13.0
Compatibility
Changes
What's Changed
Features
Fabric Armor Renderer Compatibility
Mods using Fabric's armor render API are now generally supported. This addresses #348 and is a more generalised compat than a specific one for Nycto - by @zannagh in #349
Easy Render API and API only mode on Armor Hider
Armor Hider now sports an API that can be used by other mods to leverage the existing capabilities of the mod to hide armor pieces, elytra, ... - check the Api Docs, how to depend on Armor Hider and how to use the API on the wiki - by @zannagh in #344 and #347
26.3 Snapshot 9 support
The mod has been updated to support 26.3 snapshot 9. This required no code changes, to snapshot.8 and snapshot.9 are now both supported - by @zannagh in #346
Other
Gradle and build tools have been updated - by @zannagh in #345
Full Changelog: https://github.com/zannagh/armor-hider/compare/v0.12.19...v0.13.0
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:GgG2my3y:CXHe6wHn"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:GgG2my3y:CXHe6wHn"
}

