From 42703f02c9736a1565a0aa00007b04db9bc0baa7 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Mon, 8 Jul 2024 22:33:56 -0400 Subject: Bing bong locraw gone! --- gradle.properties | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gradle.properties') diff --git a/gradle.properties b/gradle.properties index 614c7a1d..3135716a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,6 +14,8 @@ fabric_api_version=0.100.1+1.21 # Minecraft Mods ## YACL (https://github.com/isXander/YetAnotherConfigLib) yacl_version=3.5.0+1.21 +## HM API +hm_api_version=1.0.0-alpha.10+1.21 ## Mod Menu (https://modrinth.com/mod/modmenu/versions) mod_menu_version = 11.0.0-beta.1 ## REI (https://modrinth.com/mod/rei/versions?l=fabric) -- cgit From d33ecde3ba9a8021bee73f1455d2ab2335a0ae99 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Tue, 9 Jul 2024 16:08:00 -0400 Subject: stop the deletion of record syntax sugar --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gradle.properties') diff --git a/gradle.properties b/gradle.properties index 3135716a..9ece889f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,7 +15,7 @@ fabric_api_version=0.100.1+1.21 ## YACL (https://github.com/isXander/YetAnotherConfigLib) yacl_version=3.5.0+1.21 ## HM API -hm_api_version=1.0.0-alpha.10+1.21 +hm_api_version=1.0.0-alpha.11+1.21 ## Mod Menu (https://modrinth.com/mod/modmenu/versions) mod_menu_version = 11.0.0-beta.1 ## REI (https://modrinth.com/mod/rei/versions?l=fabric) -- cgit From f2f50f2a956cada6c619f8efd46fc0ed9a830a16 Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Thu, 11 Jul 2024 15:46:20 -0400 Subject: HM API 1.0.0 Release I went back to the "traditional" repository declaration because Gradle apparently doesn't allow two repositories in the forRepository thing --- build.gradle | 14 +++----------- gradle.properties | 4 ++-- src/main/resources/fabric.mod.json | 2 +- 3 files changed, 6 insertions(+), 14 deletions(-) (limited to 'gradle.properties') diff --git a/build.gradle b/build.gradle index b3c46376..56f281fb 100644 --- a/build.gradle +++ b/build.gradle @@ -31,16 +31,8 @@ repositories { maven { url "https://repo.codemc.io/repository/maven-public/" } // For Occlusion Culling library maven { url "https://repo.nea.moe/releases" } // For neu repoparser - exclusiveContent { - forRepository { - maven { url "https://maven.azureaaron.net/releases" } - maven { url "https://maven.azureaaron.net/snapshots" } - } - - filter { - includeGroup "net.azureaaron" - } - } + maven { url "https://maven.azureaaron.net/releases" } + maven { url "https://maven.azureaaron.net/snapshots" } } dependencies { @@ -61,7 +53,7 @@ dependencies { // YACL include modImplementation("dev.isxander:yet-another-config-lib:${project.yacl_version}-fabric") - // HM API + // HM API (Hypixel Mod API Library) include modImplementation("net.azureaaron:hm-api:${project.hm_api_version}") // Mod Menu diff --git a/gradle.properties b/gradle.properties index 9ece889f..e97585c9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,8 +14,8 @@ fabric_api_version=0.100.1+1.21 # Minecraft Mods ## YACL (https://github.com/isXander/YetAnotherConfigLib) yacl_version=3.5.0+1.21 -## HM API -hm_api_version=1.0.0-alpha.11+1.21 +## HM API (https://github.com/AzureAaron/hm-api) +hm_api_version=1.0.0+1.21 ## Mod Menu (https://modrinth.com/mod/modmenu/versions) mod_menu_version = 11.0.0-beta.1 ## REI (https://modrinth.com/mod/rei/versions?l=fabric) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 93e2bd6a..1361c00a 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -36,7 +36,7 @@ "fabricloader": ">=0.15.11", "fabric-api": ">=0.100.1+1.21", "yet_another_config_lib_v3": ">=3.5.0+1.21", - "hm-api": ">=1.0.0-alpha.10+1.21", + "hm-api": ">=1.0.0+1.21", "minecraft": "~1.21", "java": ">=21" }, -- cgit