Update to 1.16, metadata changes
This commit is contained in:
parent
948c0da731
commit
37c9c2f28b
10 changed files with 256 additions and 214 deletions
35
src/main/resources/META-INF/mods.toml
Normal file
35
src/main/resources/META-INF/mods.toml
Normal file
|
@ -0,0 +1,35 @@
|
|||
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
|
||||
modLoader="javafml"
|
||||
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
|
||||
# Forge for 1.16.3 is version 34
|
||||
loaderVersion="[36.1,)"
|
||||
# A URL to refer people to when problems occur with this mod
|
||||
issueTrackerURL="https://github.com/MinecraftForge/MinecraftForge/issues"
|
||||
license="GPL"
|
||||
|
||||
[[mods]]
|
||||
modId="extbackup"
|
||||
version="${file.jarVersion}"
|
||||
displayName="ExtBackup"
|
||||
#updateJSONURL="https://minecraftforge.net/versions.json"
|
||||
displayURL="minecraftforge.net"
|
||||
#logoFile="assets/examplemod/textures/logo.png"
|
||||
credits="I'd like to thank my mother and father."
|
||||
authors="jinks"
|
||||
description='''
|
||||
Lets you craft dirt into diamonds. This is a traditional mod that has existed for eons. It is ancient. The holy Notch created it. Jeb rainbowfied it. Dinnerbone made it upside down. Etc.
|
||||
'''
|
||||
|
||||
[[dependencies.extbackup]]
|
||||
modId="forge"
|
||||
mandatory=true
|
||||
versionRange="[36.1,)"
|
||||
ordering="NONE"
|
||||
side="BOTH"
|
||||
|
||||
[[dependencies.extbackup]]
|
||||
modId="minecraft"
|
||||
mandatory=true
|
||||
versionRange="[1.16.5]"
|
||||
ordering="NONE"
|
||||
side="BOTH"
|
|
@ -1,16 +0,0 @@
|
|||
[
|
||||
{
|
||||
"modid": "examplemod",
|
||||
"name": "Example Mod",
|
||||
"description": "Example placeholder mod.",
|
||||
"version": "${version}",
|
||||
"mcversion": "${mcversion}",
|
||||
"url": "",
|
||||
"updateUrl": "",
|
||||
"authorList": ["ExampleDude"],
|
||||
"credits": "The Forge and FML guys, for making this example",
|
||||
"logoFile": "",
|
||||
"screenshots": [],
|
||||
"dependencies": []
|
||||
}
|
||||
]
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"pack": {
|
||||
"description": "examplemod resources",
|
||||
"pack_format": 3,
|
||||
"_comment": "A pack_format of 3 should be used starting with Minecraft 1.11. All resources, including language files, should be lowercase (eg: en_us.lang). A pack_format of 2 will load your mod resources with LegacyV2Adapter, which requires language files to have uppercase letters (eg: en_US.lang)."
|
||||
"description": "ExtBackup resources",
|
||||
"pack_format": 6,
|
||||
"_comment": "A pack_format of 6 requires json lang files and some texture changes from 1.16.2. Note: we require v6 pack meta for all mods."
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue