add js8 settings to web configuration

This commit is contained in:
Jakob Ketterl
2020-04-25 17:33:30 +02:00
parent 978eea400d
commit 2198c00d00
2 changed files with 23 additions and 2 deletions

View File

@ -11,6 +11,7 @@ from owrx.form import (
DropdownInput,
Option,
ServicesCheckboxInput,
Js8ProfileCheckboxInput,
)
import logging
@ -145,14 +146,23 @@ class SettingsController(AdminController):
),
),
Section(
"WSJT-X settings",
"Decoding settings",
NumberInput("decoding_queue_workers", "Number of decoding workers"),
NumberInput("decoding_queue_length", "Maximum length of decoding job queue"),
NumberInput(
"wsjt_decoding_depth",
"WSJT decoding depth",
"Default WSJT decoding depth",
infotext="A higher decoding depth will allow more results, but will also consume more cpu",
),
NumberInput(
"js8_decoding_depth",
"Js8Call decoding depth",
infotext="A higher decoding depth will allow more results, but will also consume more cpu",
),
Js8ProfileCheckboxInput(
"js8_enabled_profiles",
"Js8Call enabled modes"
),
),
Section(
"Background decoding",