ModUpdater/README.md

37 lines
641 B
Markdown
Raw Normal View History

2020-06-24 02:04:22 +00:00
# ModUpdater
A simple Minecraft mod updater.
## Mod Users
Go to the Mod Menu and click the configure icon for ModUpdater.
## Mod Developers
Place this in your ``fabric.mod.json``:
**Maven**
```json
{
"custom": {
"modupdater": {
"strategy": "maven",
"repository": "https://maven.fabricmc.net",
"group": "net.fabricmc.fabric-api",
"artifact": "fabric-api"
}
}
}
```
**CurseForge**
```json
{
"custom": {
"modupdater": {
"strategy": "curseforge",
"projectID": 306612
}
}
}
```
## Changelog
[View Changelog](CHANGELOG.md)