Tags
Creators
Details
All versions
5.0.16
Release
custom-crafter-api 5.0.169 months ago 55
Compatibility
Minecraft: Java Edition
1.21.4โ1.21.11
Platforms
Paper
Purpur
Required content
Unavailable version
Changes
Changelog
5.0.16
โ ๏ธ Breaking Changes
- The Enums used for configuring
CMatterandCRecipehave been moved from standalone classes to nested classes within their respective parent classes. This requires changes to how these Enums are referenced in existing code. - Several functions within the
CustomCrafterAPIhave been relocated to more appropriate classes based on their role. Users consuming the API should review their function calls and make necessary adjustments.
โจ New Features and Enhancements
- [New Feature] Added a new feature that allows the customization of the recipe arrangement (layout) on the crafting screen. This enables more flexible UI design. (
CraftUIDesigner) - [Enhancement] Enhanced Java interoperability for static functions and values.
- [Enhancement] Users can now initialize several classes.
๐ Fix
- We can now return correct answers for several search patterns.
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:lUgVFdcC:k38pjh2k"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:lUgVFdcC:k38pjh2k"
}

