mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Effects Configurator (#281)
* update translation * add css * Update JsonClientConnection.cpp * add effectscreator * remove udp * fix title c/p issue for sparks [skip ci] * update schemas [skip ci] * typo [skpi ci]
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
"color-start": {
|
||||
"type": "array",
|
||||
"title":"Color Start",
|
||||
"default": "255,174,11",
|
||||
"default": [255,174,11],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
@@ -27,7 +27,7 @@
|
||||
"color-end": {
|
||||
"type": "array",
|
||||
"title":"Color End",
|
||||
"default": "100,100,100",
|
||||
"default": [100,100,100],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
|
@@ -21,7 +21,7 @@
|
||||
"color": {
|
||||
"type": "array",
|
||||
"title":"Color",
|
||||
"default": "255,0,0",
|
||||
"default": [255,0,0],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
|
@@ -7,7 +7,7 @@
|
||||
"color": {
|
||||
"type": "array",
|
||||
"title":"Color",
|
||||
"default": "255,0,0",
|
||||
"default": [255,0,0],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
|
@@ -7,7 +7,7 @@
|
||||
"color_one": {
|
||||
"type": "array",
|
||||
"title":"Color one",
|
||||
"default": "255,0,0",
|
||||
"default": [255,0,0],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
@@ -20,7 +20,7 @@
|
||||
"color_two": {
|
||||
"type": "array",
|
||||
"title":"Color two",
|
||||
"default": "0,0,255",
|
||||
"default": [0,0,255],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
|
@@ -14,7 +14,7 @@
|
||||
"alarm-color": {
|
||||
"type": "array",
|
||||
"title":"Alarm color",
|
||||
"default": "255,0,0",
|
||||
"default": [255,0,0],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
@@ -27,7 +27,7 @@
|
||||
"post-color": {
|
||||
"type": "array",
|
||||
"title":"Post color",
|
||||
"default": "255,174,11",
|
||||
"default": [255,174,11],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
|
@@ -7,7 +7,7 @@
|
||||
"color": {
|
||||
"type": "array",
|
||||
"title":"Color",
|
||||
"default": "255,0,0",
|
||||
"default": [255,0,0],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
|
@@ -7,7 +7,7 @@
|
||||
"color_one": {
|
||||
"type": "array",
|
||||
"title":"Color",
|
||||
"default": "255,0,0",
|
||||
"default": [255,0,0],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
@@ -26,21 +26,21 @@
|
||||
},
|
||||
"sleep-time": {
|
||||
"type": "number",
|
||||
"title":"Rotation time",
|
||||
"title":"Sleep time",
|
||||
"default": 0.05,
|
||||
"minimum" : 0.01,
|
||||
"propertyOrder" : 3
|
||||
},
|
||||
"brightness": {
|
||||
"type": "number",
|
||||
"title":"Rotation time",
|
||||
"title":"Brightness",
|
||||
"default": 1.0,
|
||||
"minimum" : 0.01,
|
||||
"propertyOrder" : 4
|
||||
},
|
||||
"saturation": {
|
||||
"type": "number",
|
||||
"title":"Rotation time",
|
||||
"title":"Saturation",
|
||||
"default": 1.0,
|
||||
"minimum" : 0.01,
|
||||
"propertyOrder" : 5
|
||||
|
@@ -7,7 +7,7 @@
|
||||
"color": {
|
||||
"type": "array",
|
||||
"title":"Color",
|
||||
"default": "255,0,0",
|
||||
"default": [255,0,0],
|
||||
"items" : {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
|
@@ -1,22 +0,0 @@
|
||||
{
|
||||
"type":"object",
|
||||
"script" : "udp.py",
|
||||
"title":"UDP listener",
|
||||
"required":true,
|
||||
"properties":{
|
||||
"ListenPort": {
|
||||
"type": "Integer",
|
||||
"title":"Listen Port",
|
||||
"default": 2801,
|
||||
"minimum" : 1,
|
||||
"propertyOrder" : 1
|
||||
},
|
||||
"ListenIP": {
|
||||
"type": "string",
|
||||
"title":"Listen IP",
|
||||
"default": "",
|
||||
"propertyOrder" : 2
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
Reference in New Issue
Block a user