From aee1b3e98d90ab16f6f38f6f40ab4528a5830463 Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Sun, 20 Dec 2020 18:33:19 -0800 Subject: [PATCH] Update to 1.16.4 Just needed a licence field in mods.toml. --- build.gradle | 8 ++++---- src/main/resources/META-INF/mods.toml | 26 +++++--------------------- 2 files changed, 9 insertions(+), 25 deletions(-) diff --git a/build.gradle b/build.gradle index 7ce2f26..31da9b3 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle' apply plugin: 'eclipse' apply plugin: 'maven-publish' -version = '1.16.1' +version = '1.16.4' group = 'colecf.safechat' // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = 'Safechat' @@ -26,7 +26,7 @@ minecraft { // stable_# Stables are built at the discretion of the MCP team. // Use non-default mappings at your own risk. they may not always work. // Simply re-run your setup task after changing the mappings to update your workspace. - mappings channel: 'snapshot', version: '20200514-1.16' + mappings channel: 'snapshot', version: '20201028-1.16.3' // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') @@ -90,7 +90,7 @@ dependencies { // Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed // that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied. // The userdev artifact is a special name and will get all sorts of transformations applied to it. - minecraft 'net.minecraftforge:forge:1.16.1-32.0.70' + minecraft 'net.minecraftforge:forge:1.16.4-35.1.4' // You may put jars on which you depend on in ./libs or you may define them like so.. // compile "some.group:artifact:version:classifier" @@ -118,7 +118,7 @@ jar { attributes([ "Specification-Title": "Safechat", "Specification-Vendor": "Safechatcolecf", - "Specification-Version": "1.16.1", // We are version 1.16.1 of ourselves + "Specification-Version": "1.16.4", // We are version 1.16.4 of ourselves "Implementation-Title": project.name, "Implementation-Version": "${version}", "Implementation-Vendor" :"Safechatcolecf", diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 360983e..98aa2f2 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -7,15 +7,18 @@ modLoader="javafml" #mandatory # A version range to match for said mod loader - for regular FML @Mod it will be the forge version loaderVersion="[32,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. +# 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="All rights reserved" # A URL to refer people to when problems occur with this mod -# issueTrackerURL="http://my.issue.tracker/" #optional +issueTrackerURL="https://github.com/Colecf/Safechat/issues" # A list of mods - how many allowed here is determined by the individual mod loader [[mods]] #mandatory # The modid of the mod modId="colecf_safechat" #mandatory # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it # ${file.jarVersion} didn't work for some reason -version="1.16.1" #mandatory +version="1.16.4" #mandatory # A display name for the mod displayName="Safechat" #mandatory # A URL to query for updates for this mod. See the JSON update specification @@ -34,22 +37,3 @@ A swear word filter for Minecraft. Thanks to Fokkusu on the Minecraft forums for the logo. ''' -# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. -[[dependencies.examplemod]] #optional - # the modid of the dependency - modId="forge" #mandatory - # Does this dependency have to exist - if not, ordering below must be specified - mandatory=true #mandatory - # The version range of the dependency - versionRange="[32,)" #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 - side="BOTH" -# Here's another dependency -[[dependencies.examplemod]] - modId="minecraft" - mandatory=true - versionRange="[1.16.1]" - ordering="NONE" - side="BOTH"