Skip to content

Commit 96b0549

Browse files
author
Lortseam
committed
Revert "Move base gui classes to separate module"
This reverts commit 77e9d2b.
1 parent 77e9d2b commit 96b0549

File tree

15 files changed

+16
-41
lines changed

15 files changed

+16
-41
lines changed

base/src/main/resources/fabric.mod.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
"license": "Apache-2.0",
77

88
"environment": "*",
9+
"entrypoints": {
10+
"modmenu": [
11+
"me.lortseam.completeconfig.gui.ModMenuIntegration"
12+
]
13+
},
914

1015
"depends": {
1116
"java": ">=17",

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ allprojects {
7979
mappings("net.fabricmc:yarn:$yarn_mappings:v2")
8080
modImplementation("net.fabricmc:fabric-loader:$loader_version")
8181

82+
modImplementation("com.terraformersmc:modmenu:$modmenu_version")
83+
8284
// Using modApi because api does not include dependency inside Maven pom file
8385
// see https://github.com/FabricMC/fabric-loom/issues/200
8486
// TODO: Test if this bug still applies

gui-cloth/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dependencies {
2-
api(project(path: ":gui", configuration: "namedElements"))
2+
api(project(path: ":base", configuration: "namedElements"))
33

44
modApi("me.shedaniel.cloth:cloth-config-fabric:$cloth_config_version") {
55
exclude(group: "net.fabricmc.fabric-api")

gui-cloth/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717

1818
"depends": {
19-
"completeconfig-gui": "*"
19+
"completeconfig-base": "*"
2020
},
2121

2222
"custom": {

gui-coat/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ext.minecraftMinorVersion = minecraft_version.substring(0, 4)
22

33
dependencies {
4-
api(project(path: ":gui", configuration: "namedElements"))
4+
api(project(path: ":base", configuration: "namedElements"))
55

66
modApi("de.siphalor:coat-$minecraftMinorVersion:$coat_version") {
77
exclude(group: "net.fabricmc.fabric-api")

gui-coat/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717

1818
"depends": {
19-
"completeconfig-gui": "*"
19+
"completeconfig-base": "*"
2020
},
2121

2222
"custom": {

0 commit comments

Comments
 (0)