Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Yarn | 793 | 8 days ago | 127 | cc0-1.0 | Java | |||||
Libre Minecraft mappings, free to use for everyone. No exceptions. | ||||||||||
Patchwork Patcher | 302 | 2 years ago | 21 | lgpl-3.0 | Java | |||||
Patches Forge mod jars, allowing them to be loaded by Fabric | ||||||||||
Spruceui | 101 | 18 hours ago | 6 | mit | Java | |||||
A Minecraft library mod which adds a new abstraction to create GUI interfaces. Still close to the Vanilla design code-wise. | ||||||||||
Requiem | 100 | a month ago | 110 | other | Java | |||||
Revamps Minecraft's vanilla death experience and adds various related mechanics. | ||||||||||
Spark Cluster Deployment | 43 | 9 years ago | apache-2.0 | Python | ||||||
Automates Spark standalone cluster tasks with Puppet and Fabric. | ||||||||||
Boostedbrightness | 29 | 3 months ago | 4 | mit | Java | |||||
A simple Minecraft mod that allows you to set brightness beyond default levels. | ||||||||||
Justitia | 22 | 4 years ago | JavaScript | |||||||
Fabric manage tool. | ||||||||||
Mcpatcherpatcher | 21 | 3 years ago | 6 | lgpl-3.0 | Java | |||||
A resource pack patcher to abandon the old MCPatcher format in favor of newer formats. | ||||||||||
Vanilla Hammers | 20 | a year ago | 21 | mit | Java | |||||
Introduces 3x3 mining tools for fast digging! Available on 1.14, 1.15, 1.16, and 1.17. | ||||||||||
Modrobot | 16 | 2 years ago | 3 | mit | xBase | |||||
Updates Minecraft mods |
Patchwork Patcher is a set of tools for transforming and patching Forge mod jars into jars that are directly loadable by Fabric Loader. It does the following things currently:
Remaps Minecraft from official (proguard's obfuscated names) to srg (MCP's runtime mappings)
Remaps the mod jar from srg to official using Tiny Remapper with the srg minecraft jar on the classpath
Remaps the mod jar from official to intermediary using Tiny Remapper with the official minecraft jar on the classpath
Converts the Forge mods.toml manifest to a fabric.mod.json file
Converts @OnlyIn annotations to @Environment for Fabric
Strips @ObjectHolder annotations, removes the field's final modifiers, and creates Consumers that set the fields
Strips @Mod.EventBusSubscriber and @SubscribeEvent annotations and generates event handlers (that handle events) and event registrars (that register event handlers on behalf of a class)
Generates a class implementing ForgeInitializer that registers all the object holders and event registrars
1.16.4 only.
Patchwork Patcher generates jars that require a Fabric mod acting as a compatibility layer to run. Patchwork API fulfills this role, most development will happen there.