Skip to content

Commit

Permalink
Fix missing Canadian sections.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbridak committed Jun 26, 2023
1 parent 4ff9a22 commit 9e6612e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ brother.

## Recent Changes

- [23.6.24] Fix 6M CW default frequency.
- [23.6.25] Fixed missing Canadian sections.
- [23.6.24] Fix 6M CW default frequency. Wierdness with VFO fixed.
- [23.6.23] Entering freq in Khz in the callsign field sets the VFO.
- [23.6.22] Fix postcloudlog, Value unpack count mismatch.
- [23.6.21] Fixed xplanet marker file. I think.
Expand Down
13 changes: 7 additions & 6 deletions fdlogger/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1263,12 +1263,13 @@ def clearinputs(self):

def changeband(self):
"""change band"""
self.band = self.band_selector.currentText()
if self.cat_control:
self.cat_control.set_vfo(
int(float(self.fakefreq(self.band, self.mode)) * 1000)
)
self.send_status_udp()
if self.band != self.band_selector.currentText():
self.band = self.band_selector.currentText()
if self.cat_control:
self.cat_control.set_vfo(
int(float(self.fakefreq(self.band, self.mode)) * 1000)
)
self.send_status_udp()

def changemode(self):
"""change mode"""
Expand Down
3 changes: 3 additions & 0 deletions fdlogger/data/arrl_sect.dat
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ WTX TX 5 WTX West Texas
MAR -- C MAR Maritime
SK -- C SK Saskatchewan
NL -- C NL Newfoundland/Labrador
NS -- C NS Nova Scotia
AB -- C AB Alberta
QC -- C QC Quebec
BC -- C BC British Columbia
Expand All @@ -92,9 +93,11 @@ MB -- C MB Manitoba
PE -- C PE Prince Edward Island
#
GTA -- C GTA Greater Toronto Area
GH -- C GH Golden Horseshoe
ONE -- C ONE Ontario East
ONN -- C ONN Ontario North
ONS -- C ONS Ontario South
TER -- C Territories C
#
DX -- - DX Foreign
#
Expand Down
2 changes: 1 addition & 1 deletion fdlogger/lib/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""It's the version"""
__version__ = "23.6.24"
__version__ = "23.6.25"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "fdlogger"
version = "23.6.24"
version = "23.6.25"
description = "ARRL Field Day logger GUI"
readme = "README.md"
requires-python = ">=3.9"
Expand Down

0 comments on commit 9e6612e

Please sign in to comment.