Skip to content

Commit 244be9b

Browse files
committed
@mbridak add RTC to K1USN
1 parent 4b3326b commit 244be9b

File tree

6 files changed

+26
-3
lines changed

6 files changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Changelog
22

3+
- [24-12-6] Add RTC to K1USN.
34
-[24-12-5-1] ARRL 160 gets rtc.
45
- [24-12-5] Add 'real time' score posting to external sites.
56
- [24-12-4] Merged PR from @alduhoo Add STATION_CALLSIGN field to ADIF output

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
208208

209209
## Recent Changes (Polishing the Turd)
210210

211+
- [24-12-6] Add RTC to K1USN.
211212
-[24-12-5-1] ARRL 160 gets rtc.
212213
- [24-12-5] Add 'real time' score posting to external sites.
213214
- [24-12-4] Merged PR from @alduhoo Add STATION_CALLSIGN field to ADIF output

Things_To_Do.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
- Add Macros to send hex codes to radio. Icom Voice memories etc.
99
- Autopopulate exchange based on previous contact on a different band.
1010
- Change sort order of log window.
11+
- add RTC to arrl 10m, rac, raem, arrl rtty roundup, cq 160 cw, k1usn

not1mm/lib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""It's the version"""
22

3-
__version__ = "24.12.5.1"
3+
__version__ = "24.12.6"

not1mm/plugins/k1usn_sst.py

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
from PyQt6 import QtWidgets
3030

31-
from not1mm.lib.plugin_common import gen_adif, get_points
31+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
3232
from not1mm.lib.version import __version__
3333

3434
logger = logging.getLogger(__name__)
@@ -506,3 +506,23 @@ def check_call_history(self):
506506
self.other_1.setText(f"{result.get('Name', '')}")
507507
if self.other_2.text() == "":
508508
self.other_2.setText(f"{result.get('Exch1', '')}")
509+
510+
511+
# --------RTC Stuff-----------
512+
def get_mults(self):
513+
""""""
514+
515+
mults = {}
516+
mults["state"] = show_mults(self)
517+
return mults
518+
519+
520+
def just_points(self):
521+
""""""
522+
result = self.database.fetch_points()
523+
if result is not None:
524+
score = result.get("Points", "0")
525+
if score is None:
526+
score = "0"
527+
return int(score)
528+
return 0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "not1mm"
7-
version = "24.12.5.1"
7+
version = "24.12.6"
88
description = "NOT1MM Logger"
99
readme = "README.md"
1010
requires-python = ">=3.9"

0 commit comments

Comments
 (0)