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
64 lines
1007 B
JSON
64 lines
1007 B
JSON
{
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "object",
|
|
"required": true,
|
|
"properties": {
|
|
"hmin": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 1,
|
|
"required": true,
|
|
"default": 0
|
|
},
|
|
"hmax": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 1,
|
|
"required": true,
|
|
"default": 0.1
|
|
},
|
|
"vmin": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 1,
|
|
"required": true,
|
|
"default": 0
|
|
},
|
|
"vmax": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 1,
|
|
"required": true,
|
|
"default": 0.1
|
|
},
|
|
"colorOrder": {
|
|
"type": "string",
|
|
"enum": [
|
|
"rgb",
|
|
"bgr",
|
|
"rbg",
|
|
"brg",
|
|
"gbr",
|
|
"grb"
|
|
],
|
|
"options": {
|
|
"enum_titles": [
|
|
"edt_conf_enum_rgb",
|
|
"edt_conf_enum_bgr",
|
|
"edt_conf_enum_rbg",
|
|
"edt_conf_enum_brg",
|
|
"edt_conf_enum_gbr",
|
|
"edt_conf_enum_grb"
|
|
]
|
|
}
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
}
|