mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
6279dcb2a9
* add dynamic smoothing first step * extend prio muxer to hold smoothing preset id * add icons for systray * fix missing changes in prio muxer * implement specific smoothing params for effects * refactoring: std::min/max to qMin/Max * some code optimization * fix schema and translation * revoke change of python include order * fix eol in effect shemas * optimize random,candle and fadecandy json schemas
41 lines
739 B
JSON
41 lines
739 B
JSON
{
|
|
"type":"object",
|
|
"script" : "knight-rider.py",
|
|
"title":"edt_eff_knightrider_header",
|
|
"required":true,
|
|
"properties":{
|
|
"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" : 1
|
|
},
|
|
"speed": {
|
|
"type": "number",
|
|
"title":"edt_eff_speed",
|
|
"default": 1.0,
|
|
"minimum": 0.1,
|
|
"step" : 0.1,
|
|
"propertyOrder" : 2
|
|
},
|
|
"fadeFactor": {
|
|
"type": "number",
|
|
"title":"edt_eff_fadefactor",
|
|
"default": 0.7,
|
|
"minimum" : 0.0,
|
|
"maximum" : 0.9,
|
|
"step" : 0.1,
|
|
"propertyOrder" : 3
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|