not1mm 25.3.25__py3-none-any.whl → 25.3.26__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/__main__.py +5 -0
- not1mm/lib/version.py +1 -1
- not1mm/logwindow.py +14 -0
- not1mm/plugins/10_10_fall_cw.py +4 -0
- not1mm/plugins/10_10_spring_cw.py +4 -0
- not1mm/plugins/10_10_summer_phone.py +4 -0
- not1mm/plugins/10_10_winter_phone.py +4 -0
- not1mm/plugins/arrl_10m.py +4 -0
- not1mm/plugins/arrl_160m.py +4 -0
- not1mm/plugins/arrl_dx_cw.py +4 -0
- not1mm/plugins/arrl_dx_ssb.py +4 -0
- not1mm/plugins/arrl_field_day.py +4 -0
- not1mm/plugins/arrl_rtty_ru.py +4 -0
- not1mm/plugins/arrl_ss_cw.py +4 -0
- not1mm/plugins/arrl_ss_phone.py +4 -0
- not1mm/plugins/arrl_vhf_jan.py +3 -0
- not1mm/plugins/arrl_vhf_jun.py +3 -0
- not1mm/plugins/arrl_vhf_sep.py +3 -0
- not1mm/plugins/canada_day.py +4 -0
- not1mm/plugins/cq_160_cw.py +4 -0
- not1mm/plugins/cq_160_ssb.py +4 -0
- not1mm/plugins/cq_wpx_cw.py +4 -0
- not1mm/plugins/cq_wpx_rtty.py +4 -0
- not1mm/plugins/cq_wpx_ssb.py +4 -0
- not1mm/plugins/cq_ww_cw.py +4 -8
- not1mm/plugins/cq_ww_rtty.py +3 -0
- not1mm/plugins/cq_ww_ssb.py +4 -0
- not1mm/plugins/cwt.py +4 -0
- not1mm/plugins/darc_vhf.py +4 -0
- not1mm/plugins/darc_xmas.py +4 -0
- not1mm/plugins/ea_majistad_cw.py +3 -0
- not1mm/plugins/ea_majistad_ssb.py +3 -0
- not1mm/plugins/ea_rtty.py +3 -0
- not1mm/plugins/helvetia.py +4 -0
- not1mm/plugins/iaru_fieldday_r1_cw.py +3 -0
- not1mm/plugins/iaru_fieldday_r1_ssb.py +3 -0
- not1mm/plugins/iaru_hf.py +3 -0
- not1mm/plugins/icwc_mst.py +4 -0
- not1mm/plugins/jidx_cw.py +4 -0
- not1mm/plugins/jidx_ph.py +4 -0
- not1mm/plugins/k1usn_sst.py +4 -0
- not1mm/plugins/labre_rs_digi.py +3 -0
- not1mm/plugins/lz-dx.py +3 -0
- not1mm/plugins/naqp_cw.py +4 -0
- not1mm/plugins/naqp_rtty.py +2 -0
- not1mm/plugins/naqp_ssb.py +4 -0
- not1mm/plugins/phone_weekly_test.py +4 -0
- not1mm/plugins/raem.py +2 -0
- not1mm/plugins/ref_cw.py +3 -0
- not1mm/plugins/ref_ssb.py +2 -0
- not1mm/plugins/stew_perry_topband.py +2 -0
- not1mm/plugins/weekly_rtty.py +2 -0
- not1mm/plugins/winter_field_day.py +2 -0
- not1mm/statistics.py +6 -4
- {not1mm-25.3.25.dist-info → not1mm-25.3.26.dist-info}/METADATA +3 -1
- {not1mm-25.3.25.dist-info → not1mm-25.3.26.dist-info}/RECORD +60 -60
- {not1mm-25.3.25.dist-info → not1mm-25.3.26.dist-info}/WHEEL +0 -0
- {not1mm-25.3.25.dist-info → not1mm-25.3.26.dist-info}/entry_points.txt +0 -0
- {not1mm-25.3.25.dist-info → not1mm-25.3.26.dist-info}/licenses/LICENSE +0 -0
- {not1mm-25.3.25.dist-info → not1mm-25.3.26.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -140,6 +140,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
140
140
|
contact = {}
|
141
141
|
contest = None
|
142
142
|
contest_settings = {}
|
143
|
+
contact_is_dupe = False
|
143
144
|
pref = None
|
144
145
|
station = {}
|
145
146
|
current_op = ""
|
@@ -864,6 +865,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
864
865
|
def dockwidget_message(self, msg):
|
865
866
|
"""signal from bandmap"""
|
866
867
|
if msg:
|
868
|
+
if msg.get("cmd", "") == "CONTACTCHANGED":
|
869
|
+
if self.statistics_window:
|
870
|
+
self.statistics_window.msg_from_main(msg)
|
867
871
|
if msg.get("cmd", "") == "GETCOLUMNS":
|
868
872
|
if hasattr(self.contest, "columns"):
|
869
873
|
cmd = {}
|
@@ -3669,6 +3673,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3669
3673
|
result = {"isdupe": False}
|
3670
3674
|
debugline = f"{result}"
|
3671
3675
|
logger.debug("%s", debugline)
|
3676
|
+
self.contact_is_dupe = result.get("isdupe", False)
|
3672
3677
|
return result.get("isdupe", False)
|
3673
3678
|
|
3674
3679
|
def setmode(self, mode: str) -> None:
|
not1mm/lib/version.py
CHANGED
not1mm/logwindow.py
CHANGED
@@ -409,6 +409,10 @@ class LogWindow(QDockWidget):
|
|
409
409
|
}
|
410
410
|
self.database.change_contact(db_record)
|
411
411
|
|
412
|
+
cmd = {}
|
413
|
+
cmd["cmd"] = "CONTACTCHANGED"
|
414
|
+
self.message.emit(cmd)
|
415
|
+
|
412
416
|
if self.n1mm.send_contact_packets:
|
413
417
|
self.n1mm.contact_info["timestamp"] = db_record["TS"]
|
414
418
|
self.n1mm.contact_info["contestname"] = self.contact["ContestName"].replace(
|
@@ -522,6 +526,10 @@ class LogWindow(QDockWidget):
|
|
522
526
|
}
|
523
527
|
self.database.change_contact(db_record)
|
524
528
|
|
529
|
+
cmd = {}
|
530
|
+
cmd["cmd"] = "CONTACTCHANGED"
|
531
|
+
self.message.emit(cmd)
|
532
|
+
|
525
533
|
if self.n1mm.send_contact_packets:
|
526
534
|
self.n1mm.contact_info["timestamp"] = db_record["TS"]
|
527
535
|
self.n1mm.contact_info["contestname"] = self.contact["ContestName"].replace(
|
@@ -736,6 +744,9 @@ class LogWindow(QDockWidget):
|
|
736
744
|
|
737
745
|
self.database.change_contact(self.contact)
|
738
746
|
self.get_log()
|
747
|
+
cmd = {}
|
748
|
+
cmd["cmd"] = "CONTACTCHANGED"
|
749
|
+
self.message.emit(cmd)
|
739
750
|
self.show_like_calls(self.contact.get("Call", ""))
|
740
751
|
|
741
752
|
def delete_contact(self) -> None:
|
@@ -763,6 +774,9 @@ class LogWindow(QDockWidget):
|
|
763
774
|
self.n1mm.send_contact_delete()
|
764
775
|
self.edit_contact_dialog.close()
|
765
776
|
self.get_log()
|
777
|
+
cmd = {}
|
778
|
+
cmd["cmd"] = "CONTACTCHANGED"
|
779
|
+
self.message.emit(cmd)
|
766
780
|
self.show_like_calls(self.contact.get("Call", ""))
|
767
781
|
|
768
782
|
def get_log(self) -> None:
|
not1mm/plugins/10_10_fall_cw.py
CHANGED
not1mm/plugins/arrl_10m.py
CHANGED
not1mm/plugins/arrl_160m.py
CHANGED
@@ -102,6 +102,10 @@ def prefill(self):
|
|
102
102
|
|
103
103
|
def points(self):
|
104
104
|
"""Calc point"""
|
105
|
+
|
106
|
+
if self.contact_is_dupe > 0:
|
107
|
+
return 0
|
108
|
+
|
105
109
|
# Each contact between W/VE stations counts for two (2) QSO points. Each contact with a DX station counts five (5) QSO points
|
106
110
|
call = self.contact.get("Call", "")
|
107
111
|
dupe_check = self.database.check_dupe(call)
|
not1mm/plugins/arrl_dx_cw.py
CHANGED
not1mm/plugins/arrl_dx_ssb.py
CHANGED
not1mm/plugins/arrl_field_day.py
CHANGED
not1mm/plugins/arrl_rtty_ru.py
CHANGED
not1mm/plugins/arrl_ss_cw.py
CHANGED
not1mm/plugins/arrl_ss_phone.py
CHANGED
not1mm/plugins/arrl_vhf_jan.py
CHANGED
not1mm/plugins/arrl_vhf_jun.py
CHANGED
not1mm/plugins/arrl_vhf_sep.py
CHANGED
not1mm/plugins/canada_day.py
CHANGED
not1mm/plugins/cq_160_cw.py
CHANGED
not1mm/plugins/cq_160_ssb.py
CHANGED
not1mm/plugins/cq_wpx_cw.py
CHANGED
not1mm/plugins/cq_wpx_rtty.py
CHANGED
@@ -160,6 +160,10 @@ def points(self):
|
|
160
160
|
- Different-country contacts within any continent (not just North America) get 2 or 4 points
|
161
161
|
- Same-country contacts get 2 points on the low bands
|
162
162
|
"""
|
163
|
+
|
164
|
+
if self.contact_is_dupe > 0:
|
165
|
+
return 0
|
166
|
+
|
163
167
|
result = self.cty_lookup(self.station.get("Call", ""))
|
164
168
|
if result:
|
165
169
|
for item in result.items():
|
not1mm/plugins/cq_wpx_ssb.py
CHANGED
not1mm/plugins/cq_ww_cw.py
CHANGED
@@ -140,14 +140,10 @@ def prefill(self):
|
|
140
140
|
|
141
141
|
def points(self):
|
142
142
|
"""Calc point"""
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
# @awandahl Check if the contact is a duplicate on the current band
|
148
|
-
dupe_check = self.database.check_dupe_on_band(call, band)
|
149
|
-
if dupe_check.get("isdupe", 0) > 0:
|
150
|
-
return 0 # @awandahl Return zero points for duplicates
|
143
|
+
|
144
|
+
if self.contact_is_dupe > 0:
|
145
|
+
return 0
|
146
|
+
|
151
147
|
result = self.cty_lookup(self.station.get("Call", ""))
|
152
148
|
if result:
|
153
149
|
for item in result.items():
|
not1mm/plugins/cq_ww_rtty.py
CHANGED
@@ -150,6 +150,9 @@ def points(self):
|
|
150
150
|
# 2 points per QSO with same continent
|
151
151
|
# 3 points per QSO with different continent
|
152
152
|
|
153
|
+
if self.contact_is_dupe > 0:
|
154
|
+
return 0
|
155
|
+
|
153
156
|
result = self.cty_lookup(self.station.get("Call", ""))
|
154
157
|
if result:
|
155
158
|
for item in result.items():
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
not1mm/plugins/cwt.py
CHANGED
not1mm/plugins/darc_vhf.py
CHANGED
not1mm/plugins/darc_xmas.py
CHANGED
not1mm/plugins/ea_majistad_cw.py
CHANGED
@@ -176,6 +176,9 @@ def points(self) -> int:
|
|
176
176
|
# non-EA: 3 points per QSO with EA
|
177
177
|
# non-EA: 1 point per QSO with non-EA
|
178
178
|
|
179
|
+
if self.contact_is_dupe > 0:
|
180
|
+
return 0
|
181
|
+
|
179
182
|
ea_prefixes = ["EA", "EA1", "EA2", "EA3", "EA4", "EA5", "EA6", "EA7", "EA8", "EA9"]
|
180
183
|
|
181
184
|
me = None
|
@@ -176,6 +176,9 @@ def points(self) -> int:
|
|
176
176
|
# non-EA: 3 points per QSO with EA
|
177
177
|
# non-EA: 1 point per QSO with non-EA
|
178
178
|
|
179
|
+
if self.contact_is_dupe > 0:
|
180
|
+
return 0
|
181
|
+
|
179
182
|
ea_prefixes = ["EA", "EA1", "EA2", "EA3", "EA4", "EA5", "EA6", "EA7", "EA8", "EA9"]
|
180
183
|
|
181
184
|
me = None
|
not1mm/plugins/ea_rtty.py
CHANGED
@@ -180,6 +180,9 @@ def points(self) -> int:
|
|
180
180
|
# non-EA: 3 points per QSO with EA
|
181
181
|
# non-EA: 1 point per QSO with non-EA
|
182
182
|
|
183
|
+
if self.contact_is_dupe > 0:
|
184
|
+
return 0
|
185
|
+
|
183
186
|
ea_prefixes = ["EA", "EA1", "EA2", "EA3", "EA4", "EA5", "EA6", "EA7", "EA8", "EA9"]
|
184
187
|
|
185
188
|
me = None
|
not1mm/plugins/helvetia.py
CHANGED
@@ -216,6 +216,10 @@ def points(self):
|
|
216
216
|
self.contact["CountryPrefix"]
|
217
217
|
self.contact["Continent"]
|
218
218
|
"""
|
219
|
+
|
220
|
+
if self.contact_is_dupe > 0:
|
221
|
+
return 0
|
222
|
+
|
219
223
|
result = self.cty_lookup(self.station.get("Call", ""))
|
220
224
|
if result:
|
221
225
|
for item in result.items():
|
not1mm/plugins/iaru_hf.py
CHANGED
not1mm/plugins/icwc_mst.py
CHANGED
not1mm/plugins/jidx_cw.py
CHANGED
not1mm/plugins/jidx_ph.py
CHANGED
not1mm/plugins/k1usn_sst.py
CHANGED
not1mm/plugins/labre_rs_digi.py
CHANGED
@@ -150,6 +150,9 @@ def points(self):
|
|
150
150
|
# QSO Points: 1 point per QSO
|
151
151
|
# 1 additional point per QSO with PY3,PU3,ZZ3,PP3,etc
|
152
152
|
|
153
|
+
if self.contact_is_dupe > 0:
|
154
|
+
return 0
|
155
|
+
|
153
156
|
if len(self.contact.get("Call", "")) > 2:
|
154
157
|
if self.contact.get("Call", "")[:3] in ["PY3", "PU3", "ZZ3", "PP3", "PX3"]:
|
155
158
|
return 2
|
not1mm/plugins/lz-dx.py
CHANGED
not1mm/plugins/naqp_cw.py
CHANGED
not1mm/plugins/naqp_rtty.py
CHANGED
not1mm/plugins/naqp_ssb.py
CHANGED
not1mm/plugins/raem.py
CHANGED
@@ -214,6 +214,8 @@ def points(self):
|
|
214
214
|
# QSO with Polar station: 100 points additional
|
215
215
|
# QSO with RAEM Memorial Station: 300 points additional
|
216
216
|
|
217
|
+
if self.contact_is_dupe > 0:
|
218
|
+
return 0
|
217
219
|
points = 50
|
218
220
|
morepoints, ispolar = latlondif(self, self.other_2.text())
|
219
221
|
points += morepoints
|
not1mm/plugins/ref_cw.py
CHANGED
not1mm/plugins/ref_ssb.py
CHANGED
not1mm/plugins/weekly_rtty.py
CHANGED
not1mm/statistics.py
CHANGED
@@ -6,7 +6,7 @@ import os
|
|
6
6
|
|
7
7
|
from PyQt6 import uic, QtWidgets
|
8
8
|
from PyQt6.QtWidgets import QDockWidget
|
9
|
-
from PyQt6.QtCore import pyqtSignal
|
9
|
+
from PyQt6.QtCore import pyqtSignal
|
10
10
|
|
11
11
|
from PyQt6.QtGui import QColorConstants, QPalette, QColor
|
12
12
|
|
@@ -43,9 +43,6 @@ class StatsWindow(QDockWidget):
|
|
43
43
|
self.database = DataBase(self.dbname, fsutils.APP_DATA_PATH)
|
44
44
|
self.database.current_contest = self.pref.get("contest", 0)
|
45
45
|
uic.loadUi(fsutils.APP_DATA_PATH / "statistics.ui", self)
|
46
|
-
self.timer = QTimer()
|
47
|
-
self.timer.timeout.connect(self.get_run_and_total_qs)
|
48
|
-
self.timer.start(5000)
|
49
46
|
|
50
47
|
def msg_from_main(self, packet):
|
51
48
|
""""""
|
@@ -56,6 +53,10 @@ class StatsWindow(QDockWidget):
|
|
56
53
|
if self.active is False:
|
57
54
|
return
|
58
55
|
|
56
|
+
if packet.get("cmd", "") == "CONTACTCHANGED":
|
57
|
+
self.get_run_and_total_qs()
|
58
|
+
return
|
59
|
+
|
59
60
|
if packet.get("cmd", "") == "UPDATELOG":
|
60
61
|
logger.debug("External refresh command.")
|
61
62
|
self.get_run_and_total_qs()
|
@@ -68,6 +69,7 @@ class StatsWindow(QDockWidget):
|
|
68
69
|
)
|
69
70
|
self.database = DataBase(self.dbname, fsutils.APP_DATA_PATH)
|
70
71
|
self.database.current_contest = self.pref.get("contest", 0)
|
72
|
+
self.get_run_and_total_qs()
|
71
73
|
|
72
74
|
def setActive(self, mode: bool) -> None:
|
73
75
|
self.active = bool(mode)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: not1mm
|
3
|
-
Version: 25.3.
|
3
|
+
Version: 25.3.26
|
4
4
|
Summary: NOT1MM Logger
|
5
5
|
Author-email: Michael Bridak <michael.bridak@gmail.com>
|
6
6
|
License: GPL-3.0-or-later
|
@@ -247,6 +247,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
247
247
|
|
248
248
|
## Recent Changes
|
249
249
|
|
250
|
+
- [25-3-26] Record 0 points on dupes for each contest, excluding RandomGram.
|
251
|
+
- [25-3-25-1] Improved process messaging.
|
250
252
|
- [25-3-25] Use safer dict key access in the stats window.
|
251
253
|
- [25-3-24] Add CW, PH, DI counts to the statistics window.
|
252
254
|
- [25-3-23] Add a statistics window.
|
@@ -1,14 +1,14 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=kpJ-oyLzUEyx4xEQwO7rFCnVybOnY7RJYXqjym79YBA,151784
|
3
3
|
not1mm/bandmap.py,sha256=mdSK6oj8plEmr6WVYkzPTCfsHWKl9lea3R14cmRsAI4,31531
|
4
4
|
not1mm/checkwindow.py,sha256=VFAcKYTcoWhmIf91chwY6tyao9FQMWPiUkgDDkkWaog,9670
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
6
|
-
not1mm/logwindow.py,sha256=
|
6
|
+
not1mm/logwindow.py,sha256=Djobfy13WQ0yZWw2ET6mDUsuJEOvbrsbt2RS0fW8-4E,44700
|
7
7
|
not1mm/lookupservice.py,sha256=GkY_qHZfrW6XHf8upIoaG4hCFqm0fg6Ganu9ConGrIc,2628
|
8
8
|
not1mm/radio.py,sha256=_b-tSFuDLoBKnABxrsafGQu2p33U-KOubY7-qgLV2yg,5408
|
9
9
|
not1mm/ratewindow.py,sha256=UVkQt0nSB2COQlJQV6tFtsz4mP7d-Wj9jcjqvZw934Q,9891
|
10
10
|
not1mm/rtc_service.py,sha256=axAwnCBuTr-QL0YwXtWvg9tjwhcFsiiEZFgFjOofX6k,2816
|
11
|
-
not1mm/statistics.py,sha256=
|
11
|
+
not1mm/statistics.py,sha256=vZ76iaMZQLgOriKAg9SicmA_Y9qdiqHJ2T7IoOO5iXo,9620
|
12
12
|
not1mm/test.py,sha256=RN71m2S9MPIOJMaoCi0wZhwEhpEZunvtosZxaKahRB4,101
|
13
13
|
not1mm/vfo.py,sha256=ggPyWtxMbdSE5RwdK0nDRwDNqOxdpb_pvnzZdbzZVQE,11136
|
14
14
|
not1mm/voice_keying.py,sha256=HZImqC5NgnyW2nknNYQ3b7I8-6S_hxpq5G4RcIRXn_k,3005
|
@@ -118,64 +118,64 @@ not1mm/lib/plugin_common.py,sha256=D1OBjyLmX7zuSPqgTCmHwXzAKA12J_zTQItvyIem-4Y,1
|
|
118
118
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
119
119
|
not1mm/lib/settings.py,sha256=mXffn8Xaj5KATPQinNBR0V5DbHWQPsRfh24_axWGYuk,15254
|
120
120
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
121
|
-
not1mm/lib/version.py,sha256=
|
121
|
+
not1mm/lib/version.py,sha256=VtZWMGr7eyJr4aR2JSVUkEKeiMYRhbtGhdYbGR4TUmc,48
|
122
122
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
123
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
124
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
125
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
126
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
123
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=oJh3JKqjOpnWElSlZpiQ631UnaOd8qra5s9bl_QoInk,14783
|
124
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=p7dSDtbFK0e6Xouw2V6swYn3VFVgHKyx4IfRWyBjMZY,14786
|
125
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=NWWT5YTZN6CkPl5Jy4lCuTqHd1R_JodhsOLqCoGOzdU,14896
|
126
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=4xoWLbnE2di5XnUUlhsvTR__E0Z4kbhu-rcUitPMR0U,14795
|
127
127
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
128
|
-
not1mm/plugins/arrl_10m.py,sha256=
|
129
|
-
not1mm/plugins/arrl_160m.py,sha256=
|
130
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
131
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
132
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
133
|
-
not1mm/plugins/arrl_rtty_ru.py,sha256=
|
134
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
135
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
136
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
137
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
138
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
139
|
-
not1mm/plugins/canada_day.py,sha256=
|
140
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
141
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
142
|
-
not1mm/plugins/cq_wpx_cw.py,sha256=
|
143
|
-
not1mm/plugins/cq_wpx_rtty.py,sha256=
|
144
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
145
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
146
|
-
not1mm/plugins/cq_ww_rtty.py,sha256=
|
147
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
148
|
-
not1mm/plugins/cwt.py,sha256=
|
149
|
-
not1mm/plugins/darc_vhf.py,sha256=
|
150
|
-
not1mm/plugins/darc_xmas.py,sha256=
|
151
|
-
not1mm/plugins/ea_majistad_cw.py,sha256=
|
152
|
-
not1mm/plugins/ea_majistad_ssb.py,sha256=
|
153
|
-
not1mm/plugins/ea_rtty.py,sha256=
|
128
|
+
not1mm/plugins/arrl_10m.py,sha256=9p7EX2vAXVilF8y6AYHG4fXczU6g9QuMA2Pvj64pSXE,18389
|
129
|
+
not1mm/plugins/arrl_160m.py,sha256=rdWDhmPN0h9ADTlYaRLk-5j8KVye0rUEs1tyD-kfHV0,20300
|
130
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=Bx6_PBmTHKf4l52XwLFVeR2y6F134kXbGTfEXC_1agk,18890
|
131
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=Mr002qRF1jUD_U5kVw5U_cx2MixvzyYEmRNhgPqsMjc,18938
|
132
|
+
not1mm/plugins/arrl_field_day.py,sha256=CzUAzcOus4MwJ0Ha08OvQwCfjcfRRNIEx1WCL9xBSR4,17541
|
133
|
+
not1mm/plugins/arrl_rtty_ru.py,sha256=bxOvrcb6R_Qf3H2MnkfpQkAfJbCyGjKwbZXt1PHCuAM,20957
|
134
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=WnRiVLqiC_sX4QqDyyMOy3f07IJCPgxkFf9PstKkhK4,17522
|
135
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=PzybC--tSB7_oNLbbN9xYkMnftH-z6qgcGZUp3-JGLU,16858
|
136
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=yGwzcwRwyHM6FF8d61WayjxvIEmJmOGqeziYUP9s3do,20330
|
137
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=zieBad2LkyjmrtoB8NgDL5993zXBvuFu0Y-U1-Fy13k,19422
|
138
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=4rFf8DXRKQqtyXQtG6ZpqZS1v3bBVJONG_e4EUmcm_U,19455
|
139
|
+
not1mm/plugins/canada_day.py,sha256=89aGXm4S9PjKL9FYm3z7BMFRz--MugQQilwQnzLJvv0,15770
|
140
|
+
not1mm/plugins/cq_160_cw.py,sha256=bmHtxVcIWsqmgqpMCMso7DCBERtAr9fIKIjgymSKtms,18711
|
141
|
+
not1mm/plugins/cq_160_ssb.py,sha256=9KKDmmapETEebm1azfEzUWk1NyW3TBnYtBlFIPZYHBs,18754
|
142
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=F5lLuXumrviNHnNEk377OKeEJCnv_j9vnjHEcV70gFc,18249
|
143
|
+
not1mm/plugins/cq_wpx_rtty.py,sha256=WohxnrCIC2EF7hqLLcixJFAK505X-Z766L3DMVUf4sA,21068
|
144
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=mtUD0tQnraDHoCHIeuWpOD64my3Kni9mXVH5IF2QPL0,16816
|
145
|
+
not1mm/plugins/cq_ww_cw.py,sha256=YBlP4Nzp5X-cg4ZEnlrW1CnNpN0GAQqn30S-bYMM-aQ,18041
|
146
|
+
not1mm/plugins/cq_ww_rtty.py,sha256=2u3k4ofPh3S4B-BVlQtis-X4rwdx221WRf3hjHWPEyg,22549
|
147
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=txeBfJ8rZCrAG2BWY-UmTH81ufRYbkeJJ6NpnV1eKKg,18055
|
148
|
+
not1mm/plugins/cwt.py,sha256=_bYlv6AMhfNVI7pChkSfEZ9amaIYhxu71qdmwgPTrKw,17594
|
149
|
+
not1mm/plugins/darc_vhf.py,sha256=cyckJ-0c_z7uONEWwxbvxi_olxPP0NJm3ryQRCkT5tE,27419
|
150
|
+
not1mm/plugins/darc_xmas.py,sha256=p5UNYLdtylsC_sSlxT8NvXXL1oSW0KyUhIN-rJonHgI,18971
|
151
|
+
not1mm/plugins/ea_majistad_cw.py,sha256=tl9y92Oz4NTch4H-SrBnZND2tHGqWQvtgl3emXfU8og,23352
|
152
|
+
not1mm/plugins/ea_majistad_ssb.py,sha256=TwZLHwgybpIgA4ECXzV3bIeP89MLr3vXa4_O99-mgxQ,22946
|
153
|
+
not1mm/plugins/ea_rtty.py,sha256=JvszWdtUqC_Sn2sJAlMhMp2AdlLyAIj-6nWT-yFkihw,23229
|
154
154
|
not1mm/plugins/general_logging.py,sha256=eQuna-LnrWpf93LmHTTo6956GWoGocVfeYnzY5cyTmw,9600
|
155
|
-
not1mm/plugins/helvetia.py,sha256
|
156
|
-
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=
|
157
|
-
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=
|
158
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
159
|
-
not1mm/plugins/icwc_mst.py,sha256=
|
160
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
161
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
162
|
-
not1mm/plugins/k1usn_sst.py,sha256=
|
163
|
-
not1mm/plugins/labre_rs_digi.py,sha256=
|
164
|
-
not1mm/plugins/lz-dx.py,sha256=
|
165
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
166
|
-
not1mm/plugins/naqp_rtty.py,sha256=
|
167
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
168
|
-
not1mm/plugins/phone_weekly_test.py,sha256=
|
169
|
-
not1mm/plugins/raem.py,sha256=
|
155
|
+
not1mm/plugins/helvetia.py,sha256=fDKhvjDh5PxxLxmxvqTHzt-u0cMjHOjlF6JWBu3qB20,20079
|
156
|
+
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=1AVyZFi3ri2zqaNJY181Wtyz74fai8QLoi7PoyXpfaY,17218
|
157
|
+
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=w0j4MY1LeGxOaQfRjxRS-Q4waTOOt-hbxA1spil7z_I,17222
|
158
|
+
not1mm/plugins/iaru_hf.py,sha256=VtNCijj_p03EIRfUJE-5FSarGb8P-Ek7gxIdPF_zHQQ,16721
|
159
|
+
not1mm/plugins/icwc_mst.py,sha256=IUpAETCjXxeTmOFu2ItivXiZGRaQgcuaPSu6Q1kOJAk,16539
|
160
|
+
not1mm/plugins/jidx_cw.py,sha256=dsirWVEmogPSxSpo2uNGYa12qXiokAGad1IoclG5rpA,15945
|
161
|
+
not1mm/plugins/jidx_ph.py,sha256=Ln47W-lPDieG3e67vVHwtPN3jKHVtb87fviyYBL8pi0,14894
|
162
|
+
not1mm/plugins/k1usn_sst.py,sha256=yeaejs9rgXot1ISayTHFCWtYcNxOT2NG4E9oeXfQrq8,17198
|
163
|
+
not1mm/plugins/labre_rs_digi.py,sha256=93awbxHK2Wi_XZWvUvtaZlQaxpoyX-ev_uj5lm0IZ60,20125
|
164
|
+
not1mm/plugins/lz-dx.py,sha256=hP6APYus4AFpz1rMxU82mq7ZB15_hwgsfuR4qInEG6k,19886
|
165
|
+
not1mm/plugins/naqp_cw.py,sha256=2XOukhvsJ3rys8VYlO86aX86SXny2GHylfKzggBgPfo,18961
|
166
|
+
not1mm/plugins/naqp_rtty.py,sha256=9FiNHoxNn1j-EZ7EFwtl8p-E9uzrX7oq-AB2vRaIAkY,22701
|
167
|
+
not1mm/plugins/naqp_ssb.py,sha256=QoJfdVrH5wOfQZy3wGT5fBWM2aCukNMGrf7yIdM5BSU,17878
|
168
|
+
not1mm/plugins/phone_weekly_test.py,sha256=WZ7iCoA-JwKjBIPKavV0cmqXnPhEHEQNaGm_BeFZkKQ,16372
|
169
|
+
not1mm/plugins/raem.py,sha256=EWoUWhuYrLaR6lRz8fDG09GT4AyZNuf7LlkKg1i1aYc,19624
|
170
170
|
not1mm/plugins/randomgram.py,sha256=h68Ul57maCRhZOou7jU4_B1Dfd3d4n5r-Qzex80yJOk,7401
|
171
|
-
not1mm/plugins/ref_cw.py,sha256=
|
172
|
-
not1mm/plugins/ref_ssb.py,sha256=
|
173
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
174
|
-
not1mm/plugins/weekly_rtty.py,sha256=
|
175
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
176
|
-
not1mm-25.3.
|
177
|
-
not1mm-25.3.
|
178
|
-
not1mm-25.3.
|
179
|
-
not1mm-25.3.
|
180
|
-
not1mm-25.3.
|
181
|
-
not1mm-25.3.
|
171
|
+
not1mm/plugins/ref_cw.py,sha256=SY-U-DSyhkTFrsQ6ZLYAt0jTWKa8z05rIZiQ8sTQC-U,21382
|
172
|
+
not1mm/plugins/ref_ssb.py,sha256=cUFUtbe7-5rwZZHEzpPnaIAnwrwayqBvtgctxQDF5Gw,21592
|
173
|
+
not1mm/plugins/stew_perry_topband.py,sha256=3U-Dr28haBTqTaZWLiC1qHQBmLsLENDL-ihyddPpJbg,15403
|
174
|
+
not1mm/plugins/weekly_rtty.py,sha256=C8Xs3Q5UgSYx-mFFar8BVARWtmqlyrbeC98Ubzb4UN8,20128
|
175
|
+
not1mm/plugins/winter_field_day.py,sha256=hmAMgkdqIXtnCNyUp8J9Bb8liN8wj10wps6ROuG-Bok,15284
|
176
|
+
not1mm-25.3.26.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
177
|
+
not1mm-25.3.26.dist-info/METADATA,sha256=ctRZxwTGcU_OPyasV_iuRKVGNtp1Vw6R9lz7HXPsURI,37470
|
178
|
+
not1mm-25.3.26.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
179
|
+
not1mm-25.3.26.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
180
|
+
not1mm-25.3.26.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
181
|
+
not1mm-25.3.26.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|