Initial commit

This commit is contained in:
root
2026-01-19 17:44:46 +01:00
commit 823af8b11d
8721 changed files with 1130846 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
{
"options": {
"fields": {
"title": {
"type": "varchar",
"required": true
},
"autorefreshInterval": {
"type": "enumFloat",
"options": [0, 0.5, 1, 2, 5, 10]
},
"displayRecords": {
"type": "int",
"min": 1,
"max": 20
},
"skipOwn": {
"type": "bool",
"tooltip": true
}
},
"defaults": {
"displayRecords": 10,
"autorefreshInterval": 0.5,
"skipOwn": false
},
"layout": [
{
"rows": [
[
{"name": "title"}
],
[
{"name": "displayRecords"},
{"name": "autorefreshInterval"}
],
[
{"name": "skipOwn"},
false
]
]
}
]
}
}