Cleaned up waterfall theme names.
This commit is contained in:
parent
1a26b6fcde
commit
a8a7e8407a
|
|
@ -4,6 +4,7 @@ from owrx.color import ColorCache
|
|||
from owrx.reporting import ReportingEngine
|
||||
from csdr.module import LineBasedModule
|
||||
from pycsdr.types import Format
|
||||
from owrx.dsame3.dsame import same_decode_string
|
||||
from datetime import datetime, timezone
|
||||
import pickle
|
||||
import os
|
||||
|
|
@ -382,7 +383,6 @@ class EasParser(TextParser):
|
|||
|
||||
def parse(self, msg: bytes):
|
||||
# Parse EAS SAME messages
|
||||
from owrx.dsame3.dsame import same_decode_string
|
||||
msg = msg.decode("utf-8", "replace")
|
||||
out = []
|
||||
|
||||
|
|
|
|||
|
|
@ -310,10 +310,10 @@ class CustomWaterfall(Waterfall):
|
|||
|
||||
class WaterfallOptions(DropdownEnum):
|
||||
DEFAULT = ("Google Turbo (OpenWebRX default)", GoogleTurboWaterfall)
|
||||
TEEJEEZ = ("Original theme by teejeez (default in OpenWebRX < 0.20)", TeejeezWaterfall)
|
||||
HA7ILM = ("Old theme by HA7ILM", Ha7ilmWaterfall)
|
||||
TEEJEEZ = ("Theme by Teejeez (default in OpenWebRX < 0.20)", TeejeezWaterfall)
|
||||
HA7ILM = ("Theme by Andras (HA7ILM)", Ha7ilmWaterfall)
|
||||
ZORAN = ("Theme by Zoran (9A6NDZ)", ZoranWaterfall)
|
||||
ECLIPSE = ("Eclipse by LZ2DMV and LZ4ZD", EclipseWaterfall)
|
||||
ECLIPSE = ("Eclipse by Dimitar (LZ2DMV) and LZ4ZD", EclipseWaterfall)
|
||||
CUSTOM = ("Custom", CustomWaterfall)
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
|
|
|
|||
Loading…
Reference in New Issue