v1.4.12
This commit is contained in:
@@ -1,6 +1,11 @@
|
|||||||
# Changelog Material Deck Module
|
# 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:
|
Fixes:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Fixed system autodetection bug, where it would not always correctly detect the system</li>
|
<li>Fixed system autodetection bug, where it would not always correctly detect the system</li>
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
{
|
{
|
||||||
"name": "MaterialDeck",
|
"name": "MaterialDeck",
|
||||||
|
"id": "MaterialDeck",
|
||||||
"title": "Material Deck",
|
"title": "Material Deck",
|
||||||
"description": "Material Deck allows you to control Foundry using an Elgato Stream Deck",
|
"description": "Material Deck allows you to control Foundry using an Elgato Stream Deck",
|
||||||
"version": "1.4.11",
|
"version": "1.4.12",
|
||||||
"author": "CDeenen",
|
"author": "CDeenen",
|
||||||
"authors": {
|
"authors": {
|
||||||
"name": "CDeenen",
|
"name": "CDeenen",
|
||||||
|
|||||||
@@ -175,7 +175,8 @@ export const registerSettings = async function() {
|
|||||||
name: "devices",
|
name: "devices",
|
||||||
scope: "client",
|
scope: "client",
|
||||||
type: Object,
|
type: Object,
|
||||||
config: false
|
config: false,
|
||||||
|
default: {}
|
||||||
});
|
});
|
||||||
|
|
||||||
game.settings.registerMenu(moduleName, 'permissionConfig',{
|
game.settings.registerMenu(moduleName, 'permissionConfig',{
|
||||||
@@ -234,7 +235,8 @@ export const registerSettings = async function() {
|
|||||||
name: "macroArgs",
|
name: "macroArgs",
|
||||||
scope: "world",
|
scope: "world",
|
||||||
type: Object,
|
type: Object,
|
||||||
config: false
|
config: false,
|
||||||
|
default: {}
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user