From 954e25b1a681e211b84f939a75925f8a96a01dd4 Mon Sep 17 00:00:00 2001 From: Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> Date: Wed, 19 Jul 2023 10:32:34 +0800 Subject: Update fabric api to 0.86.0 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gradle.properties') diff --git a/gradle.properties b/gradle.properties index ce4f22c0..fe9595f0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ loader_version=0.14.21 #Fabric api ## 1.20 -fabric_api_version=0.83.0+1.20 +fabric_api_version=0.86.0+1.20.1 # Dependencies ## Cloth Api (https://www.curseforge.com/minecraft/mc-mods/cloth-config/files) -- cgit From 08a120ef0433b23c8cee5df8625649d5a71655a6 Mon Sep 17 00:00:00 2001 From: Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> Date: Thu, 20 Jul 2023 21:28:11 +0800 Subject: Update build.gradle --- build.gradle | 13 +++++++------ gradle.properties | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) (limited to 'gradle.properties') diff --git a/build.gradle b/build.gradle index b5eaa09f..44d47adc 100644 --- a/build.gradle +++ b/build.gradle @@ -41,11 +41,10 @@ dependencies { modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" // Cloth config - modImplementation("me.shedaniel.cloth:cloth-config-fabric:${project.clothconfig_version}") { + include modImplementation("me.shedaniel.cloth:cloth-config-fabric:${project.clothconfig_version}") { exclude group: "net.fabricmc.fabric-api" exclude module: "modmenu" } - include "me.shedaniel.cloth:cloth-config-fabric:${project.clothconfig_version}" // Mod Menu modImplementation "com.terraformersmc:modmenu:${project.mod_menu_version}" @@ -58,13 +57,15 @@ dependencies { modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}" // https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit used pull data from the NEU item repo - include(implementation("org.eclipse.jgit:org.eclipse.jgit:6.4.0.202211300538-r")) + include implementation("org.eclipse.jgit:org.eclipse.jgit:6.4.0.202211300538-r") // Renderer (https://github.com/0x3C50/Renderer) - include modImplementation("com.github.0x3C50:Renderer:${project.renderer_version}") + include modImplementation("com.github.0x3C50:Renderer:${project.renderer_version}"){ + exclude group: "io.github.ladysnake" exclude module: "satin" + } + + include modImplementation("meteordevelopment:discord-ipc:1.1") - include(modImplementation ("meteordevelopment:discord-ipc:1.1")) - // Occlusion Culling (https://github.com/LogisticsCraft/OcclusionCulling) include implementation("com.logisticscraft:occlusionculling:${project.occlusionculling_version}") } diff --git a/gradle.properties b/gradle.properties index fe9595f0..a97ef816 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,7 +18,7 @@ mod_menu_version=7.0.1 ## REI (https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items/files) rei_version=12.0.625 ## Renderer (https://github.com/0x3C50/Renderer) -renderer_version = d687aced4c +renderer_version = master-SNAPSHOT ## Occlusion Culling (https://github.com/LogisticsCraft/OcclusionCulling) occlusionculling_version = 0.0.7-SNAPSHOT -- cgit