From 74afd5fd062d65e62cd1a9ca8632998548721530 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Wed, 22 Nov 2023 17:07:12 -0500 Subject: 1.20.3-pre2 --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index c28bd1b5..6a8dca61 100644 --- a/build.gradle +++ b/build.gradle @@ -19,6 +19,7 @@ repositories { maven { url "https://maven.terraformersmc.com/releases" } maven { url "https://maven.shedaniel.me/" } maven { url "https://maven.isxander.dev/releases" } + maven { url "https://maven.isxander.dev/snapshots" } //For minecraft snapshots maven { url 'https://repo.maven.apache.org/maven2' name 'Maven Central' @@ -51,11 +52,11 @@ dependencies { // REI modCompileOnly "me.shedaniel:RoughlyEnoughItems-api-fabric:${project.rei_version}" - modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}" + //modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}" // EMI modCompileOnly "dev.emi:emi-fabric:${project.emi_version}:api" - modLocalRuntime "dev.emi:emi-fabric:${project.emi_version}" + //modLocalRuntime "dev.emi:emi-fabric:${project.emi_version}" include modImplementation("meteordevelopment:discord-ipc:1.1") -- cgit From 8266bc444e0b93fe70bb1b54529469d899c5e9c0 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Tue, 28 Nov 2023 16:30:45 -0500 Subject: Fabric Loader 0.15 --- build.gradle | 3 --- gradle.properties | 4 +--- src/main/resources/fabric.mod.json | 8 ++++---- 3 files changed, 5 insertions(+), 10 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 6a8dca61..3568facc 100644 --- a/build.gradle +++ b/build.gradle @@ -60,9 +60,6 @@ dependencies { include modImplementation("meteordevelopment:discord-ipc:1.1") - // Mixin Extras (https://github.com/LlamaLad7/MixinExtras) - include implementation(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-fabric:${project.mixin_extras_version}")) - // BetterInject (https://github.com/caoimhebyrne/BetterInject) include implementation(annotationProcessor("com.github.cbyrneee:BetterInject:${project.betterinject_version}")) diff --git a/gradle.properties b/gradle.properties index 0f98acb1..ffaca75f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ org.gradle.parallel=true ## 1.20 minecraft_version=1.20.3-pre4 yarn_mappings=1.20.3-pre4+build.2 -loader_version=0.14.24 +loader_version=0.15.0 #Fabric api ## 1.20 @@ -22,8 +22,6 @@ rei_version = 13.0.666 emi_version = 1.0.22+1.20.2 # Minecraft and Related Libraries -## Mixin Extras (https://github.com/LlamaLad7/MixinExtras) -mixin_extras_version = 0.2.0 ## Better Inject (https://github.com/caoimhebyrne/BetterInject) betterinject_version=0.1.3 ## Occlusion Culling (https://github.com/LogisticsCraft/OcclusionCulling) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 19b66fc2..8664cf68 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -36,10 +36,10 @@ ], "accesswidener": "skyblocker.accesswidener", "depends": { - "fabricloader": ">=0.14.24", - "fabric-api": ">=0.90.12+1.20.3", - "yet_another_config_lib_v3": ">=3.2.1+1.20.2", - "minecraft": "~1.20.3-beta.2" + "fabricloader": ">=0.15.0", + "fabric-api": ">=0.91.1+1.20.3", + "yet_another_config_lib_v3": ">=3.3.0+1.20.3+update.1.20.3-SNAPSHOT+update.1.20.3-SNAPSHOT", + "minecraft": "~1.20.3-beta.4" }, "conflicts": { "immediatelyfast": "<=1.1.26+1.20.1" -- cgit