not1mm 24.10.17__py3-none-any.whl → 24.10.17.2__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 +10 -12
- not1mm/data/MASTER.SCP +832 -724
- not1mm/data/cty.json +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/arrl_ss_cw.py +92 -1
- not1mm/plugins/arrl_ss_phone.py +92 -1
- not1mm/radio.py +1 -1
- {not1mm-24.10.17.dist-info → not1mm-24.10.17.2.dist-info}/METADATA +3 -1
- {not1mm-24.10.17.dist-info → not1mm-24.10.17.2.dist-info}/RECORD +16 -16
- {not1mm-24.10.17.dist-info → not1mm-24.10.17.2.dist-info}/LICENSE +0 -0
- {not1mm-24.10.17.dist-info → not1mm-24.10.17.2.dist-info}/WHEEL +0 -0
- {not1mm-24.10.17.dist-info → not1mm-24.10.17.2.dist-info}/entry_points.txt +0 -0
- {not1mm-24.10.17.dist-info → not1mm-24.10.17.2.dist-info}/top_level.txt +0 -0
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/arrl_ss_cw.py
CHANGED
@@ -399,7 +399,7 @@ def parse_exchange(self):
|
|
399
399
|
continue
|
400
400
|
elif tokens.isalnum():
|
401
401
|
if tokens[:1].isalpha():
|
402
|
-
print(f"{tokens} is callsign")
|
402
|
+
# print(f"{tokens} is callsign")
|
403
403
|
call = tokens
|
404
404
|
continue
|
405
405
|
for i, c in enumerate(tokens):
|
@@ -416,3 +416,94 @@ def parse_exchange(self):
|
|
416
416
|
label = f"sn:{sn} p:{prec} cl:{call} ck:{ck} sec:{sec}"
|
417
417
|
self.exch_label.setText(label)
|
418
418
|
return (sn, prec, ck, sec, call)
|
419
|
+
|
420
|
+
|
421
|
+
def process_esm(self, new_focused_widget=None, with_enter=False):
|
422
|
+
"""ESM State Machine"""
|
423
|
+
|
424
|
+
# self.pref["run_state"]
|
425
|
+
|
426
|
+
# -----===== Assigned F-Keys =====-----
|
427
|
+
# self.esm_dict["CQ"]
|
428
|
+
# self.esm_dict["EXCH"]
|
429
|
+
# self.esm_dict["QRZ"]
|
430
|
+
# self.esm_dict["AGN"]
|
431
|
+
# self.esm_dict["HISCALL"]
|
432
|
+
# self.esm_dict["MYCALL"]
|
433
|
+
# self.esm_dict["QSOB4"]
|
434
|
+
|
435
|
+
# ----==== text fields ====----
|
436
|
+
# self.callsign
|
437
|
+
# self.sent
|
438
|
+
# self.receive
|
439
|
+
# self.other_1
|
440
|
+
# self.other_2
|
441
|
+
|
442
|
+
if new_focused_widget is not None:
|
443
|
+
self.current_widget = self.inputs_dict.get(new_focused_widget)
|
444
|
+
|
445
|
+
# print(f"checking esm {self.current_widget=} {with_enter=} {self.pref.get("run_state")=}")
|
446
|
+
|
447
|
+
for a_button in [
|
448
|
+
self.esm_dict["CQ"],
|
449
|
+
self.esm_dict["EXCH"],
|
450
|
+
self.esm_dict["QRZ"],
|
451
|
+
self.esm_dict["AGN"],
|
452
|
+
self.esm_dict["HISCALL"],
|
453
|
+
self.esm_dict["MYCALL"],
|
454
|
+
self.esm_dict["QSOB4"],
|
455
|
+
]:
|
456
|
+
if a_button is not None:
|
457
|
+
self.restore_button_color(a_button)
|
458
|
+
|
459
|
+
buttons_to_send = []
|
460
|
+
|
461
|
+
if self.pref.get("run_state"):
|
462
|
+
if self.current_widget == "callsign":
|
463
|
+
if len(self.callsign.text()) < 3:
|
464
|
+
self.make_button_green(self.esm_dict["CQ"])
|
465
|
+
buttons_to_send.append(self.esm_dict["CQ"])
|
466
|
+
elif len(self.callsign.text()) > 2:
|
467
|
+
self.make_button_green(self.esm_dict["HISCALL"])
|
468
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
469
|
+
buttons_to_send.append(self.esm_dict["HISCALL"])
|
470
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
471
|
+
|
472
|
+
elif self.current_widget == "other_2":
|
473
|
+
if self.other_2.text() == "":
|
474
|
+
self.make_button_green(self.esm_dict["AGN"])
|
475
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
476
|
+
else:
|
477
|
+
self.make_button_green(self.esm_dict["QRZ"])
|
478
|
+
buttons_to_send.append(self.esm_dict["QRZ"])
|
479
|
+
buttons_to_send.append("LOGIT")
|
480
|
+
|
481
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
482
|
+
for button in buttons_to_send:
|
483
|
+
if button:
|
484
|
+
if button == "LOGIT":
|
485
|
+
self.save_contact()
|
486
|
+
continue
|
487
|
+
self.process_function_key(button)
|
488
|
+
else:
|
489
|
+
if self.current_widget == "callsign":
|
490
|
+
if len(self.callsign.text()) > 2:
|
491
|
+
self.make_button_green(self.esm_dict["MYCALL"])
|
492
|
+
buttons_to_send.append(self.esm_dict["MYCALL"])
|
493
|
+
|
494
|
+
elif self.current_widget == "other_2":
|
495
|
+
if self.other_2.text() == "":
|
496
|
+
self.make_button_green(self.esm_dict["AGN"])
|
497
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
498
|
+
else:
|
499
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
500
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
501
|
+
buttons_to_send.append("LOGIT")
|
502
|
+
|
503
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
504
|
+
for button in buttons_to_send:
|
505
|
+
if button:
|
506
|
+
if button == "LOGIT":
|
507
|
+
self.save_contact()
|
508
|
+
continue
|
509
|
+
self.process_function_key(button)
|
not1mm/plugins/arrl_ss_phone.py
CHANGED
@@ -385,7 +385,7 @@ def parse_exchange(self):
|
|
385
385
|
for tokens in exchange.split():
|
386
386
|
text = ""
|
387
387
|
numb = ""
|
388
|
-
print(f"'{tokens}'")
|
388
|
+
# print(f"'{tokens}'")
|
389
389
|
if tokens.isdigit():
|
390
390
|
if sn == "":
|
391
391
|
sn = tokens
|
@@ -416,3 +416,94 @@ def parse_exchange(self):
|
|
416
416
|
label = f"sn:{sn} p:{prec} cl:{call} ck:{ck} sec:{sec}"
|
417
417
|
self.exch_label.setText(label)
|
418
418
|
return (sn, prec, ck, sec, call)
|
419
|
+
|
420
|
+
|
421
|
+
def process_esm(self, new_focused_widget=None, with_enter=False):
|
422
|
+
"""ESM State Machine"""
|
423
|
+
|
424
|
+
# self.pref["run_state"]
|
425
|
+
|
426
|
+
# -----===== Assigned F-Keys =====-----
|
427
|
+
# self.esm_dict["CQ"]
|
428
|
+
# self.esm_dict["EXCH"]
|
429
|
+
# self.esm_dict["QRZ"]
|
430
|
+
# self.esm_dict["AGN"]
|
431
|
+
# self.esm_dict["HISCALL"]
|
432
|
+
# self.esm_dict["MYCALL"]
|
433
|
+
# self.esm_dict["QSOB4"]
|
434
|
+
|
435
|
+
# ----==== text fields ====----
|
436
|
+
# self.callsign
|
437
|
+
# self.sent
|
438
|
+
# self.receive
|
439
|
+
# self.other_1
|
440
|
+
# self.other_2
|
441
|
+
|
442
|
+
if new_focused_widget is not None:
|
443
|
+
self.current_widget = self.inputs_dict.get(new_focused_widget)
|
444
|
+
|
445
|
+
# print(f"checking esm {self.current_widget=} {with_enter=} {self.pref.get("run_state")=}")
|
446
|
+
|
447
|
+
for a_button in [
|
448
|
+
self.esm_dict["CQ"],
|
449
|
+
self.esm_dict["EXCH"],
|
450
|
+
self.esm_dict["QRZ"],
|
451
|
+
self.esm_dict["AGN"],
|
452
|
+
self.esm_dict["HISCALL"],
|
453
|
+
self.esm_dict["MYCALL"],
|
454
|
+
self.esm_dict["QSOB4"],
|
455
|
+
]:
|
456
|
+
if a_button is not None:
|
457
|
+
self.restore_button_color(a_button)
|
458
|
+
|
459
|
+
buttons_to_send = []
|
460
|
+
|
461
|
+
if self.pref.get("run_state"):
|
462
|
+
if self.current_widget == "callsign":
|
463
|
+
if len(self.callsign.text()) < 3:
|
464
|
+
self.make_button_green(self.esm_dict["CQ"])
|
465
|
+
buttons_to_send.append(self.esm_dict["CQ"])
|
466
|
+
elif len(self.callsign.text()) > 2:
|
467
|
+
self.make_button_green(self.esm_dict["HISCALL"])
|
468
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
469
|
+
buttons_to_send.append(self.esm_dict["HISCALL"])
|
470
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
471
|
+
|
472
|
+
elif self.current_widget == "other_2":
|
473
|
+
if self.other_2.text() == "":
|
474
|
+
self.make_button_green(self.esm_dict["AGN"])
|
475
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
476
|
+
else:
|
477
|
+
self.make_button_green(self.esm_dict["QRZ"])
|
478
|
+
buttons_to_send.append(self.esm_dict["QRZ"])
|
479
|
+
buttons_to_send.append("LOGIT")
|
480
|
+
|
481
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
482
|
+
for button in buttons_to_send:
|
483
|
+
if button:
|
484
|
+
if button == "LOGIT":
|
485
|
+
self.save_contact()
|
486
|
+
continue
|
487
|
+
self.process_function_key(button)
|
488
|
+
else:
|
489
|
+
if self.current_widget == "callsign":
|
490
|
+
if len(self.callsign.text()) > 2:
|
491
|
+
self.make_button_green(self.esm_dict["MYCALL"])
|
492
|
+
buttons_to_send.append(self.esm_dict["MYCALL"])
|
493
|
+
|
494
|
+
elif self.current_widget == "other_2":
|
495
|
+
if self.other_2.text() == "":
|
496
|
+
self.make_button_green(self.esm_dict["AGN"])
|
497
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
498
|
+
else:
|
499
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
500
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
501
|
+
buttons_to_send.append("LOGIT")
|
502
|
+
|
503
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
504
|
+
for button in buttons_to_send:
|
505
|
+
if button:
|
506
|
+
if button == "LOGIT":
|
507
|
+
self.save_contact()
|
508
|
+
continue
|
509
|
+
self.process_function_key(button)
|
not1mm/radio.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.10.17
|
3
|
+
Version: 24.10.17.2
|
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-2] Add ESM to ARRL Sweepstakes.
|
235
|
+
- [24-10-17-1] Fix dupe check. Reordered change mode and interface update sequence. Resend mode if rigctld does not report back `RPRT 0`
|
234
236
|
- [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
237
|
- [24-10-15-1] Fix callsigns with a slash failing check during ESM.
|
236
238
|
- [24-10-15] Add NAQP RTTY, Added ESM to NAQP.
|
@@ -1,16 +1,16 @@
|
|
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
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=WM5hRTKUSH6D1Hxk240kYVlSuMaVp7dgVn_GAkck8_g,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
|
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
|
@@ -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=_dBUyH8fvro8Ul27q1wN978KYHjX-xCe3StIsIvsVGg,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
|
@@ -126,8 +126,8 @@ not1mm/plugins/arrl_dx_cw.py,sha256=LVnYDNFEUiIpQ1TlhOCcRK7JNwH5XPO5WzUoApSUMTY,
|
|
126
126
|
not1mm/plugins/arrl_dx_ssb.py,sha256=fUFzuNbCAfA5sQSYm8ISV3P9Z_2xnuKeOdO6E66zn1k,13805
|
127
127
|
not1mm/plugins/arrl_field_day.py,sha256=pivtEK5j9sLpta12_wuUQYvs7MuiP3JfhlO-AOIDJug,12707
|
128
128
|
not1mm/plugins/arrl_rtty_ru.py,sha256=hKUS4isjdXo3EYxQrsqsDupPp2chW8fpoWj0T1pTgJ4,7994
|
129
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
130
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
129
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=egbIe-WBmM6oqmc7uWzSnRJaNIImHs8Hgs4PtNfpnEQ,16339
|
130
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=zSD3WBFFWpiOo7RWgMfPduzFxshTczXtwK-OXqGV9aE,16327
|
131
131
|
not1mm/plugins/arrl_vhf_jan.py,sha256=St_QvYS5AKFUNxtvpU-KlJ3C-xGQi1idFHggmIjnwVc,15717
|
132
132
|
not1mm/plugins/arrl_vhf_jun.py,sha256=9KPILzUD9NYVuXwazhQLCYnGKnoiJDf16omKR5UVflE,14809
|
133
133
|
not1mm/plugins/arrl_vhf_sep.py,sha256=3f5mmXuoe7jt6A8FXFBwentO3lyGMCHSgtkiDcX4Uu4,14809
|
@@ -158,9 +158,9 @@ not1mm/plugins/ref_cw.py,sha256=aWjHHkqIKutjRUtzh09y5haFfnZK9poRQDWRQMDRxxU,1632
|
|
158
158
|
not1mm/plugins/stew_perry_topband.py,sha256=CKBQbYl4ETxhXJd2dma4fg_C5pag_s7Nf61SCztZtqE,10668
|
159
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.17.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
162
|
-
not1mm-24.10.17.dist-info/METADATA,sha256=
|
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,,
|
161
|
+
not1mm-24.10.17.2.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
162
|
+
not1mm-24.10.17.2.dist-info/METADATA,sha256=aqG-a4aib7wlwxmKmUVWMqcQ0_G2veoccgtu0wny2E0,34315
|
163
|
+
not1mm-24.10.17.2.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
164
|
+
not1mm-24.10.17.2.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
165
|
+
not1mm-24.10.17.2.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
166
|
+
not1mm-24.10.17.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|