From bcb678d059e26f247727d6ea6226e58a06205d90 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Thu, 21 Aug 2025 00:45:07 +0200 Subject: [PATCH] Raised to minor version --- module/systemRegistration/migrations.mjs | 4 ++-- system.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/module/systemRegistration/migrations.mjs b/module/systemRegistration/migrations.mjs index 453f735f..54ebc816 100644 --- a/module/systemRegistration/migrations.mjs +++ b/module/systemRegistration/migrations.mjs @@ -2,7 +2,7 @@ export async function runMigrations() { let lastMigrationVersion = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LastMigrationVersion); if (!lastMigrationVersion) lastMigrationVersion = '1.0.6'; - if (versionCompare(lastMigrationVersion, '1.0.7')) { + if (versionCompare(lastMigrationVersion, '1.1.0')) { const compendiumActors = []; for (let pack of game.packs) { const documents = await pack.getDocuments(); @@ -32,7 +32,7 @@ export async function runMigrations() { actor.updateEmbeddedDocuments('Item', items); }); - lastMigrationVersion = '1.0.7'; + lastMigrationVersion = '1.1.0'; } await game.settings.set(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LastMigrationVersion, lastMigrationVersion); diff --git a/system.json b/system.json index b0dfbb2c..d72c53d5 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "id": "daggerheart", "title": "Daggerheart", "description": "An unofficial implementation of the Daggerheart system", - "version": "1.0.7", + "version": "1.1.0", "compatibility": { "minimum": "13", "verified": "13.347",