Reimplement update checker
This commit is contained in:
parent
ae176e6c1f
commit
2ac439f99e
1 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,6 @@
|
||||||
modLoader="javafml" #mandatory
|
modLoader="javafml" #mandatory
|
||||||
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
|
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
|
||||||
loaderVersion="[24,)" #mandatory (24 is current forge version)
|
loaderVersion="[24,)" #mandatory (24 is current forge version)
|
||||||
# A URL to query for updates for this mod. See the JSON update specification <here>
|
|
||||||
updateJSONURL="http://myurl.me/" #optional
|
|
||||||
# A URL to refer people to when problems occur with this mod
|
# A URL to refer people to when problems occur with this mod
|
||||||
issueTrackerURL="http://my.issue.tracker/" #optional
|
issueTrackerURL="http://my.issue.tracker/" #optional
|
||||||
# A URL for the "homepage" for this mod, displayed in the mod UI
|
# A URL for the "homepage" for this mod, displayed in the mod UI
|
||||||
|
@ -27,6 +25,8 @@ modId="examplemod" #mandatory
|
||||||
version="${file.jarVersion}" #mandatory
|
version="${file.jarVersion}" #mandatory
|
||||||
# A display name for the mod
|
# A display name for the mod
|
||||||
displayName="Example Mod" #mandatory
|
displayName="Example Mod" #mandatory
|
||||||
|
# A URL to query for updates for this mod. See the JSON update specification <here>
|
||||||
|
updateJSONURL="http://myurl.me/" #optional
|
||||||
# The description text for the mod (multi line!) (#mandatory)
|
# The description text for the mod (multi line!) (#mandatory)
|
||||||
description='''
|
description='''
|
||||||
This is a long form description of the mod. You can write whatever you want here
|
This is a long form description of the mod. You can write whatever you want here
|
||||||
|
|
Loading…
Reference in a new issue