This commit is contained in:
Cristian Deenen
2022-09-07 04:55:51 +02:00
parent 9a7088a310
commit 631fdbcccb
3 changed files with 12 additions and 4 deletions

View File

@@ -1,6 +1,11 @@
# Changelog Material Deck Module
### v1.4.11 - 05-09-2022
### v1.4.12 - 07-09-2022
Fixes:
<ul>
<li>Some settings did not have a default value, which caused errors for new users in v10</li>
</ul>
### v1.4.11 - 05-09-2022
Fixes:
<ul>
<li>Fixed system autodetection bug, where it would not always correctly detect the system</li>

View File

@@ -1,8 +1,9 @@
{
"name": "MaterialDeck",
"id": "MaterialDeck",
"title": "Material Deck",
"description": "Material Deck allows you to control Foundry using an Elgato Stream Deck",
"version": "1.4.11",
"version": "1.4.12",
"author": "CDeenen",
"authors": {
"name": "CDeenen",

View File

@@ -175,7 +175,8 @@ export const registerSettings = async function() {
name: "devices",
scope: "client",
type: Object,
config: false
config: false,
default: {}
});
game.settings.registerMenu(moduleName, 'permissionConfig',{
@@ -234,7 +235,8 @@ export const registerSettings = async function() {
name: "macroArgs",
scope: "world",
type: Object,
config: false
config: false,
default: {}
});
/**