mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
8a794039cf
* update
* update
* update
* .
* .
* .
* update
* .
* .
* .
* .
* update
* .
* update
* .
* update
* update
* update
* update
* update
* update
* .
* update
* update
* update
* .
* .
* .
* Revert "."
This reverts commit 4dd6404b32
.
* update
* .
* .
* .
* .
* .
* .
* .
* .
* .
* .
* .
* ...
* .
* .
* .
* .
* .
* .
* .
* .
* .
* update
* update
* update
* remove svg and pic
* colorpicker imgs to base64 to prevent delayed load if not cached
* fix json2python func
* update swirl with rgba
* add double swirl, tune default val in schema, update explanation
* adjust swirl.py
* FileObserver for config checks with timer as fallback (#4)
67 lines
1.2 KiB
JSON
67 lines
1.2 KiB
JSON
{
|
|
"type":"object",
|
|
"script" : "trails.py",
|
|
"title":"edt_eff_trails_header",
|
|
"required":true,
|
|
"properties":{
|
|
"min_len": {
|
|
"type": "integer",
|
|
"title":"edt_eff_min_len",
|
|
"default": 2,
|
|
"minimum" : 1,
|
|
"propertyOrder" : 1
|
|
},
|
|
"max_len": {
|
|
"type": "integer",
|
|
"title":"edt_eff_max_len",
|
|
"default": 7,
|
|
"minimum" : 1,
|
|
"propertyOrder" : 2
|
|
},
|
|
"height": {
|
|
"type": "integer",
|
|
"title":"edt_eff_height",
|
|
"default": 8,
|
|
"minimum" : 1,
|
|
"propertyOrder" : 3
|
|
},
|
|
"trails": {
|
|
"type": "integer",
|
|
"title":"edt_eff_count",
|
|
"default": 3,
|
|
"minimum" : 1,
|
|
"propertyOrder" : 4
|
|
},
|
|
"speed": {
|
|
"type": "integer",
|
|
"title":"edt_eff_speed",
|
|
"default": 100,
|
|
"minimum" : 10,
|
|
"append" : "edt_append_ms",
|
|
"propertyOrder" : 5
|
|
},
|
|
"random": {
|
|
"type": "boolean",
|
|
"title":"edt_eff_colorrandom",
|
|
"default": false,
|
|
"propertyOrder" : 6
|
|
},
|
|
"color": {
|
|
"type": "array",
|
|
"title":"edt_eff_color",
|
|
"format":"colorpicker",
|
|
"default": [255,0,0],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 7
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
|