|
1 |
| -# This is an example mods.toml file. It contains the data relating to the loading mods. |
2 |
| -# There are several mandatory fields (#mandatory), and many more that are optional (#optional). |
3 |
| -# The overall format is standard TOML format, v0.5.0. |
4 |
| -# Note that there are a couple of TOML lists in this file. |
5 |
| -# Find more information on toml format here: https://github.com/toml-lang/toml |
6 |
| - |
7 | 1 | # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
|
8 |
| -modLoader="javafml" #mandatory |
| 2 | +modLoader="javafml" |
9 | 3 |
|
10 | 4 | # A version range to match for said mod loader - for regular FML @Mod it will be the forge version
|
11 |
| -loaderVersion="[28,)" |
| 5 | +loaderVersion="[36,)" # 36 = 1.16.5 |
| 6 | + |
| 7 | +# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. |
| 8 | +license="GNU GPL v3" |
12 | 9 |
|
13 | 10 | # A URL to refer people to when problems occur with this mod
|
14 |
| -issueTrackerURL="http://my.issue.tracker/" #optional |
| 11 | +issueTrackerURL="https://github.com/waffle-stomper/Ghostwriter/issues" |
15 | 12 |
|
16 | 13 | # A list of mods - how many allowed here is determined by the individual mod loader
|
17 |
| -[[mods]] #mandatory |
18 |
| - modId="ghostwriter" #mandatory |
| 14 | +[[mods]] |
| 15 | + modId="ghostwriter" |
19 | 16 | version="${file.jarVersion}"
|
20 | 17 | displayName="Ghostwriter"
|
21 | 18 | updateJSONURL="https://raw.githubusercontent.com/waffle-stomper/Ghostwriter/master/update.json"
|
22 | 19 | displayURL="https://github.com/waffle-stomper/Ghostwriter"
|
23 | 20 | logoFile="icon.png"
|
24 |
| - credits="maester_flaminius, SortByNode, and all of the other wonderful people I've met through Minecraft" |
25 |
| - authors="waffle_stomper and maester_flaminius" #optional |
| 21 | + credits="maester_flaminius, SortByNode, Lodish, and all of the other wonderful people I've met through Minecraft" |
| 22 | + authors="waffle_stomper and maester_flaminius" |
26 | 23 | description='''
|
27 | 24 | Utility for dealing with books (backup, restore, copy, paste, etc.).
|
28 | 25 | '''
|
29 | 26 |
|
30 | 27 | [[dependencies.ghostwriter]]
|
31 | 28 | modId="forge"
|
32 | 29 | mandatory=true
|
33 |
| - versionRange="[32.0.108,)" |
| 30 | + versionRange="[36,)" # 36 = 1.16.5 |
34 | 31 | ordering="NONE"
|
35 | 32 | side="CLIENT"
|
36 | 33 | [[dependencies.ghostwriter]]
|
37 | 34 | modId="minecraft"
|
38 | 35 | mandatory=true
|
39 |
| - versionRange="[1.16.1]" |
| 36 | + versionRange="[1.16.5,1.17]" |
40 | 37 | ordering="NONE"
|
41 | 38 | side="CLIENT"
|
0 commit comments