Skip to content

Commit

Permalink
@mbridak bugfix: Fixing an ARRL VHF Cabrillo format error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbridak committed Sep 16, 2024
1 parent 11a1540 commit 99b6169
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

- [24-9-15] Fixing an ARRL VHF Cabrillo format error.
- [24-9-14] BugFix. Starting lookups fail init if no settings.
- [24-9-12] Fixed WSJT-X MFSK submodes FT4 Q65.
- [24-9-11-2] Removed all the sketchy threaded call lookups. They're now implimented as a multicast service.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.

## Recent Changes

- [24-9-15] Fixing an ARRL VHF Cabrillo format error.
- [24-9-14] BugFix. Starting lookups fail init if no settings.
- [24-9-12] Fixed WSJT-X MFSK submodes FT4 Q65.
- [24-9-11-2] Removed all the sketchy threaded call lookups. They're now implimented as a multicast service.
Expand Down
2 changes: 1 addition & 1 deletion not1mm/lib/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""It's the version"""

__version__ = "24.9.14"
__version__ = "24.9.15"
4 changes: 2 additions & 2 deletions not1mm/plugins/arrl_vhf_jan.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,10 +403,10 @@ def cabrillo(self):
print(
f"QSO: {frequency} {themode} {loggeddate} {loggedtime} "
f"{contact.get('StationPrefix', '').ljust(13)} "
f"{str(contact.get('SNT', '')).ljust(3)} "
# f"{str(contact.get('SNT', '')).ljust(3)} "
f"{str(contact.get('SentNr', '')).ljust(6)} "
f"{contact.get('Call', '').ljust(13)} "
f"{str(contact.get('RCV', '')).ljust(3)} "
# f"{str(contact.get('RCV', '')).ljust(3)} "
f"{str(contact.get('NR', '')).ljust(6)}",
end="\r\n",
file=file_descriptor,
Expand Down
4 changes: 2 additions & 2 deletions not1mm/plugins/arrl_vhf_jun.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,10 @@ def cabrillo(self):
print(
f"QSO: {frequency} {themode} {loggeddate} {loggedtime} "
f"{contact.get('StationPrefix', '').ljust(13)} "
f"{str(contact.get('SNT', '')).ljust(3)} "
# f"{str(contact.get('SNT', '')).ljust(3)} "
f"{str(contact.get('SentNr', '')).ljust(6)} "
f"{contact.get('Call', '').ljust(13)} "
f"{str(contact.get('RCV', '')).ljust(3)} "
# f"{str(contact.get('RCV', '')).ljust(3)} "
f"{str(contact.get('NR', '')).ljust(6)}",
end="\r\n",
file=file_descriptor,
Expand Down
4 changes: 2 additions & 2 deletions not1mm/plugins/arrl_vhf_sep.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,10 @@ def cabrillo(self):
print(
f"QSO: {frequency} {themode} {loggeddate} {loggedtime} "
f"{contact.get('StationPrefix', '').ljust(13)} "
f"{str(contact.get('SNT', '')).ljust(3)} "
# f"{str(contact.get('SNT', '')).ljust(3)} "
f"{str(contact.get('SentNr', '')).ljust(6)} "
f"{contact.get('Call', '').ljust(13)} "
f"{str(contact.get('RCV', '')).ljust(3)} "
# f"{str(contact.get('RCV', '')).ljust(3)} "
f"{str(contact.get('NR', '')).ljust(6)}",
end="\r\n",
file=file_descriptor,
Expand Down
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 = "not1mm"
version = "24.9.14"
version = "24.9.15"
description = "NOT1MM Logger"
readme = "README.md"
requires-python = ">=3.9"
Expand Down

0 comments on commit 99b6169

Please sign in to comment.