Tags
Creators
Details
v2.0.0
Compatibility
Required content
Changes
Ta-da! I made some buttons disappear! (Or at least, you can!)
New in this update:
- The ability for themes to define what main buttons are available on the main menu. Specifically, they can hide:
- Singleplayer
- Multiplayer
- Mods
- Quick Join (New name for the server join button, keep reading)
- Changed the Quick Join button to allow for custom code to be run. There are now two new methods in Util to look at:
joinServerandloadWorld
There are new overrides in the configuration screen in the Mod Menu to go along with the new features. (You will need to show library mods in the list to find SMM-Lib!)
In addition, the minimum Minecraft version is now 1.20.2 with Fabric Loader 0.15.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:AbWEdxPY:7SiRyTNo"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:AbWEdxPY:7SiRyTNo"
}



