not1mm 24.10.15.1__py3-none-any.whl → 24.10.17.1__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 +13 -12
- not1mm/checkwindow.py +12 -3
- not1mm/data/MASTER.SCP +832 -724
- not1mm/data/cty.json +1 -1
- not1mm/data/main.ui +1 -1
- not1mm/data/rttymacros.txt +1 -1
- not1mm/data/ssbmacros.txt +4 -4
- not1mm/lib/cat_interface.py +4 -2
- 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-24.10.15.1.dist-info → not1mm-24.10.17.1.dist-info}/METADATA +3 -1
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.1.dist-info}/RECORD +27 -27
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.1.dist-info}/WHEEL +1 -1
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.1.dist-info}/LICENSE +0 -0
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.1.dist-info}/entry_points.txt +0 -0
- {not1mm-24.10.15.1.dist-info → not1mm-24.10.17.1.dist-info}/top_level.txt +0 -0
not1mm/data/main.ui
CHANGED
not1mm/data/rttymacros.txt
CHANGED
not1mm/data/ssbmacros.txt
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
S|F1|MyCall|{MYCALL}
|
2
|
-
S|F2|Exch|{SNT} {
|
2
|
+
S|F2|Exch|{SNT} {EXCH}
|
3
3
|
S|F3|My NR|{SENTNR}
|
4
4
|
S|F4|empty|
|
5
|
-
S|F5|
|
5
|
+
S|F5|MyCall|{MYCALL}
|
6
6
|
S|F6|empty|
|
7
7
|
S|F7|Roger|[roger]
|
8
8
|
S|F8|73|[73]
|
9
|
-
S|F9|
|
9
|
+
S|F9|AGN|[again]
|
10
10
|
S|F10|Call?|[yourcall]
|
11
11
|
S|F11|NR??|[mynumber]
|
12
12
|
S|F12|TU|[thankyou]
|
13
13
|
R|F1|Run CQ|[cq]
|
14
14
|
R|F2|HisCall|{HISCALL}
|
15
|
-
R|F3|Run Exch|{
|
15
|
+
R|F3|Run Exch|{SNT} {EXCH}
|
16
16
|
R|F4|Run TU|[thankyouqrz]
|
17
17
|
R|F5|MyCall|{MYCALL}
|
18
18
|
R|F6|MyNR|{SENTNR}
|
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.2)
|
94
94
|
self.rigctrlsocket.connect((self.host, self.port))
|
95
95
|
logger.debug("Connected to rigctrld")
|
96
96
|
self.online = True
|
@@ -522,7 +522,9 @@ class CAT:
|
|
522
522
|
if self.rigctrlsocket:
|
523
523
|
try:
|
524
524
|
self.online = True
|
525
|
-
self.rigctrlsocket.send(bytes(f"
|
525
|
+
self.rigctrlsocket.send(bytes(f"\nM {mode} 0\n", "utf-8"))
|
526
|
+
if self.__get_serial_string() != "RPRT 0\n":
|
527
|
+
self.rigctrlsocket.send(bytes(f"\nM {mode} 0\n", "utf-8"))
|
526
528
|
_ = self.__get_serial_string()
|
527
529
|
return True
|
528
530
|
except socket.error as exception:
|
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
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.10.
|
3
|
+
Version: 24.10.17.1
|
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-1] Fix dupe check. Reordered change mode and interface update sequence. Resend mode if rigctld does not report back `RPRT 0`
|
235
|
+
- [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
236
|
- [24-10-15-1] Fix callsigns with a slash failing check during ESM.
|
235
237
|
- [24-10-15] Add NAQP RTTY, Added ESM to NAQP.
|
236
238
|
- [24-10-14] Add ESM to CQ WPX.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=4MLhVeVZBrwxbmG44zBsNCUVBvkLAq71wVSqfN-rVCo,135131
|
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
|
@@ -10,7 +10,7 @@ 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
|
13
|
-
not1mm/data/MASTER.SCP,sha256=
|
13
|
+
not1mm/data/MASTER.SCP,sha256=FWKs4Xw3w7FNUt2npA6VzsLME7NAbHRugxaL6TnsvzU,364234
|
14
14
|
not1mm/data/about.ui,sha256=IzbwKQZ_Ea06qGEjJgsa7g8-oYk549f-MEpLtChiLvw,2078
|
15
15
|
not1mm/data/alpha bravo charlie delta.txt,sha256=d5QMmSWEUAe4Rj1XbNjTPLa_5Be4Se6u5LUIqAYidOQ,224
|
16
16
|
not1mm/data/bandmap.ui,sha256=hvovf1YKyfUVVbKl6Ib2zU4RdUrFsQwm-255wVeKXZE,7180
|
@@ -18,7 +18,7 @@ not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
|
|
18
18
|
not1mm/data/checkwindow.ui,sha256=Ux5EgO-JalGB9qx3M6tmMpGHO0RmuuY1w0XEbuwd1xk,4658
|
19
19
|
not1mm/data/configuration.ui,sha256=VGJYL14XPuJkJVKk0FWyZWFXK5ibZ3_0_VUBXyzKnOk,68141
|
20
20
|
not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
|
21
|
-
not1mm/data/cty.json,sha256=
|
21
|
+
not1mm/data/cty.json,sha256=dPG9K1Pm4Rxd4uJom_gQ8y-sbqiZfILpl4kBAFnOveU,4877142
|
22
22
|
not1mm/data/cwmacros.txt,sha256=NztufsX6R52gAO7VyJ2AHr7wOh41pJTwHKh5Lcs32ds,468
|
23
23
|
not1mm/data/donors.html,sha256=8hNzO3Q5a6p-_3egT1hfOjimPf810tKMUM5ukLzUsGM,116
|
24
24
|
not1mm/data/editcontact.ui,sha256=TNOsXETYfDaON4wj6AkzCJ-n2SmbNRO2-g2SLl5m8s0,27437
|
@@ -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
|
@@ -39,10 +39,10 @@ not1mm/data/radio_green.png,sha256=PXlvRI2x0C8yLVkxRwrZe6tex8k9GtM-1Cj2Vy6KP7o,1
|
|
39
39
|
not1mm/data/radio_grey.png,sha256=9eOtMHDpQvRYY29D7_vPeacWbwotRXZTMm8EiHE9TW0,1258
|
40
40
|
not1mm/data/radio_red.png,sha256=QvkMk7thd_hCEIyK5xGAG4xVVXivl39nwOfD8USDI20,957
|
41
41
|
not1mm/data/reddot.png,sha256=M33jEMoU8W4rQ4_MVyzzKxDPDte1ypKBch5VnUMNLKE,565
|
42
|
-
not1mm/data/rttymacros.txt,sha256=
|
42
|
+
not1mm/data/rttymacros.txt,sha256=FQ2BnAChXF5w-tzmMnBOE8IgvviAEsd3cmmz4b8GOPk,467
|
43
43
|
not1mm/data/settings.ui,sha256=NyHFUb3ZFEgZ4bYB3O7qlO_0TvZwcc9SFPr7z9nF6kk,40123
|
44
44
|
not1mm/data/splash.png,sha256=85_BQotR1q24uCthrKm4SB_6ZOMwRjR-Jdp1XBHSTyg,5368
|
45
|
-
not1mm/data/ssbmacros.txt,sha256=
|
45
|
+
not1mm/data/ssbmacros.txt,sha256=Q7MrkaBntbeg4yQSoMv3NLoM24V4y_RVati3_wmb0mY,464
|
46
46
|
not1mm/data/vfo.ui,sha256=-fmFMJLPDz0jmsOdCljL7vfmlAQgwyHkGZjomlIN3gc,2076
|
47
47
|
not1mm/data/phonetics/0.wav,sha256=0OpYiR-3MK6fVHE6MB-HeOxSAPiDNMjqvx5JcIZtsQk,42590
|
48
48
|
not1mm/data/phonetics/1.wav,sha256=OEAavA8cfVxFZwaT0HY9Wg9NAGEPKBhwhEdzGXkQs_U,30248
|
@@ -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=cyedzwy6FOavqGmDm84J2doxtqkQJZBQ4zTznBA3jdk,21601
|
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=WqMb11FFtqCd4rYn7X8Et2k0KSIwY560dnWQUkO326o,51
|
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.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
162
|
+
not1mm-24.10.17.1.dist-info/METADATA,sha256=Vdyq207ZunOdLE3RPxFBznhPGnqwNiFVKvNPLuHU060,34271
|
163
|
+
not1mm-24.10.17.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
164
|
+
not1mm-24.10.17.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
165
|
+
not1mm-24.10.17.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
166
|
+
not1mm-24.10.17.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|