not1mm 24.10.15__py3-none-any.whl → 24.10.17__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 +3 -0
- not1mm/checkwindow.py +12 -3
- not1mm/data/main.ui +1 -1
- not1mm/lib/cat_interface.py +1 -1
- not1mm/lib/version.py +1 -1
- not1mm/plugins/cq_wpx_cw.py +2 -2
- not1mm/plugins/cq_wpx_rtty.py +2 -2
- not1mm/plugins/cq_wpx_ssb.py +2 -2
- not1mm/plugins/cq_ww_cw.py +11 -15
- not1mm/plugins/cq_ww_rtty.py +2 -2
- not1mm/plugins/cq_ww_ssb.py +2 -2
- not1mm/plugins/cwt.py +2 -2
- not1mm/plugins/k1usn_sst.py +2 -2
- not1mm/plugins/naqp_cw.py +2 -2
- not1mm/plugins/naqp_rtty.py +2 -2
- not1mm/plugins/naqp_ssb.py +2 -2
- not1mm/plugins/weekly_rtty.py +2 -2
- not1mm/radio.py +1 -1
- not1mm/test.py +11 -0
- {not1mm-24.10.15.dist-info → not1mm-24.10.17.dist-info}/METADATA +3 -1
- {not1mm-24.10.15.dist-info → not1mm-24.10.17.dist-info}/RECORD +25 -25
- {not1mm-24.10.15.dist-info → not1mm-24.10.17.dist-info}/WHEEL +1 -1
- {not1mm-24.10.15.dist-info → not1mm-24.10.17.dist-info}/LICENSE +0 -0
- {not1mm-24.10.15.dist-info → not1mm-24.10.17.dist-info}/entry_points.txt +0 -0
- {not1mm-24.10.15.dist-info → not1mm-24.10.17.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -654,6 +654,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
654
654
|
self.actionCheck_Window.setChecked(self.pref.get("checkwindow", False))
|
655
655
|
if self.actionCheck_Window.isChecked():
|
656
656
|
self.check_window.show()
|
657
|
+
self.check_window.setActive(True)
|
657
658
|
|
658
659
|
self.actionVFO.setChecked(self.pref.get("vfowindow", False))
|
659
660
|
if self.actionVFO.isChecked():
|
@@ -1631,8 +1632,10 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1631
1632
|
self.write_preference()
|
1632
1633
|
if self.actionCheck_Window.isChecked():
|
1633
1634
|
self.check_window.show()
|
1635
|
+
self.check_window.setActive(True)
|
1634
1636
|
else:
|
1635
1637
|
self.check_window.hide()
|
1638
|
+
self.check_window.setActive(False)
|
1636
1639
|
|
1637
1640
|
def launch_vfo(self) -> None:
|
1638
1641
|
"""Launch the VFO window"""
|
not1mm/checkwindow.py
CHANGED
@@ -47,6 +47,7 @@ class CheckWindow(QDockWidget):
|
|
47
47
|
|
48
48
|
def __init__(self):
|
49
49
|
super().__init__()
|
50
|
+
self.active = False
|
50
51
|
self.load_pref()
|
51
52
|
self.dbname = fsutils.USER_DATA_PATH / self.pref.get(
|
52
53
|
"current_database", "ham.db"
|
@@ -65,6 +66,11 @@ class CheckWindow(QDockWidget):
|
|
65
66
|
)
|
66
67
|
self.multicast_interface.ready_read_connect(self.watch_udp)
|
67
68
|
|
69
|
+
def setActive(self, mode: bool):
|
70
|
+
self.active = bool(mode)
|
71
|
+
|
72
|
+
print(f"{self.active=}")
|
73
|
+
|
68
74
|
def item_clicked(self, item):
|
69
75
|
"""docstring for item_clicked"""
|
70
76
|
if item:
|
@@ -159,8 +165,14 @@ class CheckWindow(QDockWidget):
|
|
159
165
|
|
160
166
|
if json_data.get("station", "") != platform.node():
|
161
167
|
continue
|
168
|
+
if json_data.get("cmd", "") == "DARKMODE":
|
169
|
+
self.setDarkMode(json_data.get("state", False))
|
170
|
+
continue
|
162
171
|
if json_data.get("cmd", "") == "UPDATELOG":
|
163
172
|
self.clear_lists()
|
173
|
+
continue
|
174
|
+
if self.active is False:
|
175
|
+
continue
|
164
176
|
if json_data.get("cmd", "") == "CALLCHANGED":
|
165
177
|
call = json_data.get("call", "")
|
166
178
|
self.call = call
|
@@ -176,9 +188,6 @@ class CheckWindow(QDockWidget):
|
|
176
188
|
...
|
177
189
|
# self.load_new_db()
|
178
190
|
|
179
|
-
if json_data.get("cmd", "") == "DARKMODE":
|
180
|
-
self.setDarkMode(json_data.get("state", False))
|
181
|
-
|
182
191
|
def clear_lists(self) -> None:
|
183
192
|
"""
|
184
193
|
Clear match lists.
|
not1mm/data/main.ui
CHANGED
not1mm/lib/cat_interface.py
CHANGED
@@ -90,7 +90,7 @@ class CAT:
|
|
90
90
|
def __initialize_rigctrld(self):
|
91
91
|
try:
|
92
92
|
self.rigctrlsocket = socket.socket()
|
93
|
-
self.rigctrlsocket.settimeout(0.
|
93
|
+
self.rigctrlsocket.settimeout(0.05)
|
94
94
|
self.rigctrlsocket.connect((self.host, self.port))
|
95
95
|
logger.debug("Connected to rigctrld")
|
96
96
|
self.online = True
|
not1mm/lib/version.py
CHANGED
not1mm/plugins/cq_wpx_cw.py
CHANGED
@@ -480,7 +480,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
480
480
|
if len(self.callsign.text()) < 3:
|
481
481
|
self.make_button_green(self.esm_dict["CQ"])
|
482
482
|
buttons_to_send.append(self.esm_dict["CQ"])
|
483
|
-
elif len(self.callsign.text()) > 2
|
483
|
+
elif len(self.callsign.text()) > 2:
|
484
484
|
self.make_button_green(self.esm_dict["HISCALL"])
|
485
485
|
self.make_button_green(self.esm_dict["EXCH"])
|
486
486
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -507,7 +507,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
507
507
|
self.process_function_key(button)
|
508
508
|
else:
|
509
509
|
if self.current_widget == "callsign":
|
510
|
-
if len(self.callsign.text()) > 2
|
510
|
+
if len(self.callsign.text()) > 2:
|
511
511
|
self.make_button_green(self.esm_dict["MYCALL"])
|
512
512
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
513
513
|
|
not1mm/plugins/cq_wpx_rtty.py
CHANGED
@@ -557,7 +557,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
557
557
|
if len(self.callsign.text()) < 3:
|
558
558
|
self.make_button_green(self.esm_dict["CQ"])
|
559
559
|
buttons_to_send.append(self.esm_dict["CQ"])
|
560
|
-
elif len(self.callsign.text()) > 2
|
560
|
+
elif len(self.callsign.text()) > 2:
|
561
561
|
self.make_button_green(self.esm_dict["HISCALL"])
|
562
562
|
self.make_button_green(self.esm_dict["EXCH"])
|
563
563
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -586,7 +586,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
586
586
|
self.fldigi_util.send_string(sendstring)
|
587
587
|
else:
|
588
588
|
if self.current_widget == "callsign":
|
589
|
-
if len(self.callsign.text()) > 2
|
589
|
+
if len(self.callsign.text()) > 2:
|
590
590
|
self.make_button_green(self.esm_dict["MYCALL"])
|
591
591
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
592
592
|
|
not1mm/plugins/cq_wpx_ssb.py
CHANGED
@@ -443,7 +443,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
443
443
|
if len(self.callsign.text()) < 3:
|
444
444
|
self.make_button_green(self.esm_dict["CQ"])
|
445
445
|
buttons_to_send.append(self.esm_dict["CQ"])
|
446
|
-
elif len(self.callsign.text()) > 2
|
446
|
+
elif len(self.callsign.text()) > 2:
|
447
447
|
self.make_button_green(self.esm_dict["HISCALL"])
|
448
448
|
self.make_button_green(self.esm_dict["EXCH"])
|
449
449
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -470,7 +470,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
470
470
|
self.process_function_key(button)
|
471
471
|
else:
|
472
472
|
if self.current_widget == "callsign":
|
473
|
-
if len(self.callsign.text()) > 2
|
473
|
+
if len(self.callsign.text()) > 2:
|
474
474
|
self.make_button_green(self.esm_dict["MYCALL"])
|
475
475
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
476
476
|
|
not1mm/plugins/cq_ww_cw.py
CHANGED
@@ -409,20 +409,16 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
409
409
|
# print(f"checking esm {self.current_widget=} {with_enter=} {self.pref.get("run_state")=}")
|
410
410
|
|
411
411
|
for a_button in [
|
412
|
-
self.
|
413
|
-
self.
|
414
|
-
self.
|
415
|
-
self.
|
416
|
-
self.
|
417
|
-
self.
|
418
|
-
self.
|
419
|
-
self.F8,
|
420
|
-
self.F9,
|
421
|
-
self.F10,
|
422
|
-
self.F11,
|
423
|
-
self.F12,
|
412
|
+
self.esm_dict["CQ"],
|
413
|
+
self.esm_dict["EXCH"],
|
414
|
+
self.esm_dict["QRZ"],
|
415
|
+
self.esm_dict["AGN"],
|
416
|
+
self.esm_dict["HISCALL"],
|
417
|
+
self.esm_dict["MYCALL"],
|
418
|
+
self.esm_dict["QSOB4"],
|
424
419
|
]:
|
425
|
-
|
420
|
+
if a_button is not None:
|
421
|
+
self.restore_button_color(a_button)
|
426
422
|
|
427
423
|
buttons_to_send = []
|
428
424
|
|
@@ -431,7 +427,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
431
427
|
if len(self.callsign.text()) < 3:
|
432
428
|
self.make_button_green(self.esm_dict["CQ"])
|
433
429
|
buttons_to_send.append(self.esm_dict["CQ"])
|
434
|
-
elif len(self.callsign.text()) > 2
|
430
|
+
elif len(self.callsign.text()) > 2:
|
435
431
|
self.make_button_green(self.esm_dict["HISCALL"])
|
436
432
|
self.make_button_green(self.esm_dict["EXCH"])
|
437
433
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -458,7 +454,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
458
454
|
self.process_function_key(button)
|
459
455
|
else:
|
460
456
|
if self.current_widget == "callsign":
|
461
|
-
if len(self.callsign.text()) > 2
|
457
|
+
if len(self.callsign.text()) > 2:
|
462
458
|
self.make_button_green(self.esm_dict["MYCALL"])
|
463
459
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
464
460
|
|
not1mm/plugins/cq_ww_rtty.py
CHANGED
@@ -546,7 +546,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
546
546
|
if len(self.callsign.text()) < 3:
|
547
547
|
self.make_button_green(self.esm_dict["CQ"])
|
548
548
|
buttons_to_send.append(self.esm_dict["CQ"])
|
549
|
-
elif len(self.callsign.text()) > 2
|
549
|
+
elif len(self.callsign.text()) > 2:
|
550
550
|
self.make_button_green(self.esm_dict["HISCALL"])
|
551
551
|
self.make_button_green(self.esm_dict["EXCH"])
|
552
552
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -575,7 +575,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
575
575
|
self.fldigi_util.send_string(sendstring)
|
576
576
|
else:
|
577
577
|
if self.current_widget == "callsign":
|
578
|
-
if len(self.callsign.text()) > 2
|
578
|
+
if len(self.callsign.text()) > 2:
|
579
579
|
self.make_button_green(self.esm_dict["MYCALL"])
|
580
580
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
581
581
|
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
@@ -429,7 +429,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
429
429
|
if len(self.callsign.text()) < 3:
|
430
430
|
self.make_button_green(self.esm_dict["CQ"])
|
431
431
|
buttons_to_send.append(self.esm_dict["CQ"])
|
432
|
-
elif len(self.callsign.text()) > 2
|
432
|
+
elif len(self.callsign.text()) > 2:
|
433
433
|
self.make_button_green(self.esm_dict["HISCALL"])
|
434
434
|
self.make_button_green(self.esm_dict["EXCH"])
|
435
435
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -456,7 +456,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
456
456
|
self.process_function_key(button)
|
457
457
|
else:
|
458
458
|
if self.current_widget == "callsign":
|
459
|
-
if len(self.callsign.text()) > 2
|
459
|
+
if len(self.callsign.text()) > 2:
|
460
460
|
self.make_button_green(self.esm_dict["MYCALL"])
|
461
461
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
462
462
|
|
not1mm/plugins/cwt.py
CHANGED
@@ -441,7 +441,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
441
441
|
if len(self.callsign.text()) < 3:
|
442
442
|
self.make_button_green(self.esm_dict["CQ"])
|
443
443
|
buttons_to_send.append(self.esm_dict["CQ"])
|
444
|
-
elif len(self.callsign.text()) > 2
|
444
|
+
elif len(self.callsign.text()) > 2:
|
445
445
|
self.make_button_green(self.esm_dict["HISCALL"])
|
446
446
|
self.make_button_green(self.esm_dict["EXCH"])
|
447
447
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -467,7 +467,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
467
467
|
self.process_function_key(button)
|
468
468
|
else:
|
469
469
|
if self.current_widget == "callsign":
|
470
|
-
if len(self.callsign.text()) > 2
|
470
|
+
if len(self.callsign.text()) > 2:
|
471
471
|
self.make_button_green(self.esm_dict["MYCALL"])
|
472
472
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
473
473
|
|
not1mm/plugins/k1usn_sst.py
CHANGED
@@ -416,7 +416,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
416
416
|
if len(self.callsign.text()) < 3:
|
417
417
|
self.make_button_green(self.esm_dict["CQ"])
|
418
418
|
buttons_to_send.append(self.esm_dict["CQ"])
|
419
|
-
elif len(self.callsign.text()) > 2
|
419
|
+
elif len(self.callsign.text()) > 2:
|
420
420
|
self.make_button_green(self.esm_dict["HISCALL"])
|
421
421
|
self.make_button_green(self.esm_dict["EXCH"])
|
422
422
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -442,7 +442,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
442
442
|
self.process_function_key(button)
|
443
443
|
else:
|
444
444
|
if self.current_widget == "callsign":
|
445
|
-
if len(self.callsign.text()) > 2
|
445
|
+
if len(self.callsign.text()) > 2:
|
446
446
|
self.make_button_green(self.esm_dict["MYCALL"])
|
447
447
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
448
448
|
|
not1mm/plugins/naqp_cw.py
CHANGED
@@ -442,7 +442,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
442
442
|
if len(self.callsign.text()) < 3:
|
443
443
|
self.make_button_green(self.esm_dict["CQ"])
|
444
444
|
buttons_to_send.append(self.esm_dict["CQ"])
|
445
|
-
elif len(self.callsign.text()) > 2
|
445
|
+
elif len(self.callsign.text()) > 2:
|
446
446
|
self.make_button_green(self.esm_dict["HISCALL"])
|
447
447
|
self.make_button_green(self.esm_dict["EXCH"])
|
448
448
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -483,7 +483,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
483
483
|
self.process_function_key(button)
|
484
484
|
else:
|
485
485
|
if self.current_widget == "callsign":
|
486
|
-
if len(self.callsign.text()) > 2
|
486
|
+
if len(self.callsign.text()) > 2:
|
487
487
|
self.make_button_green(self.esm_dict["MYCALL"])
|
488
488
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
489
489
|
|
not1mm/plugins/naqp_rtty.py
CHANGED
@@ -547,7 +547,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
547
547
|
if len(self.callsign.text()) < 3:
|
548
548
|
self.make_button_green(self.esm_dict["CQ"])
|
549
549
|
buttons_to_send.append(self.esm_dict["CQ"])
|
550
|
-
elif len(self.callsign.text()) > 2
|
550
|
+
elif len(self.callsign.text()) > 2:
|
551
551
|
self.make_button_green(self.esm_dict["HISCALL"])
|
552
552
|
self.make_button_green(self.esm_dict["EXCH"])
|
553
553
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -590,7 +590,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
590
590
|
self.fldigi_util.send_string(sendstring)
|
591
591
|
else:
|
592
592
|
if self.current_widget == "callsign":
|
593
|
-
if len(self.callsign.text()) > 2
|
593
|
+
if len(self.callsign.text()) > 2:
|
594
594
|
self.make_button_green(self.esm_dict["MYCALL"])
|
595
595
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
596
596
|
|
not1mm/plugins/naqp_ssb.py
CHANGED
@@ -412,7 +412,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
412
412
|
if len(self.callsign.text()) < 3:
|
413
413
|
self.make_button_green(self.esm_dict["CQ"])
|
414
414
|
buttons_to_send.append(self.esm_dict["CQ"])
|
415
|
-
elif len(self.callsign.text()) > 2
|
415
|
+
elif len(self.callsign.text()) > 2:
|
416
416
|
self.make_button_green(self.esm_dict["HISCALL"])
|
417
417
|
self.make_button_green(self.esm_dict["EXCH"])
|
418
418
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -453,7 +453,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
453
453
|
self.process_function_key(button)
|
454
454
|
else:
|
455
455
|
if self.current_widget == "callsign":
|
456
|
-
if len(self.callsign.text()) > 2
|
456
|
+
if len(self.callsign.text()) > 2:
|
457
457
|
self.make_button_green(self.esm_dict["MYCALL"])
|
458
458
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
459
459
|
|
not1mm/plugins/weekly_rtty.py
CHANGED
@@ -491,7 +491,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
491
491
|
if len(self.callsign.text()) < 3:
|
492
492
|
self.make_button_green(self.esm_dict["CQ"])
|
493
493
|
buttons_to_send.append(self.esm_dict["CQ"])
|
494
|
-
elif len(self.callsign.text()) > 2
|
494
|
+
elif len(self.callsign.text()) > 2:
|
495
495
|
self.make_button_green(self.esm_dict["HISCALL"])
|
496
496
|
self.make_button_green(self.esm_dict["EXCH"])
|
497
497
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -520,7 +520,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
520
520
|
self.fldigi_util.send_string(sendstring)
|
521
521
|
else:
|
522
522
|
if self.current_widget == "callsign":
|
523
|
-
if len(self.callsign.text()) > 2
|
523
|
+
if len(self.callsign.text()) > 2:
|
524
524
|
self.make_button_green(self.esm_dict["MYCALL"])
|
525
525
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
526
526
|
|
not1mm/radio.py
CHANGED
not1mm/test.py
CHANGED
@@ -0,0 +1,11 @@
|
|
1
|
+
from dasbus.connection import SessionMessageBus
|
2
|
+
|
3
|
+
bus = SessionMessageBus()
|
4
|
+
|
5
|
+
proxy = bus.get_proxy("org.freedesktop.Notifications", "/org/freedesktop/Notifications")
|
6
|
+
|
7
|
+
id = proxy.Notify(
|
8
|
+
"weenes", 0, "face-smile", "My notification", "Hello World!", [], {}, 0
|
9
|
+
)
|
10
|
+
|
11
|
+
print("The notification {} was sent.".format(id))
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.10.
|
3
|
+
Version: 24.10.17
|
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
|
@@ -231,6 +231,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
231
231
|
|
232
232
|
## Recent Changes
|
233
233
|
|
234
|
+
- [24-10-17] Increased max CW speed to 99, 'cause people be crazy. Trying smaller timeout for the rigctlsocket. Not having the checkwindow process events while not visible since it's a resource hog.
|
235
|
+
- [24-10-15-1] Fix callsigns with a slash failing check during ESM.
|
234
236
|
- [24-10-15] Add NAQP RTTY, Added ESM to NAQP.
|
235
237
|
- [24-10-14] Add ESM to CQ WPX.
|
236
238
|
- [24-10-13] Added ESM to Weekly RTTY, K1USN and CWT.
|
@@ -1,12 +1,12 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=s8w0EzYbaFebadv4acHR_wSybmWHQMdo_dhUPECNP4U,135195
|
3
3
|
not1mm/bandmap.py,sha256=P91rYGmd8r5K6TRNZt7kqqW6zCBVlFA1_n9-V7as1WE,31672
|
4
|
-
not1mm/checkwindow.py,sha256=
|
4
|
+
not1mm/checkwindow.py,sha256=ti3dWQuFgKAZHS6oyjZ9rAhn5ySAEBQeA6KUWv9x4n8,10618
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
6
6
|
not1mm/logwindow.py,sha256=pwhiwolmGnW01LF4sjlu3ywLsgfxL6KuGuKuYKYmgeY,44403
|
7
7
|
not1mm/lookupservice.py,sha256=jsFg5tsB9cVnahLP-hI3CMwbjlEpMx944O8RLWntAy4,3342
|
8
|
-
not1mm/radio.py,sha256=
|
9
|
-
not1mm/test.py,sha256=
|
8
|
+
not1mm/radio.py,sha256=TBrI2g2mDRxMaNifuL70k8soyc12QMppaLeDumlyOkM,4498
|
9
|
+
not1mm/test.py,sha256=atZoDXL9DArK4dS8gBCDmlMt5AHuiVZmFOQIp62hDHg,314
|
10
10
|
not1mm/vfo.py,sha256=IvmUQYMIPzLJw_BHQGis4J_IEW-vlBtdfxZLXPh7OzI,12335
|
11
11
|
not1mm/voice_keying.py,sha256=sA3gw5_k7kShTg2qhG7HkKDM5M6KheJVRkAc_C7mxDk,3006
|
12
12
|
not1mm/data/JetBrainsMono-ExtraLight.ttf,sha256=g5Hn7BPounWMGDj1a8zZcyKMz03HSqW__pUluRR7Evg,274144
|
@@ -30,7 +30,7 @@ not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcC
|
|
30
30
|
not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N90,2925
|
31
31
|
not1mm/data/logwindow.ui,sha256=f7vULj96tHIQuR1nJMyvPHHcmVgzkhv9D1isyojsnFU,1458
|
32
32
|
not1mm/data/logwindowx.ui,sha256=CwpI-h7cI1yqyldH9quKftsdHL5lTyL9ABOcf80nfqc,1632
|
33
|
-
not1mm/data/main.ui,sha256=
|
33
|
+
not1mm/data/main.ui,sha256=gQu3tpph-eN-TawrfkmqQ0MMWqRKB1Qrwpo5Eo19ljo,61886
|
34
34
|
not1mm/data/new_contest.ui,sha256=zqNza6syjqZdVFKS57gzMCL4vD7Fg9n_wO3mS7DDXpg,23222
|
35
35
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
36
36
|
not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
|
@@ -94,7 +94,7 @@ not1mm/data/phonetics/yourcall.wav,sha256=4kheHJmCiRDL2kjhlgXQ8_u_eEMgKxiNGu5UBk
|
|
94
94
|
not1mm/data/phonetics/z.wav,sha256=arafCi7fwmBLdVDI-PRyaL4U-03PIQDhffwY5noJ_2c,51768
|
95
95
|
not1mm/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
96
|
not1mm/lib/about.py,sha256=sWycfGcruN3SaEe4JmaJ61K6D8Itq0WxpUYT-lEcmYM,416
|
97
|
-
not1mm/lib/cat_interface.py,sha256=
|
97
|
+
not1mm/lib/cat_interface.py,sha256=KRmgStszfMDNxfUSdbyt5M8-z09dwzXslRFPq5Ctl3g,21460
|
98
98
|
not1mm/lib/cwinterface.py,sha256=3H_Ur5qtZCg6AA-CBURdnS3IUcvs3YAcwYLO0S8SUBg,3621
|
99
99
|
not1mm/lib/database.py,sha256=nUVG5H2Dy98PGp6Qdr3xU7zM8-8-IiyqRkXZWlWzIe8,44446
|
100
100
|
not1mm/lib/edit_contact.py,sha256=Ki9bGPpqyQQBB1cU8VIBDCal3lbXeQ6qxhzklmhE2_w,353
|
@@ -114,7 +114,7 @@ not1mm/lib/plugin_common.py,sha256=TbFUbftjELFt4QRdsjSHbqnXSngZOlSwlCTClqosDXA,9
|
|
114
114
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
115
115
|
not1mm/lib/settings.py,sha256=7_JFDSKPOd35Gwzqhrbed4EfrlYUm7AEnz2xBRioc-g,13280
|
116
116
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
117
|
-
not1mm/lib/version.py,sha256=
|
117
|
+
not1mm/lib/version.py,sha256=sFYzTFXRYft_xfFVgvlrs8mCsUaHf8ts7jr1L3r0eY8,49
|
118
118
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
119
119
|
not1mm/plugins/10_10_fall_cw.py,sha256=IttjX1yy4nDdACGsiYlPteFG8eVseX_WtoFio6bqHE8,10953
|
120
120
|
not1mm/plugins/10_10_spring_cw.py,sha256=ThCptdM3dX4ywhoy2JRcOEyHSqcJolFaT7O_PYzM1Mg,10958
|
@@ -134,13 +134,13 @@ not1mm/plugins/arrl_vhf_sep.py,sha256=3f5mmXuoe7jt6A8FXFBwentO3lyGMCHSgtkiDcX4Uu
|
|
134
134
|
not1mm/plugins/canada_day.py,sha256=OVpcCl1Chse_zLHf6PayTrgawWM4W-pmrTw40Al-o9s,11998
|
135
135
|
not1mm/plugins/cq_160_cw.py,sha256=5s6rIZdJEnmWe1SI06BEyz7p5vP0N2n9mI4l_mZ0icw,14139
|
136
136
|
not1mm/plugins/cq_160_ssb.py,sha256=zIwSMAjHSt6W2edrDzVbyTf860JowHoFkU9BKO8Enag,14182
|
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=
|
137
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=ZFbcXI8vykXsgMI51YtjM0eQaDOiL0fLG7oAUR1Hfuc,17589
|
138
|
+
not1mm/plugins/cq_wpx_rtty.py,sha256=6zucmuH4Ky5BpgIPVgLxhFv-_HbQdRc5VweutrbACH8,20408
|
139
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=g4pxNyWX18Ig_IDMbJo1u1T9kImw1feSAgjDZuLRbdY,16239
|
140
|
+
not1mm/plugins/cq_ww_cw.py,sha256=iN_nARIH70EzNIR2z0rPR7xYNXvVSkDkw5O68k4kxEk,15941
|
141
|
+
not1mm/plugins/cq_ww_rtty.py,sha256=B3q0hhmYJ3R50PJoyJ6d5GgATfIjM3Cm8m3OPMVLlhY,20702
|
142
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=tr3XPe0O6-aV_6-QnmWPFJu8S_QtZ68bsbb3l6PBOes,16086
|
143
|
+
not1mm/plugins/cwt.py,sha256=Jlhu19dpIlcAUFIP4Lrjz1raMok0yLyYg9cq7EQylys,16472
|
144
144
|
not1mm/plugins/general_logging.py,sha256=n-2es7erqK1ptwq_wwIKIwktptKN7ra2eWjAQlpXUac,3479
|
145
145
|
not1mm/plugins/helvetia.py,sha256=6aOO4uiLzFFgHA-A3xz6IRdCJpqPOAm0egKxP5Y_Ie0,15432
|
146
146
|
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=B_kh8d8LkC0va_iIiIzImOKAT8724yf9ceF-2eQdx1w,13301
|
@@ -149,18 +149,18 @@ not1mm/plugins/iaru_hf.py,sha256=-ROUo2gBkw3xB89t8bd-4f7_1hROw2VXZXVHLFdB62s,115
|
|
149
149
|
not1mm/plugins/icwc_mst.py,sha256=v8L5NX2QmTM7x8Po1mb4yfN-dGVIuqky5MIT-OjfaVY,11831
|
150
150
|
not1mm/plugins/jidx_cw.py,sha256=9oV4hDxMiGXa9wuYUNYOCsr-mz8LYB-4WMHBN8u2dFk,12153
|
151
151
|
not1mm/plugins/jidx_ph.py,sha256=T-V7-77SIwu-Jl55VIrbVFZlsBoc97mXtgbdde0GaiQ,11183
|
152
|
-
not1mm/plugins/k1usn_sst.py,sha256=
|
153
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
154
|
-
not1mm/plugins/naqp_rtty.py,sha256=
|
155
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
152
|
+
not1mm/plugins/k1usn_sst.py,sha256=a8U_335B1QVfgEjt_LeP6rYH1LiMyd4oJdi5NCEA1b0,15369
|
153
|
+
not1mm/plugins/naqp_cw.py,sha256=_J2Ee1LI1SHE3Mo1Vo6CQ3UiL0tk5yY4U8z9hxnDcBY,17448
|
154
|
+
not1mm/plugins/naqp_rtty.py,sha256=MsxQelJmmlwM8HMBO6tvfDLxCMyARrBELY65ZN_DD3A,21229
|
155
|
+
not1mm/plugins/naqp_ssb.py,sha256=sYcAB9dGihDgrRphTrCIoMbW003MNrjBQqOX6IrX6Bw,16365
|
156
156
|
not1mm/plugins/phone_weekly_test.py,sha256=fLpMe03WB9_KgRl6vMgQQt_aktFdqfNt2Sw81CTRAUs,12325
|
157
157
|
not1mm/plugins/ref_cw.py,sha256=aWjHHkqIKutjRUtzh09y5haFfnZK9poRQDWRQMDRxxU,16326
|
158
158
|
not1mm/plugins/stew_perry_topband.py,sha256=CKBQbYl4ETxhXJd2dma4fg_C5pag_s7Nf61SCztZtqE,10668
|
159
|
-
not1mm/plugins/weekly_rtty.py,sha256=
|
159
|
+
not1mm/plugins/weekly_rtty.py,sha256=ipgY-KlKlEHafnBg-_AFk9KhiXkGTvb4ENoezIeD7jU,18185
|
160
160
|
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
161
|
-
not1mm-24.10.
|
162
|
-
not1mm-24.10.
|
163
|
-
not1mm-24.10.
|
164
|
-
not1mm-24.10.
|
165
|
-
not1mm-24.10.
|
166
|
-
not1mm-24.10.
|
161
|
+
not1mm-24.10.17.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
162
|
+
not1mm-24.10.17.dist-info/METADATA,sha256=AaJ_R0r6_nDK1k0PxxfJ8xbPCeC4YdJ2Cs0HxLYVeE0,34132
|
163
|
+
not1mm-24.10.17.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
164
|
+
not1mm-24.10.17.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
165
|
+
not1mm-24.10.17.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
166
|
+
not1mm-24.10.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|