jopeek / fvtt-token-info-icons

FVTT - Token Info Icons
MIT License
9 stars 16 forks source link

Remove V10 warnings #41

Closed farling42 closed 1 year ago

farling42 commented 1 year ago

Warnings are generated by module.json:

setup.js:145 [token-info-icons] The module "token-info-icons" is using "name" which is deprecated in favor of "id"
#logPackageWarnings @ setup.js:145
setup.js:145 [token-info-icons] The module "token-info-icons" is using "author" which is deprecated in favor of "authors"
#logPackageWarnings @ setup.js:145
setup.js:145 [token-info-icons] module "token-info-icons" contains "system" which is deprecated in favor of "relationships.systems"
#logPackageWarnings @ setup.js:145
setup.js:145 [token-info-icons] The module "token-info-icons" is using the old flat core compatibility fields which are deprecated in favor of the new "compatibility" object

The following version would be compatible with V8 up to V10: (adding "id", "authors", "compatibility", and "relationship")

{
  "name": "token-info-icons",
  "id": "token-info-icons",
  "title": "Token Info Icons",
  "description": "Simple module that displays Speed, AC, and Passive Perception on Tokens for the GM or optionally players.",
  "version": "2.3.9",
  "minimumCoreVersion": "0.8.0",
  "compatibleCoreVersion": "10",
  "author": "Jan Ole Peek (ChalkOne)",
  "authors": [ { "name" : "Jan Ole Peek (ChalkOne)" } ],
  "system": [
    "dnd5e",
    "pf2e",
    "pf1",
    "dcc"
  ],
  "compatibility" : {
    "minimum" : "0.8.0",
    "verified" : "10"
  },
  "relationships" : {
    "systems" : [
      { "id" : "dnd5e", "type": "system" },
      { "id" : "pf2e", "type": "system" },
      { "id" : "pf1", "type": "system" },
      { "id" : "dcc", "type": "system" }
    ]
  },
  "scripts": [
    "/token-info-icons.js"
  ],
  "styles": [
    "/css/token-info-icons.css"
  ],
  "url": "https://github.com/jopeek/fvtt-token-info-icons",
  "manifest": "https://raw.githubusercontent.com/jopeek/fvtt-token-info-icons/master/module.json",
  "download": "https://github.com/jopeek/fvtt-token-info-icons/archive/refs/heads/master.zip"
}
jopeek commented 1 year ago

Thanks, I made those changes directly to master, so you'll have to reinstall the module if you want to get the latest version.