Skip to content

Commit

Permalink
@mbridak add RTC to K1USN
Browse files Browse the repository at this point in the history
  • Loading branch information
mbridak committed Dec 6, 2024
1 parent 4b3326b commit 244be9b
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 3 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-12-6] Add RTC to K1USN.
-[24-12-5-1] ARRL 160 gets rtc.
- [24-12-5] Add 'real time' score posting to external sites.
- [24-12-4] Merged PR from @alduhoo Add STATION_CALLSIGN field to ADIF output
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.

## Recent Changes (Polishing the Turd)

- [24-12-6] Add RTC to K1USN.
-[24-12-5-1] ARRL 160 gets rtc.
- [24-12-5] Add 'real time' score posting to external sites.
- [24-12-4] Merged PR from @alduhoo Add STATION_CALLSIGN field to ADIF output
Expand Down
1 change: 1 addition & 0 deletions Things_To_Do.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
- Add Macros to send hex codes to radio. Icom Voice memories etc.
- Autopopulate exchange based on previous contact on a different band.
- Change sort order of log window.
- add RTC to arrl 10m, rac, raem, arrl rtty roundup, cq 160 cw, k1usn
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.12.5.1"
__version__ = "24.12.6"
22 changes: 21 additions & 1 deletion not1mm/plugins/k1usn_sst.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

from PyQt6 import QtWidgets

from not1mm.lib.plugin_common import gen_adif, get_points
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
from not1mm.lib.version import __version__

logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -506,3 +506,23 @@ def check_call_history(self):
self.other_1.setText(f"{result.get('Name', '')}")
if self.other_2.text() == "":
self.other_2.setText(f"{result.get('Exch1', '')}")


# --------RTC Stuff-----------
def get_mults(self):
""""""

mults = {}
mults["state"] = show_mults(self)
return mults


def just_points(self):
""""""
result = self.database.fetch_points()
if result is not None:
score = result.get("Points", "0")
if score is None:
score = "0"
return int(score)
return 0
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.12.5.1"
version = "24.12.6"
description = "NOT1MM Logger"
readme = "README.md"
requires-python = ">=3.9"
Expand Down

0 comments on commit 244be9b

Please sign in to comment.