File tree 4 files changed +14
-15
lines changed
src/main/java/io/github/cottonmc/cotton/gui/client/modmenu
4 files changed +14
-15
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id ' fabric-loom' version ' 0.5-SNAPSHOT'
3
3
id ' maven-publish'
4
- id " com.jfrog.artifactory" version " 4.9 .0"
4
+ id " com.jfrog.artifactory" version " 4.20 .0"
5
5
id ' checkstyle'
6
6
}
7
7
@@ -20,6 +20,12 @@ group = project.maven_group
20
20
21
21
repositories {
22
22
maven { url " http://server.bbkr.space:8081/artifactory/libs-release" }
23
+ maven {
24
+ url = " http://maven.terraformersmc.com/releases"
25
+ content {
26
+ includeGroup " com.terraformersmc"
27
+ }
28
+ }
23
29
}
24
30
25
31
dependencies {
@@ -30,7 +36,7 @@ dependencies {
30
36
modImplementation " io.github.cottonmc:Jankson-Fabric:${ project.jankson_version} "
31
37
include " io.github.cottonmc:Jankson-Fabric:${ project.jankson_version} "
32
38
33
- modRuntime(modCompileOnly(" io.github.prospector :modmenu:$project . modmenu_version " ) {
39
+ modRuntime(modCompileOnly(" com.terraformersmc :modmenu:$project . modmenu_version " ) {
34
40
exclude group : ' net.fabricmc.fabric-api'
35
41
})
36
42
}
Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ org.gradle.jvmargs=-Xmx1G
3
3
4
4
# Fabric Properties
5
5
# check these on https://fabricmc.net/use
6
- minecraft_version =1.16.4
7
- yarn_mappings =1.16.4 +build.7
8
- loader_version =0.10.8
6
+ minecraft_version =1.16.5
7
+ yarn_mappings =1.16.5 +build.3
8
+ loader_version =0.11.1
9
9
10
10
# Mod Properties
11
11
mod_version = 3.3.3
12
12
maven_group = io.github.cottonmc
13
13
archives_base_name = LibGui
14
14
15
15
# Dependencies
16
- fabric_version =0.28.3 +1.16
16
+ fabric_version =0.30.0 +1.16
17
17
jankson_version =3.0.1+j1.2.0
18
- modmenu_version =1.14.6+build.31
18
+ modmenu_version =1.14.15
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.3 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.8.1 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 3
3
import net .minecraft .text .TranslatableText ;
4
4
5
5
import io .github .cottonmc .cotton .gui .client .CottonClientScreen ;
6
- import io .github .cottonmc .cotton .gui .client .LibGuiClient ;
7
6
import io .github .prospector .modmenu .api .ConfigScreenFactory ;
8
7
import io .github .prospector .modmenu .api .ModMenuApi ;
9
8
10
9
public class ModMenuSupport implements ModMenuApi {
11
-
12
- @ Override
13
- public String getModId () {
14
- return LibGuiClient .MODID ;
15
- }
16
-
17
10
@ Override
18
11
public ConfigScreenFactory <?> getModConfigScreenFactory () {
19
12
return screen -> new CottonClientScreen (new TranslatableText ("options.libgui.libgui_settings" ), new ConfigGui (screen )) {
You can’t perform that action at this time.
0 commit comments