Make low fuel theshold configurable

This commit is contained in:
2026-06-01 21:02:26 -04:00
parent 34e2a9652f
commit aeeb5b0e79
4 changed files with 44 additions and 2 deletions
+32
View File
@@ -17,6 +17,38 @@ module.exports = [
"messageKey": "CLAY_SHOW_TIME_MG",
"defaultValue": false,
"label": "Show time segments midground"
},
{
"type": "select",
"messageKey": "CLAY_LOW_FUEL_BARS",
"defaultValue": 10,
"label": "Low fuel percentage",
"options": [
{
"label": "disabled",
"value": 21,
},
{
"label": "10%",
"value": 2,
},
{
"label": "20%",
"value": 4,
},
{
"label": "30%",
"value": 6,
},
{
"label": "40%",
"value": 8,
},
{
"label": "50%",
"value": 10,
}
]
}
]
},