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 e4b15f4dd9
ModUpdater/pipeline/head This commit looks good Details
1.0.9
2020-06-24 23:50:02 -04:00
gradle/wrapper Initial Commit 2020-06-23 22:04:22 -04:00
src/main 1.0.8 2020-06-24 22:09:35 -04:00
.gitignore Initial Commit 2020-06-23 22:04:22 -04:00
CHANGELOG.md 1.0.9 2020-06-24 23:50:02 -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 Spelling Change 2020-06-24 22:36:53 -04:00
build.gradle 1.0.9 2020-06-24 23:50:02 -04:00
gradle.properties 1.0.9 2020-06-24 23:50:02 -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

Both fabric.mod.json and build.gradle must be modified to opt-in to ModUpdater.

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"
        }
    }
}

build.gradle

Replace:

version = project.mod_version

with this:

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