Added character set setting for the pager messages.

This commit is contained in:
Marat Fayzullin 2024-04-16 20:45:16 -04:00
parent 4d0fdd3b5c
commit 149748c5f3
2 changed files with 19 additions and 4 deletions

View File

@ -203,6 +203,7 @@ defaultConfig = PropertyLayer(
mqtt_host="localhost",
mqtt_use_ssl=False,
paging_filter=True,
paging_charset="US",
eibi_bookmarks_range=0,
repeater_range=0,
adsb_ttl=900,

View File

@ -43,10 +43,6 @@ class DecodingSettingsController(SettingsFormController):
"wfm_rds_rbds",
"Decode USA-specific RBDS information from WFM broadcasts",
),
CheckboxInput(
"paging_filter",
"Filter out empty, numeric, or unreadable pager messages",
),
CheckboxInput(
"cw_showcw",
"Show CW codes (dits / dahs) when decoding CW",
@ -103,6 +99,24 @@ class DecodingSettingsController(SettingsFormController):
append="s",
),
),
Section(
"Paging messages",
DropdownInput(
"paging_charset",
"Message character set",
options=[
Option("US", "English (USA)"),
Option("FR", "French"),
Option("DE", "German"),
Option("SE", "Swedish"),
Option("SI", "Slovenian"),
],
),
CheckboxInput(
"paging_filter",
"Filter out empty, numeric, or unreadable pager messages",
),
),
Section(
"Fax transmissions",
NumberInput(