From 70521f34d56b53347c5584fb1786d15816dbd6f2 Mon Sep 17 00:00:00 2001 From: Anthony Vadala Date: Fri, 21 Oct 2022 15:02:47 -0400 Subject: [PATCH] Updated to new manifest format and support for v10 --- module.json | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/module.json b/module.json index 3273f57..42e711e 100644 --- a/module.json +++ b/module.json @@ -1,82 +1,88 @@ { - "name": "foundry_community_macros", + "id": "foundry_community_macros", "title": "Foundry Community Macros", "description": "

This is a collection of Macros added by the FoundryVTT Community!

You can add your own macros by making a pull request here: https://github.com/foundry-vtt-community/macros

", - "version": "9.19", - "author": "FoundryVTTCommunity", + "version": "10.1", + "authors": [ + { + "name": "FoundryVTTCommunity" + } + ], "packs": [ { "name": "community-macros-5e", "label": "FVTT Community Macros - D&D 5e", "path": "packs/macros-5e.db", "module": "foundry_community_macros", - "entity": "Macro" + "type": "Macro" }, { "name": "community-macros-age", "label": "FVTT Community Macros - AGE System", "path": "packs/macros-age.db", "module": "foundry_community_macros", - "entity": "Macro" + "type": "Macro" }, { "name": "community-macros-pf1e", "label": "FVTT Community Macros - Pathfinder 1e", "path": "packs/macros-pf1e.db", "module": "foundry_community_macros", - "entity": "Macro" + "type": "Macro" }, { "name": "community-macros-pf2e", "label": "FVTT Community Macros - Pathfinder 2e", "path": "packs/macros-pf2e.db", "module": "foundry_community_macros", - "entity": "Macro" + "type": "Macro" }, { "name": "community-macros-misc", "label": "FVTT Community Macros - Misc", "path": "packs/macros-misc.db", "module": "foundry_community_macros", - "entity": "Macro" + "type": "Macro" }, { "name": "community-macros-module-specific", "label": "FVTT Community Macros - Module Specific", "path": "packs/macros-module-specific.db", "module": "foundry_community_macros", - "entity": "Macro" + "type": "Macro" }, { "name": "community-macros-roll", "label": "FVTT Community Macros - Roll", "path": "packs/macros-roll.db", "module": "foundry_community_macros", - "entity": "Macro" + "type": "Macro" }, { "name": "community-macros-token", "label": "FVTT Community Macros - Token", "path": "packs/macros-token.db", "module": "foundry_community_macros", - "entity": "Macro" + "type": "Macro" }, { "name": "community-macros-wfrp4e", "label": "FVTT Community Macros - Warhammer 4e", "path": "packs/macros-wfrp4e.db", "module": "foundry_community_macros", - "entity": "Macro" + "type": "Macro" } ], "url": "https://github.com/foundry-vtt-community/macros", "manifest": "https://raw.githubusercontent.com/foundry-vtt-community/macros/main/module.json", - "download": "https://github.com/foundry-vtt-community/macros/archive/refs/tags/v9.19.zip", + "download": "https://github.com/foundry-vtt-community/macros/archive/refs/tags/v10.1.zip", "bugs": "https://github.com/foundry-vtt-community/macros/issues", "readme": "https://raw.githubusercontent.com/foundry-vtt-community/macros/main/README.md", "changelog": "https://github.com/foundry-vtt-community/macros/releases", "license": "https://raw.githubusercontent.com/foundry-vtt-community/macros/main/LICENSE.md", "socket": true, - "minimumCoreVersion": "9", - "compatibleCoreVersion": "9" + "compatibility": { + "minimum": "10", + "verified": "10" + } }