not1mm 24.10.15.1__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 -8
- not1mm/plugins/cq_wpx_rtty.py +2 -8
- not1mm/plugins/cq_wpx_ssb.py +2 -8
- not1mm/plugins/cq_ww_cw.py +11 -21
- not1mm/plugins/cq_ww_rtty.py +2 -8
- not1mm/plugins/cq_ww_ssb.py +2 -8
- not1mm/plugins/cwt.py +2 -8
- not1mm/plugins/k1usn_sst.py +2 -8
- not1mm/plugins/naqp_cw.py +2 -8
- not1mm/plugins/naqp_rtty.py +2 -8
- not1mm/plugins/naqp_ssb.py +2 -8
- not1mm/plugins/weekly_rtty.py +2 -8
- not1mm/radio.py +1 -1
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.dist-info}/METADATA +2 -1
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.dist-info}/RECORD +24 -24
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.dist-info}/WHEEL +1 -1
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.dist-info}/LICENSE +0 -0
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.dist-info}/entry_points.txt +0 -0
- {not1mm-24.10.15.1.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,10 +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 (
|
484
|
-
len(self.callsign.text()) > 2
|
485
|
-
and self.callsign.text().replace("/", "").isalnum()
|
486
|
-
):
|
483
|
+
elif len(self.callsign.text()) > 2:
|
487
484
|
self.make_button_green(self.esm_dict["HISCALL"])
|
488
485
|
self.make_button_green(self.esm_dict["EXCH"])
|
489
486
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -510,10 +507,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
510
507
|
self.process_function_key(button)
|
511
508
|
else:
|
512
509
|
if self.current_widget == "callsign":
|
513
|
-
if (
|
514
|
-
len(self.callsign.text()) > 2
|
515
|
-
and self.callsign.text().replace("/", "").isalnum()
|
516
|
-
):
|
510
|
+
if len(self.callsign.text()) > 2:
|
517
511
|
self.make_button_green(self.esm_dict["MYCALL"])
|
518
512
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
519
513
|
|
not1mm/plugins/cq_wpx_rtty.py
CHANGED
@@ -557,10 +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 (
|
561
|
-
len(self.callsign.text()) > 2
|
562
|
-
and self.callsign.text().replace("/", "").isalnum()
|
563
|
-
):
|
560
|
+
elif len(self.callsign.text()) > 2:
|
564
561
|
self.make_button_green(self.esm_dict["HISCALL"])
|
565
562
|
self.make_button_green(self.esm_dict["EXCH"])
|
566
563
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -589,10 +586,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
589
586
|
self.fldigi_util.send_string(sendstring)
|
590
587
|
else:
|
591
588
|
if self.current_widget == "callsign":
|
592
|
-
if (
|
593
|
-
len(self.callsign.text()) > 2
|
594
|
-
and self.callsign.text().replace("/", "").isalnum()
|
595
|
-
):
|
589
|
+
if len(self.callsign.text()) > 2:
|
596
590
|
self.make_button_green(self.esm_dict["MYCALL"])
|
597
591
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
598
592
|
|
not1mm/plugins/cq_wpx_ssb.py
CHANGED
@@ -443,10 +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 (
|
447
|
-
len(self.callsign.text()) > 2
|
448
|
-
and self.callsign.text().replace("/", "").isalnum()
|
449
|
-
):
|
446
|
+
elif len(self.callsign.text()) > 2:
|
450
447
|
self.make_button_green(self.esm_dict["HISCALL"])
|
451
448
|
self.make_button_green(self.esm_dict["EXCH"])
|
452
449
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -473,10 +470,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
473
470
|
self.process_function_key(button)
|
474
471
|
else:
|
475
472
|
if self.current_widget == "callsign":
|
476
|
-
if (
|
477
|
-
len(self.callsign.text()) > 2
|
478
|
-
and self.callsign.text().replace("/", "").isalnum()
|
479
|
-
):
|
473
|
+
if len(self.callsign.text()) > 2:
|
480
474
|
self.make_button_green(self.esm_dict["MYCALL"])
|
481
475
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
482
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,10 +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 (
|
435
|
-
len(self.callsign.text()) > 2
|
436
|
-
and self.callsign.text().replace("/", "").isalnum()
|
437
|
-
):
|
430
|
+
elif len(self.callsign.text()) > 2:
|
438
431
|
self.make_button_green(self.esm_dict["HISCALL"])
|
439
432
|
self.make_button_green(self.esm_dict["EXCH"])
|
440
433
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -461,10 +454,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
461
454
|
self.process_function_key(button)
|
462
455
|
else:
|
463
456
|
if self.current_widget == "callsign":
|
464
|
-
if (
|
465
|
-
len(self.callsign.text()) > 2
|
466
|
-
and self.callsign.text().replace("/", "").isalnum()
|
467
|
-
):
|
457
|
+
if len(self.callsign.text()) > 2:
|
468
458
|
self.make_button_green(self.esm_dict["MYCALL"])
|
469
459
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
470
460
|
|
not1mm/plugins/cq_ww_rtty.py
CHANGED
@@ -546,10 +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 (
|
550
|
-
len(self.callsign.text()) > 2
|
551
|
-
and self.callsign.text().replace("/", "").isalnum()
|
552
|
-
):
|
549
|
+
elif len(self.callsign.text()) > 2:
|
553
550
|
self.make_button_green(self.esm_dict["HISCALL"])
|
554
551
|
self.make_button_green(self.esm_dict["EXCH"])
|
555
552
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -578,10 +575,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
578
575
|
self.fldigi_util.send_string(sendstring)
|
579
576
|
else:
|
580
577
|
if self.current_widget == "callsign":
|
581
|
-
if (
|
582
|
-
len(self.callsign.text()) > 2
|
583
|
-
and self.callsign.text().replace("/", "").isalnum()
|
584
|
-
):
|
578
|
+
if len(self.callsign.text()) > 2:
|
585
579
|
self.make_button_green(self.esm_dict["MYCALL"])
|
586
580
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
587
581
|
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
@@ -429,10 +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 (
|
433
|
-
len(self.callsign.text()) > 2
|
434
|
-
and self.callsign.text().replace("/", "").isalnum()
|
435
|
-
):
|
432
|
+
elif len(self.callsign.text()) > 2:
|
436
433
|
self.make_button_green(self.esm_dict["HISCALL"])
|
437
434
|
self.make_button_green(self.esm_dict["EXCH"])
|
438
435
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -459,10 +456,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
459
456
|
self.process_function_key(button)
|
460
457
|
else:
|
461
458
|
if self.current_widget == "callsign":
|
462
|
-
if (
|
463
|
-
len(self.callsign.text()) > 2
|
464
|
-
and self.callsign.text().replace("/", "").isalnum()
|
465
|
-
):
|
459
|
+
if len(self.callsign.text()) > 2:
|
466
460
|
self.make_button_green(self.esm_dict["MYCALL"])
|
467
461
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
468
462
|
|
not1mm/plugins/cwt.py
CHANGED
@@ -441,10 +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 (
|
445
|
-
len(self.callsign.text()) > 2
|
446
|
-
and self.callsign.text().replace("/", "").isalnum()
|
447
|
-
):
|
444
|
+
elif len(self.callsign.text()) > 2:
|
448
445
|
self.make_button_green(self.esm_dict["HISCALL"])
|
449
446
|
self.make_button_green(self.esm_dict["EXCH"])
|
450
447
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -470,10 +467,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
470
467
|
self.process_function_key(button)
|
471
468
|
else:
|
472
469
|
if self.current_widget == "callsign":
|
473
|
-
if (
|
474
|
-
len(self.callsign.text()) > 2
|
475
|
-
and self.callsign.text().replace("/", "").isalnum()
|
476
|
-
):
|
470
|
+
if len(self.callsign.text()) > 2:
|
477
471
|
self.make_button_green(self.esm_dict["MYCALL"])
|
478
472
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
479
473
|
|
not1mm/plugins/k1usn_sst.py
CHANGED
@@ -416,10 +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 (
|
420
|
-
len(self.callsign.text()) > 2
|
421
|
-
and self.callsign.text().replace("/", "").isalnum()
|
422
|
-
):
|
419
|
+
elif len(self.callsign.text()) > 2:
|
423
420
|
self.make_button_green(self.esm_dict["HISCALL"])
|
424
421
|
self.make_button_green(self.esm_dict["EXCH"])
|
425
422
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -445,10 +442,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
445
442
|
self.process_function_key(button)
|
446
443
|
else:
|
447
444
|
if self.current_widget == "callsign":
|
448
|
-
if (
|
449
|
-
len(self.callsign.text()) > 2
|
450
|
-
and self.callsign.text().replace("/", "").isalnum()
|
451
|
-
):
|
445
|
+
if len(self.callsign.text()) > 2:
|
452
446
|
self.make_button_green(self.esm_dict["MYCALL"])
|
453
447
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
454
448
|
|
not1mm/plugins/naqp_cw.py
CHANGED
@@ -442,10 +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 (
|
446
|
-
len(self.callsign.text()) > 2
|
447
|
-
and self.callsign.text().replace("/", "").isalnum()
|
448
|
-
):
|
445
|
+
elif len(self.callsign.text()) > 2:
|
449
446
|
self.make_button_green(self.esm_dict["HISCALL"])
|
450
447
|
self.make_button_green(self.esm_dict["EXCH"])
|
451
448
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -486,10 +483,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
486
483
|
self.process_function_key(button)
|
487
484
|
else:
|
488
485
|
if self.current_widget == "callsign":
|
489
|
-
if (
|
490
|
-
len(self.callsign.text()) > 2
|
491
|
-
and self.callsign.text().replace("/", "").isalnum()
|
492
|
-
):
|
486
|
+
if len(self.callsign.text()) > 2:
|
493
487
|
self.make_button_green(self.esm_dict["MYCALL"])
|
494
488
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
495
489
|
|
not1mm/plugins/naqp_rtty.py
CHANGED
@@ -547,10 +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 (
|
551
|
-
len(self.callsign.text()) > 2
|
552
|
-
and self.callsign.text().replace("/", "").isalnum()
|
553
|
-
):
|
550
|
+
elif len(self.callsign.text()) > 2:
|
554
551
|
self.make_button_green(self.esm_dict["HISCALL"])
|
555
552
|
self.make_button_green(self.esm_dict["EXCH"])
|
556
553
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -593,10 +590,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
593
590
|
self.fldigi_util.send_string(sendstring)
|
594
591
|
else:
|
595
592
|
if self.current_widget == "callsign":
|
596
|
-
if (
|
597
|
-
len(self.callsign.text()) > 2
|
598
|
-
and self.callsign.text().replace("/", "").isalnum()
|
599
|
-
):
|
593
|
+
if len(self.callsign.text()) > 2:
|
600
594
|
self.make_button_green(self.esm_dict["MYCALL"])
|
601
595
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
602
596
|
|
not1mm/plugins/naqp_ssb.py
CHANGED
@@ -412,10 +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 (
|
416
|
-
len(self.callsign.text()) > 2
|
417
|
-
and self.callsign.text().replace("/", "").isalnum()
|
418
|
-
):
|
415
|
+
elif len(self.callsign.text()) > 2:
|
419
416
|
self.make_button_green(self.esm_dict["HISCALL"])
|
420
417
|
self.make_button_green(self.esm_dict["EXCH"])
|
421
418
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -456,10 +453,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
456
453
|
self.process_function_key(button)
|
457
454
|
else:
|
458
455
|
if self.current_widget == "callsign":
|
459
|
-
if (
|
460
|
-
len(self.callsign.text()) > 2
|
461
|
-
and self.callsign.text().replace("/", "").isalnum()
|
462
|
-
):
|
456
|
+
if len(self.callsign.text()) > 2:
|
463
457
|
self.make_button_green(self.esm_dict["MYCALL"])
|
464
458
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
465
459
|
|
not1mm/plugins/weekly_rtty.py
CHANGED
@@ -491,10 +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 (
|
495
|
-
len(self.callsign.text()) > 2
|
496
|
-
and self.callsign.text().replace("/", "").isalnum()
|
497
|
-
):
|
494
|
+
elif len(self.callsign.text()) > 2:
|
498
495
|
self.make_button_green(self.esm_dict["HISCALL"])
|
499
496
|
self.make_button_green(self.esm_dict["EXCH"])
|
500
497
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
@@ -523,10 +520,7 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
523
520
|
self.fldigi_util.send_string(sendstring)
|
524
521
|
else:
|
525
522
|
if self.current_widget == "callsign":
|
526
|
-
if (
|
527
|
-
len(self.callsign.text()) > 2
|
528
|
-
and self.callsign.text().replace("/", "").isalnum()
|
529
|
-
):
|
523
|
+
if len(self.callsign.text()) > 2:
|
530
524
|
self.make_button_green(self.esm_dict["MYCALL"])
|
531
525
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
532
526
|
|
not1mm/radio.py
CHANGED
@@ -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,7 @@ 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.
|
234
235
|
- [24-10-15-1] Fix callsigns with a slash failing check during ESM.
|
235
236
|
- [24-10-15] Add NAQP RTTY, Added ESM to NAQP.
|
236
237
|
- [24-10-14] Add ESM to CQ WPX.
|
@@ -1,11 +1,11 @@
|
|
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=
|
8
|
+
not1mm/radio.py,sha256=TBrI2g2mDRxMaNifuL70k8soyc12QMppaLeDumlyOkM,4498
|
9
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
|
@@ -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
|