Tags
Creators
Details
All versions
2.2.4+26.1
Release
Fabric v2.2.4+26.15 days ago 7,955
Compatibility
Minecraft: Java Edition
26.1.x
Platform
Fabric
Supported environments
Client-side
Required content
Any compatible version
Changes
- Fixed exact aliases not updating the pack id in profiles (#72).
- Aliases can now resolve to a regex pack id when prefixed with
regex:. The regex pack id will attempt to find the first pack with the matching id. This can only be done manually in theconfig.meta.jsonfile for now.- Example using an exact alias.
{ "aliases": { "file/test-pack v1.2.zip": "regex:file/test-pack v.*\\.zip" } } - Example using a regex alias:
{ "aliases": { "regex:file/test-pack v.*\\.zip": "regex:file/test-pack v.*\\.zip" } } - Note that
aliasesin theconfig.meta.jsonmaps alias to canonical. Pack ids saved in configs but do not exist will attempt to find a matching key in the alias map. The value is the id of the would-be existing pack. If the mapped value is a regex id, then it will attempt to find an existing pack that matches the regex.
- Example using an exact alias.
Supplementary resources
| File | Type | Size | |
|---|---|---|---|
| packed_packs-fabric-2.2.4+26.1-sources.jar | Unknown | 183.99 KiB |
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:8Pq6Exn2:HHzNg3yv"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:8Pq6Exn2:HHzNg3yv"
}

