diff --git a/build.gradle b/build.gradle index 8bae2a6..f7b75ac 100644 --- a/build.gradle +++ b/build.gradle @@ -13,14 +13,14 @@ plugins { id "com.matthewprenger.cursegradle" version "1.4.0" id "com.modrinth.minotaur" version "2.8.7" id "fabric-loom" version "1.5-SNAPSHOT" apply false - id "com.github.ben-manes.versions" version "0.50.0" + id "com.github.ben-manes.versions" version "0.51.0" } def ENV = System.getenv() group = "com.viaversion.fabric" description = "Client-side and server-side ViaVersion implementation for Fabric" -version = "0.4.12+" + ENV.GITHUB_RUN_NUMBER + "-" + getBranch() +version = "0.4.13+" + ENV.GITHUB_RUN_NUMBER + "-" + getBranch() logger.lifecycle("Building ViaFabric: $version") def getBranch() { @@ -166,7 +166,7 @@ processResources { List mcReleases = Arrays.stream(rootProject.publish_mc_versions.toString().split(",")) .map({ it -> it.trim() }) .collect(Collectors.toList()) -List javaVersions = IntStream.rangeClosed(8, 18) +List javaVersions = IntStream.rangeClosed(8, 17) .mapToObj { n -> (String) "Java $n" } .collect(Collectors.toList()) String changelogMsg = "A changelog can be found at https://github.com/ViaVersion/ViaFabric/commits" diff --git a/gradle.properties b/gradle.properties index 80ae323..63632ba 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ loader_version=0.15.6 viaver_version=4.10.0-24w06a-SNAPSHOT yaml_version=2.2 -publish_mc_versions=1.20.4, 1.19.4, 1.18.2, 1.17.1, 1.16.5, 1.15.2, 1.14.4, 1.8.9 +publish_mc_versions=1.20.4, 1.19.4, 1.18.2, 1.17.1, 1.16.5, 1.15.2, 1.14.4, 1.12.2, 1.8.9 # example: 1.19.1-rc1. Can be a blank value modrinth_mc_snapshot= # example: 1.19-Snapshot. Can be a blank value diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 9a5fe45..2a7fe5d 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -13,7 +13,7 @@ }, "depends": { "fabricloader": ">=0.14.0", - "minecraft": ["1.8.9", "1.14.4", "1.15.2", "1.16.5", "1.17.1", "1.18.2", "1.19.4", ">=1.20.3"], + "minecraft": ["1.8.9", "1.12.2", "1.14.4", "1.15.2", "1.16.5", "1.17.1", "1.18.2", "1.19.4", ">=1.20.3"], "viaversion": ">=4.9.1" }, "breaks": { diff --git a/viafabric-mc112/src/main/resources/mixins.viafabric112.pipeline.json b/viafabric-mc112/src/main/resources/mixins.viafabric112.pipeline.json index bd26c36..9b5f149 100644 --- a/viafabric-mc112/src/main/resources/mixins.viafabric112.pipeline.json +++ b/viafabric-mc112/src/main/resources/mixins.viafabric112.pipeline.json @@ -4,12 +4,12 @@ "package": "com.viaversion.fabric.mc112.mixin.pipeline", "mixins": [ "MixinClientConnection", - "MixinServerNetworkIoChInit", - "client.MixinHandshakeC2SPacket" + "MixinServerNetworkIoChInit" ], "client": [ "client.MixinClientConnection", - "client.MixinClientConnectionChInit" + "client.MixinClientConnectionChInit", + "client.MixinHandshakeC2SPacket" ], "injectors": { "defaultRequire": 1 diff --git a/viafabric-mc18/build.gradle.kts b/viafabric-mc18/build.gradle.kts index f1ccd66..c8e462f 100644 --- a/viafabric-mc18/build.gradle.kts +++ b/viafabric-mc18/build.gradle.kts @@ -1,6 +1,6 @@ dependencies { minecraft("com.mojang:minecraft:1.8.9") - mappings("net.legacyfabric:yarn:1.8.9+build.532:v2") + mappings("net.legacyfabric:yarn:1.8.9+build.535:v2") modImplementation("net.legacyfabric.legacy-fabric-api:legacy-fabric-api:1.9.1+1.8.9") modImplementation("io.github.boogiemonster1o1:rewoven-modmenu:1.0.0+1.8.9") {