not1mm 24.11.18__py3-none-any.whl → 24.11.19__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 +1 -1
- not1mm/lib/plugin_common.py +20 -1
- not1mm/lib/version.py +1 -1
- not1mm/plugins/10_10_fall_cw.py +12 -24
- not1mm/plugins/10_10_spring_cw.py +12 -24
- not1mm/plugins/10_10_summer_phone.py +12 -22
- not1mm/plugins/10_10_winter_phone.py +12 -24
- not1mm/plugins/arrl_10m.py +16 -29
- not1mm/plugins/arrl_dx_cw.py +11 -22
- not1mm/plugins/arrl_dx_ssb.py +11 -22
- not1mm/plugins/arrl_field_day.py +14 -22
- not1mm/plugins/arrl_rtty_ru.py +10 -22
- not1mm/plugins/arrl_ss_cw.py +14 -29
- not1mm/plugins/arrl_ss_phone.py +14 -29
- not1mm/plugins/arrl_vhf_jan.py +14 -29
- not1mm/plugins/arrl_vhf_jun.py +14 -29
- not1mm/plugins/arrl_vhf_sep.py +14 -29
- not1mm/plugins/canada_day.py +14 -29
- not1mm/plugins/cq_160_cw.py +10 -24
- not1mm/plugins/cq_160_ssb.py +10 -24
- not1mm/plugins/cq_wpx_cw.py +12 -25
- not1mm/plugins/cq_wpx_rtty.py +12 -25
- not1mm/plugins/cq_wpx_ssb.py +14 -29
- not1mm/plugins/cq_ww_cw.py +11 -22
- not1mm/plugins/cq_ww_rtty.py +12 -26
- not1mm/plugins/cq_ww_ssb.py +11 -22
- not1mm/plugins/cwt.py +12 -26
- not1mm/plugins/darc_xmas.py +15 -31
- not1mm/plugins/general_logging.py +12 -26
- not1mm/plugins/helvetia.py +15 -26
- not1mm/plugins/iaru_fieldday_r1_cw.py +12 -25
- not1mm/plugins/iaru_fieldday_r1_ssb.py +12 -25
- not1mm/plugins/iaru_hf.py +11 -22
- not1mm/plugins/icwc_mst.py +136 -40
- not1mm/plugins/jidx_cw.py +102 -23
- not1mm/plugins/jidx_ph.py +106 -29
- not1mm/plugins/k1usn_sst.py +10 -16
- not1mm/plugins/lz-dx.py +17 -28
- not1mm/plugins/naqp_cw.py +11 -17
- not1mm/plugins/naqp_rtty.py +11 -17
- not1mm/plugins/naqp_ssb.py +11 -17
- not1mm/plugins/phone_weekly_test.py +101 -16
- not1mm/plugins/raem.py +26 -25
- not1mm/plugins/ref_cw.py +17 -28
- not1mm/plugins/ref_ssb.py +32 -28
- not1mm/plugins/stew_perry_topband.py +102 -16
- not1mm/plugins/weekly_rtty.py +17 -16
- not1mm/plugins/winter_field_day.py +28 -24
- {not1mm-24.11.18.dist-info → not1mm-24.11.19.dist-info}/METADATA +6 -5
- {not1mm-24.11.18.dist-info → not1mm-24.11.19.dist-info}/RECORD +54 -54
- {not1mm-24.11.18.dist-info → not1mm-24.11.19.dist-info}/LICENSE +0 -0
- {not1mm-24.11.18.dist-info → not1mm-24.11.19.dist-info}/WHEEL +0 -0
- {not1mm-24.11.18.dist-info → not1mm-24.11.19.dist-info}/entry_points.txt +0 -0
- {not1mm-24.11.18.dist-info → not1mm-24.11.19.dist-info}/top_level.txt +0 -0
@@ -75,10 +75,9 @@ def interface(self):
|
|
75
75
|
self.field3.show()
|
76
76
|
self.field4.hide()
|
77
77
|
self.snt_label.setText("SNT")
|
78
|
-
self.
|
79
|
-
|
80
|
-
|
81
|
-
self.field3.setAccessibleName("Grid")
|
78
|
+
self.sent.setAccessibleName("RST Sent")
|
79
|
+
self.other_label.setText("Grid")
|
80
|
+
self.other_1.setAccessibleName("Grid")
|
82
81
|
|
83
82
|
|
84
83
|
def reset_label(self):
|
@@ -88,24 +87,20 @@ def reset_label(self):
|
|
88
87
|
def set_tab_next(self):
|
89
88
|
"""Set TAB Advances"""
|
90
89
|
self.tab_next = {
|
91
|
-
self.callsign: self.
|
92
|
-
self.
|
93
|
-
|
94
|
-
|
95
|
-
self.field2.findChild(QtWidgets.QLineEdit): self.field3.findChild(
|
96
|
-
QtWidgets.QLineEdit
|
97
|
-
),
|
98
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.callsign,
|
90
|
+
self.callsign: self.other_1,
|
91
|
+
self.sent: self.other_1,
|
92
|
+
self.receive: self.other_1,
|
93
|
+
self.other_1: self.callsign,
|
99
94
|
}
|
100
95
|
|
101
96
|
|
102
97
|
def set_tab_prev(self):
|
103
98
|
"""Set TAB Advances"""
|
104
99
|
self.tab_prev = {
|
105
|
-
self.callsign: self.
|
106
|
-
self.
|
107
|
-
self.
|
108
|
-
self.
|
100
|
+
self.callsign: self.other_1,
|
101
|
+
self.sent: self.callsign,
|
102
|
+
self.receive: self.callsign,
|
103
|
+
self.other_1: self.callsign,
|
109
104
|
}
|
110
105
|
|
111
106
|
|
@@ -383,3 +378,94 @@ def check_call_history(self):
|
|
383
378
|
self.history_info.setText(f"{result.get('UserText','')}")
|
384
379
|
if self.other_1.text() == "":
|
385
380
|
self.other_1.setText(f"{result.get('Loc1', '')}")
|
381
|
+
|
382
|
+
|
383
|
+
def process_esm(self, new_focused_widget=None, with_enter=False):
|
384
|
+
"""ESM State Machine"""
|
385
|
+
|
386
|
+
# self.pref["run_state"]
|
387
|
+
|
388
|
+
# -----===== Assigned F-Keys =====-----
|
389
|
+
# self.esm_dict["CQ"]
|
390
|
+
# self.esm_dict["EXCH"]
|
391
|
+
# self.esm_dict["QRZ"]
|
392
|
+
# self.esm_dict["AGN"]
|
393
|
+
# self.esm_dict["HISCALL"]
|
394
|
+
# self.esm_dict["MYCALL"]
|
395
|
+
# self.esm_dict["QSOB4"]
|
396
|
+
|
397
|
+
# ----==== text fields ====----
|
398
|
+
# self.callsign
|
399
|
+
# self.sent
|
400
|
+
# self.receive
|
401
|
+
# self.other_1
|
402
|
+
# self.other_2
|
403
|
+
|
404
|
+
if new_focused_widget is not None:
|
405
|
+
self.current_widget = self.inputs_dict.get(new_focused_widget)
|
406
|
+
|
407
|
+
# print(f"checking esm {self.current_widget=} {with_enter=} {self.pref.get("run_state")=}")
|
408
|
+
|
409
|
+
for a_button in [
|
410
|
+
self.esm_dict["CQ"],
|
411
|
+
self.esm_dict["EXCH"],
|
412
|
+
self.esm_dict["QRZ"],
|
413
|
+
self.esm_dict["AGN"],
|
414
|
+
self.esm_dict["HISCALL"],
|
415
|
+
self.esm_dict["MYCALL"],
|
416
|
+
self.esm_dict["QSOB4"],
|
417
|
+
]:
|
418
|
+
if a_button is not None:
|
419
|
+
self.restore_button_color(a_button)
|
420
|
+
|
421
|
+
buttons_to_send = []
|
422
|
+
|
423
|
+
if self.pref.get("run_state"):
|
424
|
+
if self.current_widget == "callsign":
|
425
|
+
if len(self.callsign.text()) < 3:
|
426
|
+
self.make_button_green(self.esm_dict["CQ"])
|
427
|
+
buttons_to_send.append(self.esm_dict["CQ"])
|
428
|
+
elif len(self.callsign.text()) > 2:
|
429
|
+
self.make_button_green(self.esm_dict["HISCALL"])
|
430
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
431
|
+
buttons_to_send.append(self.esm_dict["HISCALL"])
|
432
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
433
|
+
|
434
|
+
elif self.current_widget in ["other_1", "other_2"]:
|
435
|
+
if self.other_1.text() == "":
|
436
|
+
self.make_button_green(self.esm_dict["AGN"])
|
437
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
438
|
+
else:
|
439
|
+
self.make_button_green(self.esm_dict["QRZ"])
|
440
|
+
buttons_to_send.append(self.esm_dict["QRZ"])
|
441
|
+
buttons_to_send.append("LOGIT")
|
442
|
+
|
443
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
444
|
+
for button in buttons_to_send:
|
445
|
+
if button:
|
446
|
+
if button == "LOGIT":
|
447
|
+
self.save_contact()
|
448
|
+
continue
|
449
|
+
self.process_function_key(button)
|
450
|
+
else:
|
451
|
+
if self.current_widget == "callsign":
|
452
|
+
if len(self.callsign.text()) > 2:
|
453
|
+
self.make_button_green(self.esm_dict["MYCALL"])
|
454
|
+
buttons_to_send.append(self.esm_dict["MYCALL"])
|
455
|
+
|
456
|
+
elif self.current_widget in ["other_1", "other_2"]:
|
457
|
+
if self.other_1.text() == "":
|
458
|
+
self.make_button_green(self.esm_dict["AGN"])
|
459
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
460
|
+
else:
|
461
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
462
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
463
|
+
buttons_to_send.append("LOGIT")
|
464
|
+
|
465
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
466
|
+
for button in buttons_to_send:
|
467
|
+
if button:
|
468
|
+
if button == "LOGIT":
|
469
|
+
self.save_contact()
|
470
|
+
continue
|
471
|
+
self.process_function_key(button)
|
not1mm/plugins/weekly_rtty.py
CHANGED
@@ -18,6 +18,13 @@
|
|
18
18
|
# Mail logs to: (none)
|
19
19
|
# Find rules at: https://radiosport.world/wrt.html
|
20
20
|
|
21
|
+
# Label and field names
|
22
|
+
# callsign_label, callsign
|
23
|
+
# snt_label, sent
|
24
|
+
# rcv_label, receive
|
25
|
+
# other_label, other_1
|
26
|
+
# exch_label, other_2
|
27
|
+
|
21
28
|
import datetime
|
22
29
|
import logging
|
23
30
|
import platform
|
@@ -69,12 +76,10 @@ def interface(self):
|
|
69
76
|
self.field2.hide()
|
70
77
|
self.field3.show()
|
71
78
|
self.field4.show()
|
72
|
-
|
73
|
-
|
74
|
-
self.
|
75
|
-
|
76
|
-
spc.setText("SPC")
|
77
|
-
self.field4.setAccessibleName("SPC")
|
79
|
+
self.other_label.setText("Name")
|
80
|
+
self.other_1.setAccessibleName("Name")
|
81
|
+
self.exch_label.setText("SPC")
|
82
|
+
self.other_2.setAccessibleName("SPC")
|
78
83
|
|
79
84
|
|
80
85
|
def reset_label(self):
|
@@ -84,22 +89,18 @@ def reset_label(self):
|
|
84
89
|
def set_tab_next(self):
|
85
90
|
"""Set TAB Advances"""
|
86
91
|
self.tab_next = {
|
87
|
-
self.callsign: self.
|
88
|
-
self.
|
89
|
-
|
90
|
-
),
|
91
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
92
|
+
self.callsign: self.other_1,
|
93
|
+
self.other_1: self.other_2,
|
94
|
+
self.other_2: self.callsign,
|
92
95
|
}
|
93
96
|
|
94
97
|
|
95
98
|
def set_tab_prev(self):
|
96
99
|
"""Set TAB Advances"""
|
97
100
|
self.tab_prev = {
|
98
|
-
self.callsign: self.
|
99
|
-
self.
|
100
|
-
self.
|
101
|
-
QtWidgets.QLineEdit
|
102
|
-
),
|
101
|
+
self.callsign: self.other_2,
|
102
|
+
self.other_1: self.callsign,
|
103
|
+
self.other_2: self.other_1,
|
103
104
|
}
|
104
105
|
|
105
106
|
|
@@ -2,6 +2,20 @@
|
|
2
2
|
|
3
3
|
# pylint: disable=invalid-name, unused-argument, unused-variable, c-extension-no-member
|
4
4
|
|
5
|
+
# Label and field names
|
6
|
+
# callsign_label, callsign
|
7
|
+
# snt_label, sent
|
8
|
+
# rcv_label, receive
|
9
|
+
# other_label, other_1
|
10
|
+
# exch_label, other_2
|
11
|
+
|
12
|
+
# command button names
|
13
|
+
# esc_stop
|
14
|
+
# log_it
|
15
|
+
# mark
|
16
|
+
# spot_it
|
17
|
+
# wipe
|
18
|
+
|
5
19
|
import datetime
|
6
20
|
import logging
|
7
21
|
|
@@ -48,12 +62,10 @@ def interface(self):
|
|
48
62
|
self.field2.hide()
|
49
63
|
self.field3.show()
|
50
64
|
self.field4.show()
|
51
|
-
|
52
|
-
|
53
|
-
self.
|
54
|
-
|
55
|
-
label.setText("Section")
|
56
|
-
self.field4.setAccessibleName("Section")
|
65
|
+
self.other_label.setText("Class")
|
66
|
+
self.other_1.setAccessibleName("Class")
|
67
|
+
self.exch_label.setText("Section")
|
68
|
+
self.other_2.setAccessibleName("Section")
|
57
69
|
|
58
70
|
|
59
71
|
def reset_label(self):
|
@@ -63,30 +75,22 @@ def reset_label(self):
|
|
63
75
|
def set_tab_next(self):
|
64
76
|
"""Set TAB Advances"""
|
65
77
|
self.tab_next = {
|
66
|
-
self.callsign: self.
|
67
|
-
self.
|
68
|
-
|
69
|
-
|
70
|
-
self.
|
71
|
-
QtWidgets.QLineEdit
|
72
|
-
),
|
73
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field4.findChild(
|
74
|
-
QtWidgets.QLineEdit
|
75
|
-
),
|
76
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
78
|
+
self.callsign: self.other_1,
|
79
|
+
self.sent: self.other_1,
|
80
|
+
self.receive: self.other_1,
|
81
|
+
self.other_1: self.other_2,
|
82
|
+
self.other_2: self.callsign,
|
77
83
|
}
|
78
84
|
|
79
85
|
|
80
86
|
def set_tab_prev(self):
|
81
87
|
"""Set TAB Advances"""
|
82
88
|
self.tab_prev = {
|
83
|
-
self.callsign: self.
|
84
|
-
self.
|
85
|
-
self.
|
86
|
-
self.
|
87
|
-
self.
|
88
|
-
QtWidgets.QLineEdit
|
89
|
-
),
|
89
|
+
self.callsign: self.other_2,
|
90
|
+
self.sent: self.callsign,
|
91
|
+
self.receive: self.callsign,
|
92
|
+
self.other_1: self.callsign,
|
93
|
+
self.other_2: self.other_1,
|
90
94
|
}
|
91
95
|
|
92
96
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.11.
|
3
|
+
Version: 24.11.19
|
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
|
@@ -223,21 +223,22 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
223
223
|
- **Helvetia**
|
224
224
|
- IARU Fieldday R1 CW, SSB
|
225
225
|
- IARU HF
|
226
|
-
- ICWC MST
|
227
|
-
- Japan International DX CW, SSB
|
226
|
+
- **ICWC MST**
|
227
|
+
- **Japan International DX CW, SSB**
|
228
228
|
- **K1USN Slow Speed Test**
|
229
229
|
- **LZ DX**
|
230
230
|
- **NAQP CW, RTTY, SSB**
|
231
|
-
- Phone Weekly Test
|
231
|
+
- **Phone Weekly Test**
|
232
232
|
- **RAEM**
|
233
233
|
- **RAC Canada Day**
|
234
234
|
- **REF CW, SSB**
|
235
|
-
- Stew Perry Topband
|
235
|
+
- **Stew Perry Topband**
|
236
236
|
- **Weekly RTTY**
|
237
237
|
- **Winter Field Day**
|
238
238
|
|
239
239
|
## Recent Changes (Polishing the Turd)
|
240
240
|
|
241
|
+
- [24-11-19] Added ESM to Stew Perry, Phone Weekly, Medium Speed Test and JIDX.
|
241
242
|
- [24-11-18] Accepted PR from dg9vh for the DARC XMAS Contest.
|
242
243
|
- [24-11-17] Accepted PR from dg9vh for the LZ DX contest.
|
243
244
|
- [24-11-15] Made checkwindow font bigger and match a little more contrasted.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=fgtaA-ZkoYL0I8tuA1X3iitHgUtiRXYYzT6_fbbjfPE,142248
|
3
3
|
not1mm/bandmap.py,sha256=X6mMHXS1kXBbUPZCaKgiVJ6Dz6DE6LEQqtEXfT3telg,30811
|
4
4
|
not1mm/checkwindow.py,sha256=VFAcKYTcoWhmIf91chwY6tyao9FQMWPiUkgDDkkWaog,9670
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -110,61 +110,61 @@ not1mm/lib/lookup.py,sha256=KECMDi9tflRDzgTLeDfDl7HGWWRHvW3HCjNHyyjoWaY,10835
|
|
110
110
|
not1mm/lib/multicast.py,sha256=KJcruI-bOuHfHXPjl3SGQhL6I9sKrygy-sdFSvxffUM,3255
|
111
111
|
not1mm/lib/n1mm.py,sha256=H54mpgJF0GAmKavM-nb5OAq2SJFWYkux4eMWWiSRxJc,6288
|
112
112
|
not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
113
|
-
not1mm/lib/plugin_common.py,sha256=
|
113
|
+
not1mm/lib/plugin_common.py,sha256=AABdx9DoTT8Znrup7AkfmKGC22hshMsEypiMqV0iKw0,10671
|
114
114
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
115
115
|
not1mm/lib/settings.py,sha256=Xt0WE2ro_kUYdugQ0Pe1SQX07MHrJ0jyQqDqAKKqxuU,13564
|
116
116
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
117
|
-
not1mm/lib/version.py,sha256=
|
117
|
+
not1mm/lib/version.py,sha256=TjfjB8wIB5oYQmLzecQzZe-pvYa2dd0cPEpXKiYh3AE,49
|
118
118
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
119
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
120
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
121
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
122
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
119
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=r2YkRNiMS_3hXrf3zeiijzW24roilyIXnwXwTd07X8M,11208
|
120
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=EBBcVgxDhtAK7cGHq9LOU6LhY9vSqlk7GEkApn3KRYM,11213
|
121
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=k_60LEPV7rS_QBGo_pfndkudgKPc59jgMPLTW_TqYMM,11326
|
122
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=8BPLi40zmHu86R3NmM0r2bdfjQN9e4tAXSqxcKEdeTE,11225
|
123
123
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
124
|
-
not1mm/plugins/arrl_10m.py,sha256=
|
125
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
126
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
127
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
128
|
-
not1mm/plugins/arrl_rtty_ru.py,sha256=
|
129
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
130
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
131
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
132
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
133
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
134
|
-
not1mm/plugins/canada_day.py,sha256=
|
135
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
136
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
137
|
-
not1mm/plugins/cq_wpx_cw.py,sha256=
|
138
|
-
not1mm/plugins/cq_wpx_rtty.py,sha256=
|
139
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
140
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
141
|
-
not1mm/plugins/cq_ww_rtty.py,sha256=
|
142
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
143
|
-
not1mm/plugins/cwt.py,sha256=
|
144
|
-
not1mm/plugins/darc_xmas.py,sha256=
|
145
|
-
not1mm/plugins/general_logging.py,sha256=
|
146
|
-
not1mm/plugins/helvetia.py,sha256=
|
147
|
-
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=
|
148
|
-
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=
|
149
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
150
|
-
not1mm/plugins/icwc_mst.py,sha256=
|
151
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
152
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
153
|
-
not1mm/plugins/k1usn_sst.py,sha256=
|
154
|
-
not1mm/plugins/lz-dx.py,sha256=
|
155
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
156
|
-
not1mm/plugins/naqp_rtty.py,sha256=
|
157
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
158
|
-
not1mm/plugins/phone_weekly_test.py,sha256=
|
159
|
-
not1mm/plugins/raem.py,sha256=
|
160
|
-
not1mm/plugins/ref_cw.py,sha256=
|
161
|
-
not1mm/plugins/ref_ssb.py,sha256=
|
162
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
163
|
-
not1mm/plugins/weekly_rtty.py,sha256=
|
164
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
165
|
-
not1mm-24.11.
|
166
|
-
not1mm-24.11.
|
167
|
-
not1mm-24.11.
|
168
|
-
not1mm-24.11.
|
169
|
-
not1mm-24.11.
|
170
|
-
not1mm-24.11.
|
124
|
+
not1mm/plugins/arrl_10m.py,sha256=CEumvlyRzW63uIPZKnUQ-vWWj_NEi_qItRRojHZxRrM,14047
|
125
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=1epTIf9TjeUCjYlpRDU54Ig3lJdXa2e5JZI9SCGE080,17400
|
126
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=IEZ6tlP9stW3Mdr5_qTBS77hjAUU43IpagyPjr0eqaQ,17403
|
127
|
+
not1mm/plugins/arrl_field_day.py,sha256=YEyXr1Ytllq12sCj54erOba0wrblwb0_bq51gj75OIQ,16478
|
128
|
+
not1mm/plugins/arrl_rtty_ru.py,sha256=npOuf7OxcF0BbvpXJuPOLwf0-wONbDlGW7_B_-BSFz0,7370
|
129
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=HlUsDqyPAZh9VuatcGJ7EDst4qfS6f35yv_nPPzYW7M,17162
|
130
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=_QWnat0y2LLoKTP9RF-sZBqxWxHNrKiPYopBpq8kKTs,16498
|
131
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=1KhMR4vAPz1Dan5K3Q5DyIlKB_imOj8aq1EIcV4BtHg,16494
|
132
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=yAv0d6d27UlcY-lPHiGptCEF9zWIkNh4ChYeTH9CHH0,15586
|
133
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=6pNU5yV2NrGnkOEEJcbXsgKJa8VsIwxKvfBayzSM3U0,15586
|
134
|
+
not1mm/plugins/canada_day.py,sha256=WxtIm0xl8vd8XUDHX3VQnjDzRhPXM1UR92Qjg99NLMY,15245
|
135
|
+
not1mm/plugins/cq_160_cw.py,sha256=mAMGyS0M02i-pJ6-aH3iDIUk55dSGDjsDJ6WEXEetro,15351
|
136
|
+
not1mm/plugins/cq_160_ssb.py,sha256=GSjoKLx8bktrGa0EWu3tvx3N3IjWKWNpzWFdH2t2E3Y,15394
|
137
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=H1H4xL-hx0sqU_8fSQYnNzO0ZcOLV-KSOQT9wPvIva0,17843
|
138
|
+
not1mm/plugins/cq_wpx_rtty.py,sha256=nT2lMdAM1pRu2jNKI4FpkGei9kEGX0XcF_24FkL0lnY,20662
|
139
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=Zjga12w_ISh4aZjCYZbpwN0x0032Prc8p7aIGI7HJFQ,16410
|
140
|
+
not1mm/plugins/cq_ww_cw.py,sha256=SAneVRI1UXhC8syYlFwLWH9mCWvQ44Nxhf0jhbMTaw0,17402
|
141
|
+
not1mm/plugins/cq_ww_rtty.py,sha256=Pfpr8xWJwp2NOci-WQMTUZaMpAtsUGq1jrIIUv6lQ2Y,21971
|
142
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=2zhIbqthXLekQhK22icOScegm6kYZLbmpPMZYEmIM5I,17001
|
143
|
+
not1mm/plugins/cwt.py,sha256=3gA1DqiXxj5NARdG5i0PyFmuq3XSXn6LisZxD5jFs4M,17034
|
144
|
+
not1mm/plugins/darc_xmas.py,sha256=GdtAQVCLogKGzZaexJfzsZms5SbLLlO1YweFPjgvYWw,18458
|
145
|
+
not1mm/plugins/general_logging.py,sha256=2-9We3wo6mbaNqE4GujgvpCsiaVYcNYloqDYO8MKQAc,2787
|
146
|
+
not1mm/plugins/helvetia.py,sha256=SRKn7jflfYPUNrvmErDM44af5YWUe57h7JkIwFSbT0Q,19609
|
147
|
+
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=b-WA-KcixXNTozO5lfqujeCBXFRuM_Ubm_9MIwlrhIs,13555
|
148
|
+
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=gQH2XQuE-ywaGq2sde-sPP1_C6_Y81v3FPDiE2BJixA,13560
|
149
|
+
not1mm/plugins/iaru_hf.py,sha256=PVdShWxugsn211ti8mfoWBveQyIkN8XFDMQO4tfNUEY,11846
|
150
|
+
not1mm/plugins/icwc_mst.py,sha256=K1tgNXiknGbnvxG4sEZQCgZnjI6x3OYRI_4Djmr8E2Q,15976
|
151
|
+
not1mm/plugins/jidx_cw.py,sha256=KJOE3fU0KVMqD5IqvnN3YDHPEwrMx3yJZBmCtAIP7WQ,15650
|
152
|
+
not1mm/plugins/jidx_ph.py,sha256=1l92EmDZJFRGZjR1VrISgFc8KoHVfmJvLsaVsuufIMs,14599
|
153
|
+
not1mm/plugins/k1usn_sst.py,sha256=71uO6nUf86J77qSQIiYl_H9EKa2iwyHijcMOk61q6uQ,16653
|
154
|
+
not1mm/plugins/lz-dx.py,sha256=I9k67Q9ifSfbrd0ptfr6nOsp6PGfzLifQlVLJYJeOBk,19505
|
155
|
+
not1mm/plugins/naqp_cw.py,sha256=oe0Ytx185hUGvebSc0vzFwdBOpNkIFRgGabGSmaV7H8,18576
|
156
|
+
not1mm/plugins/naqp_rtty.py,sha256=7bGe33TP4VSVgwv3-pPa8Xfkx0SXbe8sV-0LmTlOugo,22260
|
157
|
+
not1mm/plugins/naqp_ssb.py,sha256=j8XERJcwLsLi4Ts0Ol1lyk3JKP0_DStvHvd1jWI8M14,17493
|
158
|
+
not1mm/plugins/phone_weekly_test.py,sha256=zJfeczM3U5KcrK0KqSx_ABjNy6hldjiq_J9Q1rcKk9g,16216
|
159
|
+
not1mm/plugins/raem.py,sha256=pTL9fdpw9rXxyoIqWY0ptjkDoqmc7NxNyF4O_sBuW5o,19262
|
160
|
+
not1mm/plugins/ref_cw.py,sha256=yTWg6-MosGX-UyxO0N03GEsP46r0vOp1f00ZL9LGVmQ,20287
|
161
|
+
not1mm/plugins/ref_ssb.py,sha256=G2Gz4kApchmOZQVnBexEokSEvdb-mZWJAfyJ1D6JDGY,20498
|
162
|
+
not1mm/plugins/stew_perry_topband.py,sha256=Gy_vv6tgkR-3vmvsUVO0pVfHMkUJSxpt7G4secn0RH8,15084
|
163
|
+
not1mm/plugins/weekly_rtty.py,sha256=PI0_AtEdZZKGAuKnP-b2EYn9xwCN1Ablk38trbNP3Rc,19603
|
164
|
+
not1mm/plugins/winter_field_day.py,sha256=9w3tDL9ZWiENSTERc3vzDbBktvI7pnyNvlH6fDjAi08,14841
|
165
|
+
not1mm-24.11.19.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
166
|
+
not1mm-24.11.19.dist-info/METADATA,sha256=xHUlQiTW-vHdEhL_ucf88gQGfnM6VTia96FOyq4u91c,36490
|
167
|
+
not1mm-24.11.19.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
168
|
+
not1mm-24.11.19.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
169
|
+
not1mm-24.11.19.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
170
|
+
not1mm-24.11.19.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|