diff --git a/config default.yml b/config default.yml index 3934bc5..d56e9f2 100644 --- a/config default.yml +++ b/config default.yml @@ -1,12 +1,11 @@ general: delete_log_file_at_start: true callsign: XXXXX # Log4OM Callsign used to check if you get spotted by someone - QRALocator: JN36dg log_to_file: true log_level: INFO # INFO or DEBUG or WARN telnetserver: true # not in use for now - flexradiospot: true # not in use for now - sendFreqModeToLog4OM: false # if not using a Flex then turn this on to send Freq and Mode to Log4OM which should in turn change the freq on the radio + flexradiospot: true + send_freq_log: true # if not using a Flex then turn this on to send Freq and Mode to Log4OM which should in turn change the freq on the radio # Spot colors, if empty then default, colors in HEX AARRGGBB format spot_color_new_entity: background_color_new_entity: diff --git a/config.go b/config.go index 6a60939..f73dd66 100644 --- a/config.go +++ b/config.go @@ -18,8 +18,8 @@ type Config struct { LogLevel string `yaml:"log_level"` TelnetServer bool `yaml:"telnetserver"` FlexRadioSpot bool `yaml:"flexradiospot"` + SendFreqModeToLog bool `yaml:"send_freq_log"` SpotColorNewEntity string `yaml:"spot_color_new_entity"` - sendFreqModeToLog4OM bool `yaml:"sendFreqModeToLog4OM"` BackgroundColorNewEntity string `yaml:"background_color_new_entity"` SpotColorNewBand string `yaml:"spot_color_new_band"` BackgroundColorNewBand string `yaml:"background_color_new_band"` diff --git a/frontend/src/components/SpotsTable.svelte b/frontend/src/components/SpotsTable.svelte index 9f02de5..0ba2423 100644 --- a/frontend/src/components/SpotsTable.svelte +++ b/frontend/src/components/SpotsTable.svelte @@ -60,12 +60,12 @@