3.0.02
Compatibility
Changes
🟨 Mod List 3.0.02 — GOLDEN EDITION
Golden Edition introduces a redesigned identity for the Mod List project — cleaner, faster, more polished, and built for the future of Minecraft modding.
This version is a half pre‑release of the upcoming 3.0.2 stable, but already includes the full Golden Edition UI experience and improved command system.
✨ What’s New in Golden Edition 🟡 Golden Chat UI A brand‑new gold‑themed text interface for /modlist, featuring:
-
Clickable Author: DemoDev → opens my/DemoDev's Modrinth profile
-
Clickable Website → opens the Mod List Modrinth page
-
Hover tooltips with colored text
-
Clean gold borders and formatting
-
This is the first version to introduce the Golden Edition identity.
🧭 Commands
/modlist
Shows the new Golden Edition UI with clickable links.
/mods <page>
Server‑side mod list with pagination.
/clientmods <page>
Client‑side mod list (Fabric‑only), also paginated.
All commands have been fully updated for Fabric 1.21–1.21.11 and are compatible with newer versions up to 26.1.2.
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:XLVhyvXw:v9wOFPls"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:XLVhyvXw:v9wOFPls"
}

