diff --git a/build.gradle b/build.gradle index 7765244..0aeea65 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.9-SNAPSHOT' + id 'fabric-loom' version '1.1-SNAPSHOT' id 'maven-publish' } @@ -36,7 +36,7 @@ processResources { } loom { - accessWidener = file("src/main/resources/keystrokes.accesswidener") + accessWidenerPath = file("src/main/resources/keystrokes.accesswidener") } tasks.withType(JavaCompile).configureEach { diff --git a/gradle.properties b/gradle.properties index 98b6361..7756533 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,10 +3,10 @@ org.gradle.jvmargs=-Xmx1G minecraft_version=1.16.5 yarn_mappings=1.16.5+build.10 -loader_version=0.11.6 +loader_version=0.14.19 # Deps -fabric_version=0.38.2+1.16 +fabric_version=0.42.0+1.16 mod_version = 0.1.0 maven_group = me.topchetoeu.keystrokes diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 7454180..943f0cb 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index ffed3a2..f398c33 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip +networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 89db305..2834e34 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,29 +1,29 @@ { - "schemaVersion": 1, - "id": "keystrokes", - "version": "${version}", + "schemaVersion": 1, + "id": "keystrokes", + "version": "${version}", - "name": "Keystrokes for Fabric", - "description": "The same as the Keystrokes Forge mod, but for Fabric", - "authors": [ "TopchetoEU" ], + "name": "Keystrokes for Fabric", + "description": "A Minecraft Fabric mod that adds the well-known keystrokes overlay", + "authors": [ "TopchetoEU" ], - "license": "GPL3", - "icon": "assets/keystrokes/icon.png", + "license": "MIT", + "icon": "assets/keystrokes/icon.png", - "environment": "*", - "entrypoints": { - "client": [ - "me.topchetoeu.keystrokes.Keystrokes" - ] - }, - "mixins": [ - "keystrokes.mixins.json" - ], + "environment": "*", + "entrypoints": { + "client": [ + "me.topchetoeu.keystrokes.Keystrokes" + ] + }, + "mixins": [ + "keystrokes.mixins.json" + ], - "depends": { - "fabricloader": ">=0.11.3", - "fabric": "*", - "minecraft": "1.16.x", - "java": ">=16" - } + "depends": { + "fabricloader": ">=0.14.19", + "fabric": "*", + "minecraft": "1.16.x", + "java": ">=16" + } }