A simple Minecraft mod updater.
This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
TheBrokenRail 4199aa02bb
ModUpdater/pipeline/head This commit looks good Details
1.0.6
2020-06-24 21:54:28 -04:00
gradle/wrapper Initial Commit 2020-06-23 22:04:22 -04:00
src/main 1.0.6 2020-06-24 21:54:28 -04:00
.gitignore Initial Commit 2020-06-23 22:04:22 -04:00
CHANGELOG.md 1.0.6 2020-06-24 21:54:28 -04:00
Jenkinsfile Add Jenkinsfile 2020-06-23 22:21:54 -04:00
LICENSE Initial Commit 2020-06-23 22:04:22 -04:00
README.md Add ModFest 1.16 Link 2020-06-24 16:01:56 -04:00
build.gradle 1.0.6 2020-06-24 21:54:28 -04:00
gradle.properties 1.0.6 2020-06-24 21:54:28 -04:00
gradlew Initial Commit 2020-06-23 22:04:22 -04:00
gradlew.bat Initial Commit 2020-06-23 22:04:22 -04:00
settings.gradle Initial Commit 2020-06-23 22:04:22 -04:00

README.md

ModUpdater

A simple Minecraft mod updater.

Created For ModFest 1.16

NOTE: This is only able to scan mods that have opted-in!

Mod Users

Go to the Mod Menu and click the configure icon for ModUpdater.

Mod Developers

Place this in your fabric.mod.json:

Maven

{
    "custom": {
        "modupdater": {
            "strategy": "maven",
            "repository": "https://maven.fabricmc.net",
            "group": "net.fabricmc.fabric-api",
            "artifact": "fabric-api"
        }
    }
}

CurseForge

{
    "custom": {
        "modupdater": {
            "strategy": "curseforge",
            "projectID": 306612
        }
    }
}

GitHub Releases

{
    "custom": {
        "modupdater": {
            "strategy": "github",
            "owner": "Repository Owner",
            "repository": "Repository Name"
        }
    }
}

Also replace this in build.gradle:

version = project.mod_version

with:

version = "${project.mod_version}+${project.minecraft_version}"

Changelog

View Changelog

Credits

  • The icon was created by ProspectorDev
  • The GitHub Releases strategy was written by AppleTheGolden