Skip to content

Commit

Permalink
Require Fabric Loader >=0.12.9 due to its patch for the recently foun…
Browse files Browse the repository at this point in the history
…d Minecraft exploit
  • Loading branch information
NebelNidas committed Dec 9, 2021
1 parent d693abd commit 12310a3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ repositories {
}

dependencies {
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc:fabric-loader:${project.fabric_loader_version}"

// Modget Manifest API
include implementation("com.github.ReviversMC.modget-manifest-api:compat:${project.modget_manifest_api_version}")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ maven_group = com.github.reviversmc.modget
archives_base_name = modget-minecraft

# Global Dependencies
loader_version=0.12.8
fabric_loader_version=0.12.9
modget_lib_version = 3.0.0-rc.5
modget_manifest_api_version = 0.2.1
commons_text_version = 1.9
Expand Down
2 changes: 1 addition & 1 deletion modget-minecraft-1.16/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {

minecraft "com.mojang:minecraft:${project.minecraft_version_1_16}"
mappings "net.fabricmc:yarn:${project.yarn_mappings_1_16}"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc:fabric-loader:${project.fabric_loader_version}"

// Use the full Fabric API while debugging, otherwise ModMenu complains
modRuntimeOnly "net.fabricmc.fabric-api:fabric-api:${project.fabric_version_1_16}"
Expand Down
2 changes: 1 addition & 1 deletion modget-minecraft-1.17/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {

minecraft "com.mojang:minecraft:${project.minecraft_version_1_17}"
mappings "net.fabricmc:yarn:${project.yarn_mappings_1_17}"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc:fabric-loader:${project.fabric_loader_version}"

// Use the full Fabric API while debugging, otherwise ModMenu complains
modRuntimeOnly "net.fabricmc.fabric-api:fabric-api:${project.fabric_version_1_17}"
Expand Down
2 changes: 1 addition & 1 deletion modget-minecraft-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply from: '../common.gradle'
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version_1_16}"
mappings "net.fabricmc:yarn:${project.yarn_mappings_1_16}"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc:fabric-loader:${project.fabric_loader_version}"

// Bundle required Fabric API modules
include modImplementation(fabricApi.module("fabric-api-base", project.fabric_version_1_16))
Expand Down
2 changes: 1 addition & 1 deletion modget-minecraft-core/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"modgetcore.mixins.json"
],
"depends": {
"fabricloader": ">=0.7.4",
"fabricloader": ">=${fabric_loader_version}",
"fabric-api-base": "*",
"fabric-command-api-v1": ">=1.1.0+f9b3753b7d",
"fabric-networking-api-v1": "*",
Expand Down

0 comments on commit 12310a3

Please sign in to comment.