From 547675840cf6df3def680fb243fb245143905345 Mon Sep 17 00:00:00 2001 From: zsawyer <897208+zsawyer@users.noreply.github.com> Date: Mon, 8 Feb 2021 02:53:46 +0100 Subject: [PATCH] Minecraft 1.16.4 compatibility upgrade (4.6.2) * use forge version 35.1.4 * use mapping snapshot '20201028-1.16.3' (1.16.3 version is compatible) --- mod/build.gradle | 6 +++--- mod/src/main/resources/META-INF/mods.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mod/build.gradle b/mod/build.gradle index 7b03cfa..616478e 100644 --- a/mod/build.gradle +++ b/mod/build.gradle @@ -19,9 +19,9 @@ apply plugin: 'net.minecraftforge.gradle' apply plugin: 'idea' apply plugin: 'maven-publish' -ext.modversion = "4.6.1" -ext.mcversion = "1.16.3" -ext.forgeversion = "34.1.0" +ext.modversion = "4.6.2" +ext.mcversion = "1.16.4" +ext.forgeversion = "35.1.4" version = mcversion + "-" + modversion group = "zsawyer.mods.mumblelink.MumbleLink" diff --git a/mod/src/main/resources/META-INF/mods.toml b/mod/src/main/resources/META-INF/mods.toml index 7e9c80e..e2afef8 100644 --- a/mod/src/main/resources/META-INF/mods.toml +++ b/mod/src/main/resources/META-INF/mods.toml @@ -6,7 +6,7 @@ # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml modLoader="javafml" #mandatory # A version range to match for said mod loader - for regular FML @Mod it will be the forge version -loaderVersion="[34,)" #mandatory +loaderVersion="[35,)" #mandatory # The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. # Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. license="GNU LGPL v3.0" @@ -118,7 +118,7 @@ Uses JNA (https://github.com/twall/jna). # Does this dependency have to exist - if not, ordering below must be specified mandatory=true #mandatory # The version range of the dependency - versionRange="[34,)" #mandatory + versionRange="[35,)" #mandatory # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory ordering="NONE" # Side this dependency is applied on - BOTH, CLIENT or SERVER @@ -137,7 +137,7 @@ Uses JNA (https://github.com/twall/jna). # Does this dependency have to exist - if not, ordering below must be specified mandatory=true #mandatory # The version range of the dependency - versionRange="[34,)" #mandatory + versionRange="[35,)" #mandatory # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory ordering="NONE" # Side this dependency is applied on - BOTH, CLIENT or SERVER