initialize generic rms-software repository
Add the reusable RMS core application (server, web UI, plugins, tests, tools) with generic defaults, GPL licensing, and maintainer context documentation so deployments can consume this repo as software source independent of station-specific overlays.
This commit is contained in:
42
plugins/rms.openwebrx.bandmap/manifest.json
Normal file
42
plugins/rms.openwebrx.bandmap/manifest.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id": "rms.openwebrx.bandmap",
|
||||
"name": "OpenWebRX Bandmap",
|
||||
"version": "1.0.0",
|
||||
"apiVersion": "1.0",
|
||||
"capabilities": [
|
||||
"openwebrx.band.read",
|
||||
"openwebrx.band.set"
|
||||
],
|
||||
"settingsSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"csvPath": { "type": "string" },
|
||||
"configFilePath": { "type": "string" },
|
||||
"setCommandTemplate": { "type": "string" },
|
||||
"stateFilePath": { "type": "string" },
|
||||
"timeoutMs": { "type": "integer", "minimum": 1000 }
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"uiControls": [
|
||||
{
|
||||
"controlId": "openwebrx-bandmap",
|
||||
"controlType": "switch.group",
|
||||
"title": "OpenWebRX Band",
|
||||
"capability": "openwebrx.band.set",
|
||||
"actions": [
|
||||
{
|
||||
"name": "setBand",
|
||||
"inputSchema": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"band": { "type": "string" }
|
||||
},
|
||||
"required": ["band"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user