not1mm 24.12.6__py3-none-any.whl → 24.12.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
not1mm/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "24.12.6"
3
+ __version__ = "24.12.8"
@@ -34,7 +34,7 @@ from pathlib import Path
34
34
  from PyQt6 import QtWidgets
35
35
 
36
36
  from not1mm.lib.ham_utility import get_logged_band
37
- from not1mm.lib.plugin_common import gen_adif, get_points
37
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
38
38
  from not1mm.lib.version import __version__
39
39
 
40
40
  logger = logging.getLogger(__name__)
@@ -44,7 +44,7 @@ ALTEREGO = None
44
44
  EXCHANGE_HINT = "Name + SPC"
45
45
 
46
46
  name = "WEEKLY RTTY TEST"
47
- cabrillo_name = "WEEKLY-RTTY"
47
+ cabrillo_name = "WRT"
48
48
  mode = "RTTY" # CW SSB BOTH RTTY
49
49
  # columns = [0, 1, 2, 3, 4, 10, 11, 14, 15]
50
50
  columns = [
@@ -138,9 +138,9 @@ def points(self):
138
138
 
139
139
  def show_mults(self):
140
140
  """Return display string for mults"""
141
- result = self.database.fetch_section_band_count_nodx()
141
+ result = self.database.fetch_call_count()
142
142
  if result:
143
- return int(result.get("sb_count", 0))
143
+ return int(result.get("call_count", 0))
144
144
  return 0
145
145
 
146
146
 
@@ -594,3 +594,23 @@ def check_call_history(self):
594
594
  self.other_1.setText(f"{result.get('Name', '')}")
595
595
  if self.other_2.text() == "":
596
596
  self.other_2.setText(f"{result.get('Sect', '')}")
597
+
598
+
599
+ # --------RTC Stuff-----------
600
+ def get_mults(self):
601
+ """"""
602
+
603
+ mults = {}
604
+ mults["state"] = show_mults(self)
605
+ return mults
606
+
607
+
608
+ def just_points(self):
609
+ """"""
610
+ result = self.database.fetch_points()
611
+ if result is not None:
612
+ score = result.get("Points", "0")
613
+ if score is None:
614
+ score = "0"
615
+ return int(score)
616
+ return 0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: not1mm
3
- Version: 24.12.6
3
+ Version: 24.12.8
4
4
  Summary: NOT1MM Logger
5
5
  Author-email: Michael Bridak <michael.bridak@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/mbridak/not1mm
@@ -239,6 +239,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
239
239
 
240
240
  ## Recent Changes (Polishing the Turd)
241
241
 
242
+ - [24-12-8] Fix: Weekly RTTY mults. Add RTC to Weekly RTTY.
242
243
  - [24-12-6] Add RTC to K1USN.
243
244
  -[24-12-5-1] ARRL 160 gets rtc.
244
245
  - [24-12-5] Add 'real time' score posting to external sites.
@@ -115,7 +115,7 @@ not1mm/lib/plugin_common.py,sha256=gpYDYRu_-w8QiLNXPLjKzE47Fhgv-q7yrLu0-BwEpVY,1
115
115
  not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
116
116
  not1mm/lib/settings.py,sha256=j5lIMLHJ-eqIaVr_QhI82gkbOl17_C-5suRkWbHYET8,14717
117
117
  not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
118
- not1mm/lib/version.py,sha256=Y733EEADBRN-bkIKXrCFMSoVV0drC1bWD8H8Tx3wHpQ,48
118
+ not1mm/lib/version.py,sha256=wtP0tFjPlDuf1mhIzKGuSEJ9NIJOrhBpLW36VwpHRk4,48
119
119
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
120
120
  not1mm/plugins/10_10_fall_cw.py,sha256=AsvB2VUd6Qb2_FzZkSBkSd1_qeP8Dt-B-exF1Pzb9tk,14469
121
121
  not1mm/plugins/10_10_spring_cw.py,sha256=nA4v0oqlp-ivvKqNPakb19I-wE_ElhvH5bCzDRx00JU,14474
@@ -162,11 +162,11 @@ not1mm/plugins/raem.py,sha256=pTL9fdpw9rXxyoIqWY0ptjkDoqmc7NxNyF4O_sBuW5o,19262
162
162
  not1mm/plugins/ref_cw.py,sha256=yTWg6-MosGX-UyxO0N03GEsP46r0vOp1f00ZL9LGVmQ,20287
163
163
  not1mm/plugins/ref_ssb.py,sha256=G2Gz4kApchmOZQVnBexEokSEvdb-mZWJAfyJ1D6JDGY,20498
164
164
  not1mm/plugins/stew_perry_topband.py,sha256=Gy_vv6tgkR-3vmvsUVO0pVfHMkUJSxpt7G4secn0RH8,15084
165
- not1mm/plugins/weekly_rtty.py,sha256=PI0_AtEdZZKGAuKnP-b2EYn9xwCN1Ablk38trbNP3Rc,19603
165
+ not1mm/plugins/weekly_rtty.py,sha256=jYEr8rNRYAE-KhPSpOWOrUGOyfGB-CWpQbFUtP_mwFs,19974
166
166
  not1mm/plugins/winter_field_day.py,sha256=9w3tDL9ZWiENSTERc3vzDbBktvI7pnyNvlH6fDjAi08,14841
167
- not1mm-24.12.6.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
168
- not1mm-24.12.6.dist-info/METADATA,sha256=oiVHT7cgjLaxapmDVRw5lCg7fQPCT3cAlnVQ35wDDzs,35653
169
- not1mm-24.12.6.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
170
- not1mm-24.12.6.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
171
- not1mm-24.12.6.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
172
- not1mm-24.12.6.dist-info/RECORD,,
167
+ not1mm-24.12.8.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
168
+ not1mm-24.12.8.dist-info/METADATA,sha256=RmQ_CfClfXQw_BhLNEOqBa8SViQnFTPIbiG6DAsa1p4,35713
169
+ not1mm-24.12.8.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
170
+ not1mm-24.12.8.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
171
+ not1mm-24.12.8.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
172
+ not1mm-24.12.8.dist-info/RECORD,,