[feat](trx-frontend-http): expand background decode selection

Co-authored-by: OpenAI Codex <codex@openai.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-12 22:57:25 +01:00
parent 34d0ec8ca8
commit 95fccd3da6
6 changed files with 40 additions and 5 deletions
@@ -5,7 +5,7 @@
(function () {
"use strict";
const SUPPORTED_DECODERS = ["ft8", "wspr", "hf-aprs"];
const SUPPORTED_DECODERS = ["aprs", "ais", "ft8", "wspr", "hf-aprs"];
let backgroundDecodeRole = null;
let currentRigId = null;
@@ -303,6 +303,7 @@
case "no_supported_decoders": return "Unsupported";
case "disabled": return "Disabled";
case "handled_by_scheduler": return "Scheduler";
case "handled_by_virtual_channel": return "VChan";
default: return "Inactive";
}
}