This commit is contained in:
Byroks 2024-01-20 15:31:35 +01:00
parent 2bfd3a7d6a
commit 33c65735bd
3 changed files with 31 additions and 11 deletions

View File

@ -423,7 +423,7 @@ const updateManifest = (cb: any) => {
cb(Error("Manifest JSON not found")); cb(Error("Manifest JSON not found"));
return; return;
} }
if (!rawURL || !repoURL) cb(Error("Repository URLs not configured in foundryconfig.json")); if (!repoURL) cb(Error("Repository URLs not configured in foundryconfig.json"));
try { try {
const version = argv.update || argv.u; const version = argv.update || argv.u;

View File

@ -1,6 +1,6 @@
{ {
"name": "foundry-system-midgard5", "name": "foundry-system-midgard5",
"version": "2.3.1", "version": "2.4.0",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -3,13 +3,17 @@
"name": "midgard5", "name": "midgard5",
"title": "Midgard 5. Edition", "title": "Midgard 5. Edition",
"description": "The German RPG Midgard 5. Edition", "description": "The German RPG Midgard 5. Edition",
"version": "2.3.1", "version": "2.4.0",
"compatibility": { "compatibility": {
"minimum": "10", "minimum": "10",
"verified": "11", "verified": "11",
"maximum": "11" "maximum": "11"
}, },
"authors": [{ "name": "Byroks" }, { "name": "Le-Frique" }, { "name": "Oskaloq" }], "authors": [
{"name": "Byroks"},
{"name": "Le-Frique"},
{"name": "Oskaloq"}
],
"scripts": ["bundle.js"], "scripts": ["bundle.js"],
"styles": ["bundle.css"], "styles": ["bundle.css"],
"packs": [ "packs": [
@ -103,25 +107,41 @@
"name": "Midgard 5", "name": "Midgard 5",
"sorting": "a", "sorting": "a",
"color": "#0000FF", "color": "#0000FF",
"packs": ["blaupause-spielfiguren", "tabellen-kritische-ereignisse", "makros-kritische-ereignisse", "makros-standardwurfel"], "packs": [
"blaupause-spielfiguren",
"tabellen-kritische-ereignisse",
"makros-kritische-ereignisse",
"makros-standardwurfel"
],
"folders": [ "folders": [
{ {
"name": "Ausrüstung", "name": "Ausrüstung",
"sorting": "a", "sorting": "a",
"color": "#008000", "color": "#008000",
"packs": ["ausruestung", "ruestkammer", "waffenkammer"] "packs": [
"ausruestung",
"ruestkammer",
"waffenkammer"
]
}, },
{ {
"name": "Effekte", "name": "Effekte",
"sorting": "a", "sorting": "a",
"color": "#800080", "color": "#800080",
"packs": ["kampfzustaende", "verletzungen", "zauberwirkungen"] "packs": [
"kampfzustaende",
"verletzungen",
"zauberwirkungen"
]
}, },
{ {
"name": "Fähigkeiten", "name": "Fähigkeiten",
"sorting": "a", "sorting": "a",
"color": "#800000", "color": "#800000",
"packs": ["fertigkeiten", "kampf"] "packs": [
"fertigkeiten",
"kampf"
]
} }
] ]
} }
@ -138,8 +158,8 @@
"primaryTokenAttribute": "lp", "primaryTokenAttribute": "lp",
"secondaryTokenAttribute": "ap", "secondaryTokenAttribute": "ap",
"url": "https://git.byroks.de/MidgardVTT-Entwicklung/foundry-vtt-system-midgard5", "url": "https://git.byroks.de/MidgardVTT-Entwicklung/foundry-vtt-system-midgard5",
"manifest": "https://git.byroks.de/MidgardVTT-Entwicklung/foundry-vtt-system-midgard5/releases/download/v2.3.1/system.json", "manifest": "https://git.byroks.de/MidgardVTT-Entwicklung/foundry-vtt-system-midgard5/releases/download/v2.4.0/system.json",
"download": "https://git.byroks.de/MidgardVTT-Entwicklung/foundry-vtt-system-midgard5/releases/download/v2.3.1/midgard5-v2.3.1.zip", "download": "https://git.byroks.de/MidgardVTT-Entwicklung/foundry-vtt-system-midgard5/releases/download/v2.4.0/midgard5-v2.4.0.zip",
"initiative": "@c.calc.attributes.gw.value", "initiative": "@c.calc.attributes.gw.value",
"license": "LICENSE.txt" "license": "LICENSE.txt"
} }