From 2df5b3b3a045090c082966a061003204bb6aa098 Mon Sep 17 00:00:00 2001 From: Abbanon <37251822+Abbanon@users.noreply.github.com> Date: Sun, 17 Jan 2021 05:26:01 -0500 Subject: [PATCH 1/4] Removed Mixin stuff since this mod doesn't even use Mixins, and cleaned up a little bit of the code. --- src/main/resources/fabric.mod.json | 6 +++--- src/main/resources/modid.mixins.json | 14 -------------- 2 files changed, 3 insertions(+), 17 deletions(-) delete mode 100644 src/main/resources/modid.mixins.json diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 5fb360f..03969d0 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -6,10 +6,11 @@ "name": "Command GUI Buttons", "description": "Create GUI buttons in-game to execute commands.", "authors": [ - "JosephG" + "JosephG", + "Abbanon" ], "contact": { - "homepage": "", + "homepage": "https://www.curseforge.com/minecraft/mc-mods/command-gui-buttons", "sources": "https://github.com/joseph-garcia/command-gui-buttons" }, @@ -23,7 +24,6 @@ ] }, "mixins": [ - ], "depends": { diff --git a/src/main/resources/modid.mixins.json b/src/main/resources/modid.mixins.json deleted file mode 100644 index 21fe73a..0000000 --- a/src/main/resources/modid.mixins.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "required": true, - "minVersion": "0.8", - "package": "net.fabricmc.example.mixin", - "compatibilityLevel": "JAVA_8", - "mixins": [ - ], - "client": [ - "ExampleMixin" - ], - "injectors": { - "defaultRequire": 1 - } -} From 702834a6ec4abffcd9b4b66e70c6f799b1fea324 Mon Sep 17 00:00:00 2001 From: Abbanon <37251822+Abbanon@users.noreply.github.com> Date: Sun, 17 Jan 2021 05:57:38 -0500 Subject: [PATCH 2/4] Update fabric.mod.json --- src/main/resources/fabric.mod.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 03969d0..157aab3 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "id": "command-gui-buttons", - "version": "${version}", + "version": "1.0.1", "name": "Command GUI Buttons", "description": "Create GUI buttons in-game to execute commands.", From 191c6d987caf4ced7c8da5ba486be8bafc88c0cc Mon Sep 17 00:00:00 2001 From: Abbanon <37251822+Abbanon@users.noreply.github.com> Date: Sun, 17 Jan 2021 06:11:25 -0500 Subject: [PATCH 3/4] Update gradle.properties --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 5dfff85..2afe76b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G loader_version=0.10.6+build.214 # Mod Properties - mod_version = 1.0.0 + mod_version = 1.0.1 maven_group = com.josyf.commandbuttons archives_base_name = command-gui-buttons From 3851aef3303a2ca5c4cd929a170f95fb4ea735f9 Mon Sep 17 00:00:00 2001 From: Abbanon <37251822+Abbanon@users.noreply.github.com> Date: Sun, 17 Jan 2021 06:16:03 -0500 Subject: [PATCH 4/4] whoops, restored a line to its original value --- src/main/resources/fabric.mod.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 157aab3..03969d0 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "id": "command-gui-buttons", - "version": "1.0.1", + "version": "${version}", "name": "Command GUI Buttons", "description": "Create GUI buttons in-game to execute commands.",