diff --git a/docs/_config.yml b/docs/_config.yml index 754a9cdf..26694e9b 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,4 +1,4 @@ -title: Fabricate 0.10.22 +title: Fabricate 0.10.23 email: matt@misterpotts.uk description: >- End user documentation for the Foundry Virtual Tabletop (VTT) Module, "Fabricate". diff --git a/package.json b/package.json index 804474b3..2c8959e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fabricate", - "version": "0.10.22", + "version": "0.10.23", "description": "A system-agnostic, flexible crafting module for FoundryVT", "main": "index.js", "type": "module", diff --git a/src/scripts/module.ts b/src/scripts/module.ts index 8e78d73a..45966853 100644 --- a/src/scripts/module.ts +++ b/src/scripts/module.ts @@ -12,6 +12,7 @@ import {FabricateUserInterfaceAPI} from "./api/FabricateUserInterfaceAPI"; import {DefaultFabricatePatreonAPIFactory} from "./patreon/PatreonAPIFactory"; import {DefaultPatreonFeature} from "./patreon/PatreonFeature"; import {FabricatePatreonAPI} from "./patreon/FabricatePatreonAPI"; +import {SettingVersion} from "./repository/migration/SettingVersion"; let fabricateAPI: FabricateAPI; let fabricateUserInterfaceAPI: FabricateUserInterfaceAPI; @@ -38,7 +39,7 @@ Hooks.once('ready', async () => { [Properties.settings.essences.key, { entities: {}, collections: {} }], [Properties.settings.components.key, { entities: {}, collections: {} }], [Properties.settings.craftingSystems.key, { entities: {}, collections: {} }], - [Properties.settings.modelVersion.key, ""], + [Properties.settings.modelVersion.key, SettingVersion.V3], ]) });