mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
* Refactor config API * Corrections * Test Qt 6.8 * Revert "Test Qt 6.8" This reverts commit eceebec49ecf1a3eda281a0630a9a7577b44ef0a. * Corrections 2 * Update Changelog * Add configFilter element for getconfig call * Do not create errors for DB updates when in read-only mode * Have configuration migration and validation before Hyperion starts * Correct Tests * Corrections * Add migration items * Correct windows build * Ensure that first instance as default one exists * Remove dependency between AuthManager and SSDPHandler * Correct typos * Address CodeQL findings * Replace CamkeSettings by Presets and provide debug scenarios
70 lines
1.3 KiB
JSON
70 lines
1.3 KiB
JSON
{
|
|
"type" : "object",
|
|
"title" : "edt_conf_fge_heading_title",
|
|
"properties" :
|
|
{
|
|
"enable" :
|
|
{
|
|
"type" : "boolean",
|
|
"title" : "edt_conf_general_enable_title",
|
|
"required" : true,
|
|
"default" : true,
|
|
"propertyOrder" : 1
|
|
},
|
|
"type" :
|
|
{
|
|
"type" : "string",
|
|
"title" : "edt_conf_fge_type_title",
|
|
"enum" : ["color", "effect"],
|
|
"default" : "effect",
|
|
"options" : {
|
|
"enum_titles" : ["edt_conf_enum_color", "edt_conf_enum_effect"]
|
|
},
|
|
"propertyOrder" : 2
|
|
},
|
|
"color" :
|
|
{
|
|
"type" : "array",
|
|
"format" : "colorpicker",
|
|
"title" : "edt_conf_fge_color_title",
|
|
"default" : [255,0,0],
|
|
"items" : {
|
|
"type" : "integer",
|
|
"minimum" : 0,
|
|
"maximum" : 255,
|
|
"default" : 0
|
|
},
|
|
"minItems" : 3,
|
|
"maxItems" : 3,
|
|
"propertyOrder" : 3,
|
|
"options": {
|
|
"dependencies": {
|
|
"type": "color"
|
|
}
|
|
}
|
|
},
|
|
"effect" :
|
|
{
|
|
"type" : "string",
|
|
"format" : "select",
|
|
"title" : "edt_conf_fge_effect_title",
|
|
"propertyOrder" : 4,
|
|
"options": {
|
|
"dependencies": {
|
|
"type": "effect"
|
|
}
|
|
}
|
|
},
|
|
"duration_ms" :
|
|
{
|
|
"type" : "integer",
|
|
"title" : "edt_conf_fge_duration_ms_title",
|
|
"default" : 3000,
|
|
"minimum" : 100,
|
|
"append" : "edt_append_ms",
|
|
"propertyOrder" : 5
|
|
}
|
|
},
|
|
"additionalProperties" : false
|
|
}
|