Matrix Layout enhancements (#1701)

* Support gaps on Matrix Layout

* Ensure BlackBorder objects are initialised

* Update Changelog

* Fix automated semicolon insertion

* Fix automated semicolon insertion

* Remove SPI activation from post install script (#1708)
This commit is contained in:
LordGrey
2024-03-14 21:29:15 +01:00
committed by GitHub
parent fd5a94a32a
commit fedb409157
7 changed files with 163 additions and 69 deletions

View File

@@ -144,6 +144,30 @@
"start": {
"type": "string",
"enum": [ "top-left", "top-right", "bottom-left", "bottom-right" ]
},
"gapleft": {
"type": "integer",
"minimum": 0,
"maximum": 100,
"default": 0
},
"gapright": {
"type": "integer",
"minimum": 0,
"maximum": 100,
"default": 0
},
"gaptop": {
"type": "integer",
"minimum": 0,
"maximum": 100,
"default": 0
},
"gapbottom": {
"type": "integer",
"minimum": 0,
"maximum": 100,
"default": 0
}
},
"additionalProperties": false