Cleaned up waterfall theme names.

This commit is contained in:
Marat Fayzullin 2024-06-15 12:58:18 -04:00
parent 1a26b6fcde
commit a8a7e8407a
2 changed files with 4 additions and 4 deletions

View File

@ -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 = []

View File

@ -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):