mods.toml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
  7. modLoader="javafml" #mandatory
  8. # A version range to match for said mod loader - for regular FML @Mod it will be the forge version
  9. loaderVersion="[29,)" #mandatory (24 is current forge version)
  10. # A URL to refer people to when problems occur with this mod
  11. issueTrackerURL="https://github.com/shedaniel/LightOverlay-Forge/issues/" #optional
  12. # A URL for the "homepage" for this mod, displayed in the mod UI
  13. displayURL="http://shedaniel.me/" #optional
  14. # A file name (in the root of the mod JAR) containing a logo for display
  15. logoFile="lightoverlay_icon_lowres.png" #optional
  16. # A text field displayed in the mod UI
  17. credits="" #optional
  18. # A text field displayed in the mod UI
  19. authors="Danielshe" #optional
  20. # A list of mods - how many allowed here is determined by the individual mod loader
  21. [[mods]] #mandatory
  22. # The modid of the mod
  23. modId="lightoverlay-forge" #mandatory
  24. # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
  25. version="${file.jarVersion}" #mandatory
  26. # A display name for the mod
  27. displayName="Light Overlay Forge" #mandatory
  28. # A URL to query for updates for this mod. See the JSON update specification <here>
  29. # updateJSONURL="http://myurl.me/" #optional
  30. # The description text for the mod (multi line!) (#mandatory)
  31. description='''
  32. To provide users with NEI-like light overlay.
  33. '''
  34. [[dependencies.lightoverlay-forge]] #optional
  35. # the modid of the dependency
  36. modId="cloth-config2" #mandatory
  37. # Does this dependency have to exist - if not, ordering below must be specified
  38. mandatory=true #mandatory
  39. # The version range of the dependency
  40. versionRange="[2.0,)" #mandatory
  41. ordering="NONE"
  42. # Side this dependency is applied on - BOTH, CLIENT or SERVER
  43. side="CLIENT"