diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 0f5b687..9be880b 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,3 @@ +github: mclemente ko_fi: mclemente custom: https://www.paypal.com/donate/?hosted_button_id=UVFV99HDGE5F8 diff --git a/module.json b/module.json index fdc0246..a00be42 100644 --- a/module.json +++ b/module.json @@ -40,12 +40,8 @@ "path": "lang/fi.json" } ], - "esmodules": [ - "party-overview.js" - ], - "styles": [ - "style/party-overview.css" - ], + "esmodules": ["party-overview.js"], + "styles": ["style/party-overview.css"], "url": "http://github.com/mclemente/party-overview", "bugs": "http://github.com/mclemente/party-overview/issues", "manifest": "https://github.com/mclemente/party-overview/releases/latest/download/module.json", @@ -53,19 +49,11 @@ "authors": [ { "name": "Matheus Clemente", - "discord": "mclemente#5524" - }, - { - "name": "Sebastian Will", - "email": "vttassets@gmail.com" - }, - { - "name": "Chris Wachal", - "discord": "Zamrod#9326" + "discord": "mclemente" } ], "compatibility": { "minimum": "10", - "verified": "11" + "verified": "12" } -} \ No newline at end of file +} diff --git a/module/logic.js b/module/logic.js index 279b1ea..9a45797 100644 --- a/module/logic.js +++ b/module/logic.js @@ -95,7 +95,7 @@ class PartyOverviewApp extends Application { } static get defaultOptions() { - return mergeObject(super.defaultOptions, { + return foundry.utils.mergeObject(super.defaultOptions, { width: currentSystemProvider.width, height: "fit-content", resizable: true, diff --git a/module/settings.js b/module/settings.js index e9fa7b4..4de4b48 100644 --- a/module/settings.js +++ b/module/settings.js @@ -50,7 +50,7 @@ export class SystemProviderSettings extends FormApplication { * Default Options for this FormApplication */ static get defaultOptions() { - return mergeObject(super.defaultOptions, { + return foundry.utils.mergeObject(super.defaultOptions, { id: "party-overview-form", title: "Party Overview System Settings", template: "./modules/party-overview/templates/SystemProviderSettings.hbs",