not1mm 24.10.15__py3-none-any.whl → 24.10.15.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/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "24.10.15"
3
+ __version__ = "24.10.15.1"
@@ -480,7 +480,10 @@ 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 and self.callsign.text().isalnum():
483
+ elif (
484
+ len(self.callsign.text()) > 2
485
+ and self.callsign.text().replace("/", "").isalnum()
486
+ ):
484
487
  self.make_button_green(self.esm_dict["HISCALL"])
485
488
  self.make_button_green(self.esm_dict["EXCH"])
486
489
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -507,7 +510,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
507
510
  self.process_function_key(button)
508
511
  else:
509
512
  if self.current_widget == "callsign":
510
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
513
+ if (
514
+ len(self.callsign.text()) > 2
515
+ and self.callsign.text().replace("/", "").isalnum()
516
+ ):
511
517
  self.make_button_green(self.esm_dict["MYCALL"])
512
518
  buttons_to_send.append(self.esm_dict["MYCALL"])
513
519
 
@@ -557,7 +557,10 @@ 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 and self.callsign.text().isalnum():
560
+ elif (
561
+ len(self.callsign.text()) > 2
562
+ and self.callsign.text().replace("/", "").isalnum()
563
+ ):
561
564
  self.make_button_green(self.esm_dict["HISCALL"])
562
565
  self.make_button_green(self.esm_dict["EXCH"])
563
566
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -586,7 +589,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
586
589
  self.fldigi_util.send_string(sendstring)
587
590
  else:
588
591
  if self.current_widget == "callsign":
589
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
592
+ if (
593
+ len(self.callsign.text()) > 2
594
+ and self.callsign.text().replace("/", "").isalnum()
595
+ ):
590
596
  self.make_button_green(self.esm_dict["MYCALL"])
591
597
  buttons_to_send.append(self.esm_dict["MYCALL"])
592
598
 
@@ -443,7 +443,10 @@ 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 and self.callsign.text().isalnum():
446
+ elif (
447
+ len(self.callsign.text()) > 2
448
+ and self.callsign.text().replace("/", "").isalnum()
449
+ ):
447
450
  self.make_button_green(self.esm_dict["HISCALL"])
448
451
  self.make_button_green(self.esm_dict["EXCH"])
449
452
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -470,7 +473,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
470
473
  self.process_function_key(button)
471
474
  else:
472
475
  if self.current_widget == "callsign":
473
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
476
+ if (
477
+ len(self.callsign.text()) > 2
478
+ and self.callsign.text().replace("/", "").isalnum()
479
+ ):
474
480
  self.make_button_green(self.esm_dict["MYCALL"])
475
481
  buttons_to_send.append(self.esm_dict["MYCALL"])
476
482
 
@@ -431,7 +431,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
431
431
  if len(self.callsign.text()) < 3:
432
432
  self.make_button_green(self.esm_dict["CQ"])
433
433
  buttons_to_send.append(self.esm_dict["CQ"])
434
- elif len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
434
+ elif (
435
+ len(self.callsign.text()) > 2
436
+ and self.callsign.text().replace("/", "").isalnum()
437
+ ):
435
438
  self.make_button_green(self.esm_dict["HISCALL"])
436
439
  self.make_button_green(self.esm_dict["EXCH"])
437
440
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -458,7 +461,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
458
461
  self.process_function_key(button)
459
462
  else:
460
463
  if self.current_widget == "callsign":
461
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
464
+ if (
465
+ len(self.callsign.text()) > 2
466
+ and self.callsign.text().replace("/", "").isalnum()
467
+ ):
462
468
  self.make_button_green(self.esm_dict["MYCALL"])
463
469
  buttons_to_send.append(self.esm_dict["MYCALL"])
464
470
 
@@ -546,7 +546,10 @@ 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 and self.callsign.text().isalnum():
549
+ elif (
550
+ len(self.callsign.text()) > 2
551
+ and self.callsign.text().replace("/", "").isalnum()
552
+ ):
550
553
  self.make_button_green(self.esm_dict["HISCALL"])
551
554
  self.make_button_green(self.esm_dict["EXCH"])
552
555
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -575,7 +578,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
575
578
  self.fldigi_util.send_string(sendstring)
576
579
  else:
577
580
  if self.current_widget == "callsign":
578
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
581
+ if (
582
+ len(self.callsign.text()) > 2
583
+ and self.callsign.text().replace("/", "").isalnum()
584
+ ):
579
585
  self.make_button_green(self.esm_dict["MYCALL"])
580
586
  buttons_to_send.append(self.esm_dict["MYCALL"])
581
587
 
@@ -429,7 +429,10 @@ 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 and self.callsign.text().isalnum():
432
+ elif (
433
+ len(self.callsign.text()) > 2
434
+ and self.callsign.text().replace("/", "").isalnum()
435
+ ):
433
436
  self.make_button_green(self.esm_dict["HISCALL"])
434
437
  self.make_button_green(self.esm_dict["EXCH"])
435
438
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -456,7 +459,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
456
459
  self.process_function_key(button)
457
460
  else:
458
461
  if self.current_widget == "callsign":
459
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
462
+ if (
463
+ len(self.callsign.text()) > 2
464
+ and self.callsign.text().replace("/", "").isalnum()
465
+ ):
460
466
  self.make_button_green(self.esm_dict["MYCALL"])
461
467
  buttons_to_send.append(self.esm_dict["MYCALL"])
462
468
 
not1mm/plugins/cwt.py CHANGED
@@ -441,7 +441,10 @@ 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 and self.callsign.text().isalnum():
444
+ elif (
445
+ len(self.callsign.text()) > 2
446
+ and self.callsign.text().replace("/", "").isalnum()
447
+ ):
445
448
  self.make_button_green(self.esm_dict["HISCALL"])
446
449
  self.make_button_green(self.esm_dict["EXCH"])
447
450
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -467,7 +470,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
467
470
  self.process_function_key(button)
468
471
  else:
469
472
  if self.current_widget == "callsign":
470
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
473
+ if (
474
+ len(self.callsign.text()) > 2
475
+ and self.callsign.text().replace("/", "").isalnum()
476
+ ):
471
477
  self.make_button_green(self.esm_dict["MYCALL"])
472
478
  buttons_to_send.append(self.esm_dict["MYCALL"])
473
479
 
@@ -416,7 +416,10 @@ 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 and self.callsign.text().isalnum():
419
+ elif (
420
+ len(self.callsign.text()) > 2
421
+ and self.callsign.text().replace("/", "").isalnum()
422
+ ):
420
423
  self.make_button_green(self.esm_dict["HISCALL"])
421
424
  self.make_button_green(self.esm_dict["EXCH"])
422
425
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -442,7 +445,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
442
445
  self.process_function_key(button)
443
446
  else:
444
447
  if self.current_widget == "callsign":
445
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
448
+ if (
449
+ len(self.callsign.text()) > 2
450
+ and self.callsign.text().replace("/", "").isalnum()
451
+ ):
446
452
  self.make_button_green(self.esm_dict["MYCALL"])
447
453
  buttons_to_send.append(self.esm_dict["MYCALL"])
448
454
 
not1mm/plugins/naqp_cw.py CHANGED
@@ -442,7 +442,10 @@ 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 and self.callsign.text().isalnum():
445
+ elif (
446
+ len(self.callsign.text()) > 2
447
+ and self.callsign.text().replace("/", "").isalnum()
448
+ ):
446
449
  self.make_button_green(self.esm_dict["HISCALL"])
447
450
  self.make_button_green(self.esm_dict["EXCH"])
448
451
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -483,7 +486,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
483
486
  self.process_function_key(button)
484
487
  else:
485
488
  if self.current_widget == "callsign":
486
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
489
+ if (
490
+ len(self.callsign.text()) > 2
491
+ and self.callsign.text().replace("/", "").isalnum()
492
+ ):
487
493
  self.make_button_green(self.esm_dict["MYCALL"])
488
494
  buttons_to_send.append(self.esm_dict["MYCALL"])
489
495
 
@@ -547,7 +547,10 @@ 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 and self.callsign.text().isalnum():
550
+ elif (
551
+ len(self.callsign.text()) > 2
552
+ and self.callsign.text().replace("/", "").isalnum()
553
+ ):
551
554
  self.make_button_green(self.esm_dict["HISCALL"])
552
555
  self.make_button_green(self.esm_dict["EXCH"])
553
556
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -590,7 +593,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
590
593
  self.fldigi_util.send_string(sendstring)
591
594
  else:
592
595
  if self.current_widget == "callsign":
593
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
596
+ if (
597
+ len(self.callsign.text()) > 2
598
+ and self.callsign.text().replace("/", "").isalnum()
599
+ ):
594
600
  self.make_button_green(self.esm_dict["MYCALL"])
595
601
  buttons_to_send.append(self.esm_dict["MYCALL"])
596
602
 
@@ -412,7 +412,10 @@ 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 and self.callsign.text().isalnum():
415
+ elif (
416
+ len(self.callsign.text()) > 2
417
+ and self.callsign.text().replace("/", "").isalnum()
418
+ ):
416
419
  self.make_button_green(self.esm_dict["HISCALL"])
417
420
  self.make_button_green(self.esm_dict["EXCH"])
418
421
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -453,7 +456,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
453
456
  self.process_function_key(button)
454
457
  else:
455
458
  if self.current_widget == "callsign":
456
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
459
+ if (
460
+ len(self.callsign.text()) > 2
461
+ and self.callsign.text().replace("/", "").isalnum()
462
+ ):
457
463
  self.make_button_green(self.esm_dict["MYCALL"])
458
464
  buttons_to_send.append(self.esm_dict["MYCALL"])
459
465
 
@@ -491,7 +491,10 @@ 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 and self.callsign.text().isalnum():
494
+ elif (
495
+ len(self.callsign.text()) > 2
496
+ and self.callsign.text().replace("/", "").isalnum()
497
+ ):
495
498
  self.make_button_green(self.esm_dict["HISCALL"])
496
499
  self.make_button_green(self.esm_dict["EXCH"])
497
500
  buttons_to_send.append(self.esm_dict["HISCALL"])
@@ -520,7 +523,10 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
520
523
  self.fldigi_util.send_string(sendstring)
521
524
  else:
522
525
  if self.current_widget == "callsign":
523
- if len(self.callsign.text()) > 2 and self.callsign.text().isalnum():
526
+ if (
527
+ len(self.callsign.text()) > 2
528
+ and self.callsign.text().replace("/", "").isalnum()
529
+ ):
524
530
  self.make_button_green(self.esm_dict["MYCALL"])
525
531
  buttons_to_send.append(self.esm_dict["MYCALL"])
526
532
 
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.15
3
+ Version: 24.10.15.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,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-15-1] Fix callsigns with a slash failing check during ESM.
234
235
  - [24-10-15] Add NAQP RTTY, Added ESM to NAQP.
235
236
  - [24-10-14] Add ESM to CQ WPX.
236
237
  - [24-10-13] Added ESM to Weekly RTTY, K1USN and CWT.
@@ -6,7 +6,7 @@ not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
6
6
  not1mm/logwindow.py,sha256=pwhiwolmGnW01LF4sjlu3ywLsgfxL6KuGuKuYKYmgeY,44403
7
7
  not1mm/lookupservice.py,sha256=jsFg5tsB9cVnahLP-hI3CMwbjlEpMx944O8RLWntAy4,3342
8
8
  not1mm/radio.py,sha256=WM5hRTKUSH6D1Hxk240kYVlSuMaVp7dgVn_GAkck8_g,4498
9
- not1mm/test.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
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
@@ -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=TQilIDGjxM6306HAmXC1jsWKAGZlk0Wp784hGVD4EKI,49
117
+ not1mm/lib/version.py,sha256=K45m7-Zh4DrvtwerVRaXChj6ZuKm5DIU4eQhNu_tA6w,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=parnwI_NkM3ODgw95Mt-yJvwqTLXB56ghFvQPcORXy4,17659
138
- not1mm/plugins/cq_wpx_rtty.py,sha256=p2a0l6aKpYAY19KJWSRJKp8fCbdcBfyQR33DGQpZ3YE,20478
139
- not1mm/plugins/cq_wpx_ssb.py,sha256=vqohvHlHl7wH2eqzytGJOjWerRP4MExK3-4TY2hioNo,16309
140
- not1mm/plugins/cq_ww_cw.py,sha256=kJCL4dIJOEW9O45vPTjWhQpa7KPZv8fkEAs4MJHpfkY,15962
141
- not1mm/plugins/cq_ww_rtty.py,sha256=njYqgr9ZijRaZgPwYumt95jrCE8kmFg4zwbaaJY1cMU,20772
142
- not1mm/plugins/cq_ww_ssb.py,sha256=NGNysV6MR7OILLtfMF1Gp82gErjUEyekJ0WnWkUhgHA,16156
143
- not1mm/plugins/cwt.py,sha256=AWUEZFY1ezts3dfHw1iKeXum-IdxXnoqe1LoenxputE,16542
137
+ not1mm/plugins/cq_wpx_cw.py,sha256=bAKhgpTkrSupu9mTJNKTsKGSSmqjnYIoKzhJ37LkC70,17789
138
+ not1mm/plugins/cq_wpx_rtty.py,sha256=K35PWGJjXeURwYEV2lZJDBc7bi-VzBWPA0swQ88vtS4,20608
139
+ not1mm/plugins/cq_wpx_ssb.py,sha256=wekrWKrdBeZ7_uLqRkOiXhz6IJu03MRyCEIgJrOKLg8,16439
140
+ not1mm/plugins/cq_ww_cw.py,sha256=kmKCxI9TFup3nVw1mWziO3mbJaGHZgUrv3SMket-O2E,16092
141
+ not1mm/plugins/cq_ww_rtty.py,sha256=WbDr-uttuzVqglGdrZugPW3YrmabeDIdEbr-2YcpF1E,20902
142
+ not1mm/plugins/cq_ww_ssb.py,sha256=zMN-Ny64KddSgtr8GzcepgOphMBR51O-EFEy5yF2oW0,16286
143
+ not1mm/plugins/cwt.py,sha256=dGdB7j9PyxTHAX_iAQXud0n3m11tPeOthynjZvy01zc,16672
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=l-_r-Ve1txpJF1UyqoaOKUXjTaKxQtzxCbXd7fZCZIg,15439
153
- not1mm/plugins/naqp_cw.py,sha256=3FIBd6_hWNdeVMlAFYnoT-Y_SYY0ZROQIZLh2HHuVy4,17518
154
- not1mm/plugins/naqp_rtty.py,sha256=vk5vBbpB2HEaRmmpKwzk1GQabAFZmNrrBn3hYUmpf6Y,21299
155
- not1mm/plugins/naqp_ssb.py,sha256=Bd1mgaycYCSXOb9k3yIbJB9dktO4jC0ty2pg4yONnGM,16435
152
+ not1mm/plugins/k1usn_sst.py,sha256=yyErpWQvQSN7bzMG8lna7LoOE3sVa6OiPFmKP9O-sqA,15569
153
+ not1mm/plugins/naqp_cw.py,sha256=1_7jKINgV5QOtDbKcA1uyfcw93qVjVEVTSwJ4Pi3Oy0,17648
154
+ not1mm/plugins/naqp_rtty.py,sha256=cCjus3Fu7rcM7jTIKoNytLUu2PN6qCbgJrxhU6_u1mo,21429
155
+ not1mm/plugins/naqp_ssb.py,sha256=xv4r44Yq7kUGNMFyWmK_886IrnvwGFwSV_zgXxQWkkE,16565
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=S_oBAnsIq2ng7FunIB2qukdZyhMzQKGDAlQFc9UUr-U,18255
159
+ not1mm/plugins/weekly_rtty.py,sha256=SYnj8izW39_XHxkoNUM2inaYKSlEE0LD5Vilm9zSkvk,18385
160
160
  not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
161
- not1mm-24.10.15.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
162
- not1mm-24.10.15.dist-info/METADATA,sha256=LEdL14UB3j7Yea8SYMfSyx8rtoqLvDXbFd_GQ72RGQw,33865
163
- not1mm-24.10.15.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
164
- not1mm-24.10.15.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
165
- not1mm-24.10.15.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
166
- not1mm-24.10.15.dist-info/RECORD,,
161
+ not1mm-24.10.15.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
162
+ not1mm-24.10.15.1.dist-info/METADATA,sha256=zwSxF8Vf2GttGv2Iub2Z1BZxPOcb0-8b7rxo_gOSYo4,33935
163
+ not1mm-24.10.15.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
164
+ not1mm-24.10.15.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
165
+ not1mm-24.10.15.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
166
+ not1mm-24.10.15.1.dist-info/RECORD,,