Tags
Creators
Details
Licensed MIT
Published 2 years ago
Updated 2 months ago
All versions
1.0.0
Release
Simple Modpack Update Checker 1.0.0 for 1.21.x2 years ago 3,776
Compatibility
Minecraft: Java Edition
1.21.x
Platform
Fabric
Supported environments
Client-side
Changes
Configuration
The configuration file is located at config/simple-modpack-update-checker.txt and should contain two lines:
- Local Version: The current version of the installed modpack. This can be any string. Quotation marks are not needed
- Identifier: Either a URL to a text file containing the latest version (formatted as
version = "String", eg your pack.toml from packwiz) or the Modrinth project ID.
Examples
Using a URL:
3.3.3
https://raw.githubusercontent.com/SkyblockerMod/Skyblocker-modpack/main/packwiz/pack.toml
Using a Modrinth Project ID:
3.3.3
KmiWHzQ4
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:I70N6bTC:T2NMh1qi"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:I70N6bTC:T2NMh1qi"
}

