ModUpdater/README.md

51 lines
930 B
Markdown
Raw Normal View History

2020-06-24 02:04:22 +00:00
# ModUpdater
A simple Minecraft mod updater.
2020-06-24 14:02:31 +00:00
**NOTE:** This is only able to scan mods that have opted-in!
2020-06-24 02:04:22 +00:00
## 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
}
}
}
```
2020-06-24 02:18:36 +00:00
Also replace this in ````build.gradle````:
```gradle
version = project.mod_version
```
with:
```gradle
version = "${project.mod_version}+${project.minecraft_version}"
```
2020-06-24 02:04:22 +00:00
## Changelog
2020-06-24 02:18:36 +00:00
[View Changelog](CHANGELOG.md)
## Credits
2020-06-24 02:35:04 +00:00
The icon was created by ``ProspectorDev``.