Skip to content

Commit

Permalink
Update to 1.16.4
Browse files Browse the repository at this point in the history
Just needed a licence field in mods.toml.
  • Loading branch information
Colecf committed Dec 21, 2020
1 parent 9bca3c4 commit aee1b3e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 25 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand All @@ -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')
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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",
Expand Down
26 changes: 5 additions & 21 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <here>
Expand All @@ -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"

0 comments on commit aee1b3e

Please sign in to comment.