not1mm 24.11.21__py3-none-any.whl → 24.12.3.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 +65 -66
- not1mm/bandmap.py +9 -0
- not1mm/data/bandmap.ui +43 -12
- not1mm/data/configuration.ui +77 -67
- not1mm/data/donors.html +4 -0
- not1mm/data/new_contest.ui +5 -0
- not1mm/lib/cat_interface.py +24 -14
- not1mm/lib/database.py +17 -0
- not1mm/lib/settings.py +5 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/10_10_fall_cw.py +91 -0
- not1mm/plugins/10_10_spring_cw.py +91 -0
- not1mm/plugins/10_10_summer_phone.py +91 -0
- not1mm/plugins/10_10_winter_phone.py +91 -0
- not1mm/plugins/arrl_10m.py +110 -0
- not1mm/plugins/arrl_160m.py +543 -0
- not1mm/plugins/arrl_vhf_jan.py +92 -1
- not1mm/plugins/arrl_vhf_jun.py +92 -1
- not1mm/plugins/arrl_vhf_sep.py +95 -1
- not1mm/plugins/cq_160_cw.py +94 -5
- not1mm/plugins/cq_160_ssb.py +94 -5
- not1mm/plugins/cq_ww_cw.py +14 -5
- not1mm/plugins/cq_ww_ssb.py +13 -5
- not1mm/plugins/iaru_fieldday_r1_cw.py +91 -0
- not1mm/plugins/iaru_fieldday_r1_ssb.py +91 -0
- not1mm/plugins/iaru_hf.py +110 -0
- not1mm/radio.py +5 -4
- {not1mm-24.11.21.dist-info → not1mm-24.12.3.1.dist-info}/METADATA +28 -38
- {not1mm-24.11.21.dist-info → not1mm-24.12.3.1.dist-info}/RECORD +33 -32
- {not1mm-24.11.21.dist-info → not1mm-24.12.3.1.dist-info}/LICENSE +0 -0
- {not1mm-24.11.21.dist-info → not1mm-24.12.3.1.dist-info}/WHEEL +0 -0
- {not1mm-24.11.21.dist-info → not1mm-24.12.3.1.dist-info}/entry_points.txt +0 -0
- {not1mm-24.11.21.dist-info → not1mm-24.12.3.1.dist-info}/top_level.txt +0 -0
@@ -433,3 +433,94 @@ def recalculate_mults(self):
|
|
433
433
|
else:
|
434
434
|
contact["IsMultiplier1"] = 0
|
435
435
|
self.database.change_contact(contact)
|
436
|
+
|
437
|
+
|
438
|
+
def process_esm(self, new_focused_widget=None, with_enter=False):
|
439
|
+
"""ESM State Machine"""
|
440
|
+
|
441
|
+
# self.pref["run_state"]
|
442
|
+
|
443
|
+
# -----===== Assigned F-Keys =====-----
|
444
|
+
# self.esm_dict["CQ"]
|
445
|
+
# self.esm_dict["EXCH"]
|
446
|
+
# self.esm_dict["QRZ"]
|
447
|
+
# self.esm_dict["AGN"]
|
448
|
+
# self.esm_dict["HISCALL"]
|
449
|
+
# self.esm_dict["MYCALL"]
|
450
|
+
# self.esm_dict["QSOB4"]
|
451
|
+
|
452
|
+
# ----==== text fields ====----
|
453
|
+
# self.callsign
|
454
|
+
# self.sent
|
455
|
+
# self.receive
|
456
|
+
# self.other_1
|
457
|
+
# self.other_2
|
458
|
+
|
459
|
+
if new_focused_widget is not None:
|
460
|
+
self.current_widget = self.inputs_dict.get(new_focused_widget)
|
461
|
+
|
462
|
+
# print(f"checking esm {self.current_widget=} {with_enter=} {self.pref.get("run_state")=}")
|
463
|
+
|
464
|
+
for a_button in [
|
465
|
+
self.esm_dict["CQ"],
|
466
|
+
self.esm_dict["EXCH"],
|
467
|
+
self.esm_dict["QRZ"],
|
468
|
+
self.esm_dict["AGN"],
|
469
|
+
self.esm_dict["HISCALL"],
|
470
|
+
self.esm_dict["MYCALL"],
|
471
|
+
self.esm_dict["QSOB4"],
|
472
|
+
]:
|
473
|
+
if a_button is not None:
|
474
|
+
self.restore_button_color(a_button)
|
475
|
+
|
476
|
+
buttons_to_send = []
|
477
|
+
|
478
|
+
if self.pref.get("run_state"):
|
479
|
+
if self.current_widget == "callsign":
|
480
|
+
if len(self.callsign.text()) < 3:
|
481
|
+
self.make_button_green(self.esm_dict["CQ"])
|
482
|
+
buttons_to_send.append(self.esm_dict["CQ"])
|
483
|
+
elif len(self.callsign.text()) > 2:
|
484
|
+
self.make_button_green(self.esm_dict["HISCALL"])
|
485
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
486
|
+
buttons_to_send.append(self.esm_dict["HISCALL"])
|
487
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
488
|
+
|
489
|
+
elif self.current_widget in ["other_2"]:
|
490
|
+
if self.other_2.text() == "":
|
491
|
+
self.make_button_green(self.esm_dict["AGN"])
|
492
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
493
|
+
else:
|
494
|
+
self.make_button_green(self.esm_dict["QRZ"])
|
495
|
+
buttons_to_send.append(self.esm_dict["QRZ"])
|
496
|
+
buttons_to_send.append("LOGIT")
|
497
|
+
|
498
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
499
|
+
for button in buttons_to_send:
|
500
|
+
if button:
|
501
|
+
if button == "LOGIT":
|
502
|
+
self.save_contact()
|
503
|
+
continue
|
504
|
+
self.process_function_key(button)
|
505
|
+
else:
|
506
|
+
if self.current_widget == "callsign":
|
507
|
+
if len(self.callsign.text()) > 2:
|
508
|
+
self.make_button_green(self.esm_dict["MYCALL"])
|
509
|
+
buttons_to_send.append(self.esm_dict["MYCALL"])
|
510
|
+
|
511
|
+
elif self.current_widget in ["other_2"]:
|
512
|
+
if self.other_2.text() == "":
|
513
|
+
self.make_button_green(self.esm_dict["AGN"])
|
514
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
515
|
+
else:
|
516
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
517
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
518
|
+
buttons_to_send.append("LOGIT")
|
519
|
+
|
520
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
521
|
+
for button in buttons_to_send:
|
522
|
+
if button:
|
523
|
+
if button == "LOGIT":
|
524
|
+
self.save_contact()
|
525
|
+
continue
|
526
|
+
self.process_function_key(button)
|
not1mm/plugins/iaru_hf.py
CHANGED
@@ -379,3 +379,113 @@ def cabrillo(self, file_encoding):
|
|
379
379
|
|
380
380
|
def recalculate_mults(self):
|
381
381
|
"""Recalculates multipliers after change in logged qso."""
|
382
|
+
|
383
|
+
|
384
|
+
def process_esm(self, new_focused_widget=None, with_enter=False):
|
385
|
+
"""ESM State Machine"""
|
386
|
+
|
387
|
+
# self.pref["run_state"]
|
388
|
+
|
389
|
+
# -----===== Assigned F-Keys =====-----
|
390
|
+
# self.esm_dict["CQ"]
|
391
|
+
# self.esm_dict["EXCH"]
|
392
|
+
# self.esm_dict["QRZ"]
|
393
|
+
# self.esm_dict["AGN"]
|
394
|
+
# self.esm_dict["HISCALL"]
|
395
|
+
# self.esm_dict["MYCALL"]
|
396
|
+
# self.esm_dict["QSOB4"]
|
397
|
+
|
398
|
+
# ----==== text fields ====----
|
399
|
+
# self.callsign
|
400
|
+
# self.sent
|
401
|
+
# self.receive
|
402
|
+
# self.other_1
|
403
|
+
# self.other_2
|
404
|
+
|
405
|
+
if new_focused_widget is not None:
|
406
|
+
self.current_widget = self.inputs_dict.get(new_focused_widget)
|
407
|
+
|
408
|
+
# print(f"checking esm {self.current_widget=} {with_enter=} {self.pref.get("run_state")=}")
|
409
|
+
|
410
|
+
for a_button in [
|
411
|
+
self.esm_dict["CQ"],
|
412
|
+
self.esm_dict["EXCH"],
|
413
|
+
self.esm_dict["QRZ"],
|
414
|
+
self.esm_dict["AGN"],
|
415
|
+
self.esm_dict["HISCALL"],
|
416
|
+
self.esm_dict["MYCALL"],
|
417
|
+
self.esm_dict["QSOB4"],
|
418
|
+
]:
|
419
|
+
if a_button is not None:
|
420
|
+
self.restore_button_color(a_button)
|
421
|
+
|
422
|
+
buttons_to_send = []
|
423
|
+
|
424
|
+
if self.pref.get("run_state"):
|
425
|
+
if self.current_widget == "callsign":
|
426
|
+
if len(self.callsign.text()) < 3:
|
427
|
+
self.make_button_green(self.esm_dict["CQ"])
|
428
|
+
buttons_to_send.append(self.esm_dict["CQ"])
|
429
|
+
elif len(self.callsign.text()) > 2:
|
430
|
+
self.make_button_green(self.esm_dict["HISCALL"])
|
431
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
432
|
+
buttons_to_send.append(self.esm_dict["HISCALL"])
|
433
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
434
|
+
|
435
|
+
elif self.current_widget in ["other_2"]:
|
436
|
+
if self.other_2.text() == "":
|
437
|
+
self.make_button_green(self.esm_dict["AGN"])
|
438
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
439
|
+
else:
|
440
|
+
self.make_button_green(self.esm_dict["QRZ"])
|
441
|
+
buttons_to_send.append(self.esm_dict["QRZ"])
|
442
|
+
buttons_to_send.append("LOGIT")
|
443
|
+
|
444
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
445
|
+
for button in buttons_to_send:
|
446
|
+
if button:
|
447
|
+
if button == "LOGIT":
|
448
|
+
self.save_contact()
|
449
|
+
continue
|
450
|
+
self.process_function_key(button)
|
451
|
+
else:
|
452
|
+
if self.current_widget == "callsign":
|
453
|
+
if len(self.callsign.text()) > 2:
|
454
|
+
self.make_button_green(self.esm_dict["MYCALL"])
|
455
|
+
buttons_to_send.append(self.esm_dict["MYCALL"])
|
456
|
+
|
457
|
+
elif self.current_widget in ["other_2"]:
|
458
|
+
if self.other_2.text() == "":
|
459
|
+
self.make_button_green(self.esm_dict["AGN"])
|
460
|
+
buttons_to_send.append(self.esm_dict["AGN"])
|
461
|
+
else:
|
462
|
+
self.make_button_green(self.esm_dict["EXCH"])
|
463
|
+
buttons_to_send.append(self.esm_dict["EXCH"])
|
464
|
+
buttons_to_send.append("LOGIT")
|
465
|
+
|
466
|
+
if with_enter is True and bool(len(buttons_to_send)):
|
467
|
+
for button in buttons_to_send:
|
468
|
+
if button:
|
469
|
+
if button == "LOGIT":
|
470
|
+
self.save_contact()
|
471
|
+
continue
|
472
|
+
self.process_function_key(button)
|
473
|
+
|
474
|
+
|
475
|
+
def populate_history_info_line(self):
|
476
|
+
result = self.database.fetch_call_history(self.callsign.text())
|
477
|
+
if result:
|
478
|
+
self.history_info.setText(
|
479
|
+
f"{result.get('Call', '')}, {result.get('Exch1', '')}, {result.get('UserText','...')}"
|
480
|
+
)
|
481
|
+
else:
|
482
|
+
self.history_info.setText("")
|
483
|
+
|
484
|
+
|
485
|
+
def check_call_history(self):
|
486
|
+
""""""
|
487
|
+
result = self.database.fetch_call_history(self.callsign.text())
|
488
|
+
if result:
|
489
|
+
self.history_info.setText(f"{result.get('UserText','')}")
|
490
|
+
if self.other_2.text() == "":
|
491
|
+
self.other_2.setText(f"{result.get('Exch1', '')}")
|
not1mm/radio.py
CHANGED
@@ -27,8 +27,8 @@ class Radio(QObject):
|
|
27
27
|
vfoa = "14030000"
|
28
28
|
mode = "CW"
|
29
29
|
bw = "500"
|
30
|
-
delta =
|
31
|
-
poll_time = datetime.datetime.now() + datetime.timedelta(
|
30
|
+
delta = 500
|
31
|
+
poll_time = datetime.datetime.now() + datetime.timedelta(milliseconds=delta)
|
32
32
|
time_to_quit = False
|
33
33
|
online = False
|
34
34
|
interface = None
|
@@ -72,7 +72,7 @@ class Radio(QObject):
|
|
72
72
|
while not self.time_to_quit:
|
73
73
|
if datetime.datetime.now() > self.poll_time:
|
74
74
|
self.poll_time = datetime.datetime.now() + datetime.timedelta(
|
75
|
-
|
75
|
+
milliseconds=self.delta
|
76
76
|
)
|
77
77
|
vfoa = self.cat.get_vfo()
|
78
78
|
self.online = False
|
@@ -102,7 +102,8 @@ class Radio(QObject):
|
|
102
102
|
)
|
103
103
|
except QEventLoop:
|
104
104
|
...
|
105
|
-
QThread.msleep(
|
105
|
+
# QThread.msleep(int(self.delta / 2))
|
106
|
+
QThread.msleep(1)
|
106
107
|
|
107
108
|
def store_last_data_mode(self, the_mode: str = ""):
|
108
109
|
"""if the last mode is a data mode, save it."""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.
|
3
|
+
Version: 24.12.3.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
|
@@ -57,7 +57,7 @@ Requires-Dist: Levenshtein
|
|
57
57
|
- [Data and RTTY](#data-and-rtty)
|
58
58
|
- [Other not so supported contests](#other-not-so-supported-contests)
|
59
59
|
- [Our Code Contributors ✨](#our-code-contributors-)
|
60
|
-
- [List of should be working contests
|
60
|
+
- [List of should be working contests](#list-of-should-be-working-contests)
|
61
61
|
- [Recent Changes (Polishing the Turd)](#recent-changes-polishing-the-turd)
|
62
62
|
- [Flatpak](#flatpak)
|
63
63
|
- [Installation](#installation)
|
@@ -203,53 +203,43 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
203
203
|
<img src="https://contrib.rocks/image?repo=mbridak/not1mm" alt="Avatar icons for code contributors." />
|
204
204
|
</a>
|
205
205
|
|
206
|
-
## List of should be working contests
|
206
|
+
## List of should be working contests
|
207
207
|
|
208
|
-
-
|
208
|
+
- General Logging (There are better general loggers like QLog, KLog, CQRLog)
|
209
209
|
- 10 10 Fall CW
|
210
210
|
- 10 10 Spring CW
|
211
211
|
- 10 10 Summer Phone
|
212
212
|
- 10 10 Winter Phone
|
213
213
|
- ARRL 10M
|
214
|
-
-
|
215
|
-
-
|
216
|
-
-
|
214
|
+
- ARRL DX CW, SSB
|
215
|
+
- ARRL Field Day
|
216
|
+
- ARRL Sweepstakes CW, SSB
|
217
217
|
- ARRL VHF January, June, September
|
218
218
|
- CQ 160 CW, SSB
|
219
|
-
-
|
220
|
-
-
|
221
|
-
-
|
222
|
-
-
|
223
|
-
-
|
219
|
+
- CQ WPX CW, RTTY, SSB
|
220
|
+
- CQ World Wide CW, RTTY, SSB
|
221
|
+
- CWOps CWT
|
222
|
+
- DARC Xmas
|
223
|
+
- Helvetia
|
224
224
|
- IARU Fieldday R1 CW, SSB
|
225
225
|
- IARU HF
|
226
|
-
-
|
227
|
-
-
|
228
|
-
-
|
229
|
-
-
|
230
|
-
-
|
231
|
-
-
|
232
|
-
-
|
233
|
-
-
|
234
|
-
-
|
235
|
-
-
|
236
|
-
-
|
237
|
-
-
|
226
|
+
- ICWC MST
|
227
|
+
- Japan International DX CW, SSB
|
228
|
+
- K1USN Slow Speed Test
|
229
|
+
- LZ DX
|
230
|
+
- NAQP CW, RTTY, SSB
|
231
|
+
- Phone Weekly Test
|
232
|
+
- RAEM
|
233
|
+
- RAC Canada Day
|
234
|
+
- REF CW, SSB
|
235
|
+
- Stew Perry Topband
|
236
|
+
- Weekly RTTY
|
237
|
+
- Winter Field Day
|
238
238
|
|
239
239
|
## Recent Changes (Polishing the Turd)
|
240
240
|
|
241
|
-
- [24-
|
242
|
-
- [24-
|
243
|
-
- [24-11-18] Accepted PR from dg9vh for the DARC XMAS Contest.
|
244
|
-
- [24-11-17] Accepted PR from dg9vh for the LZ DX contest.
|
245
|
-
- [24-11-15] Made checkwindow font bigger and match a little more contrasted.
|
246
|
-
- [24-11-12] add check for ipv4 address for CAT.
|
247
|
-
- [24-11-10] ReJiggered CAT/flrig interface to hopefull make it more workable.
|
248
|
-
- [24-11-6] Added Call history to ARRL VHF, CQ160, CQWW, StewPerry, Weekly RTTY
|
249
|
-
- [24-11-5] Fix crash with bad qrz credentials.
|
250
|
-
- [24-11-3-1] Fixed CWT ESM, Add Call History to CWT, Helvetia, WFD, NAQP, K1USN. Add ESM Helvetia.
|
251
|
-
- [24-11-3] Added RAEM contest
|
252
|
-
- [24-11-2] Add beginning of call history files. Add command buttons.
|
241
|
+
- [24-12-3-1] Adding ARRL 160
|
242
|
+
- [24-12-3] Add button to bandmap to delete marked spots.
|
253
243
|
|
254
244
|
See [CHANGELOG.md](CHANGELOG.md) for prior changes.
|
255
245
|
|
@@ -742,8 +732,7 @@ is this has happened, since the gridsquare will replace the word "Regional".
|
|
742
732
|
|
743
733
|
| Key | Result |
|
744
734
|
| -------------- | --- |
|
745
|
-
| [Esc] |
|
746
|
-
| [CTRL-Esc] | Stops cwdaemon from sending Morse. |
|
735
|
+
| [Esc] | Stops cwdaemon from sending Morse. |
|
747
736
|
| [PgUp] | Increases the cw sending speed. |
|
748
737
|
| [PgDown] | Decreases the cw sending speed. |
|
749
738
|
| [Arrow-Up] | Jump to the next spot above the current VFO cursor in the bandmap window (CAT Required). |
|
@@ -758,6 +747,7 @@ is this has happened, since the gridsquare will replace the word "Regional".
|
|
758
747
|
| [CTRL-G] | Tune to a spot matching partial text in the callsign entry field (CAT Required). |
|
759
748
|
| [CTRL-SHIFT-K] | Open CW text input field. |
|
760
749
|
| [CTRL-=] | Log the contact without sending the ESM macros.|
|
750
|
+
| [CTRL-W] | Clears the input fields of any text. |
|
761
751
|
|
762
752
|
### The Log Window
|
763
753
|
|
@@ -1,11 +1,11 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
3
|
-
not1mm/bandmap.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=SOPb_t3oI7vk8v1MhgTTeU-axyfU464n-pTDciNWp3U,142786
|
3
|
+
not1mm/bandmap.py,sha256=zD3aUf36NVQCy0plAcZLNxYhSEM9xZ8J1Cu9vrcFPYA,31136
|
4
4
|
not1mm/checkwindow.py,sha256=VFAcKYTcoWhmIf91chwY6tyao9FQMWPiUkgDDkkWaog,9670
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
6
6
|
not1mm/logwindow.py,sha256=TvpzQTNB92hISlUO3iWBqtlPmlebdhOkAArx0DNGcOs,43966
|
7
7
|
not1mm/lookupservice.py,sha256=4c36x_1G3Sy69gQfJ6El7vHLIKTjLGH67ziPPoeYweM,2648
|
8
|
-
not1mm/radio.py,sha256=
|
8
|
+
not1mm/radio.py,sha256=c4m7Ci38uKGKxB0JUT5uOKalI_Mm8Vmixu5D_roN5z4,5400
|
9
9
|
not1mm/test.py,sha256=RN71m2S9MPIOJMaoCi0wZhwEhpEZunvtosZxaKahRB4,101
|
10
10
|
not1mm/vfo.py,sha256=ggPyWtxMbdSE5RwdK0nDRwDNqOxdpb_pvnzZdbzZVQE,11136
|
11
11
|
not1mm/voice_keying.py,sha256=sA3gw5_k7kShTg2qhG7HkKDM5M6KheJVRkAc_C7mxDk,3006
|
@@ -13,14 +13,14 @@ not1mm/data/JetBrainsMono-ExtraLight.ttf,sha256=g5Hn7BPounWMGDj1a8zZcyKMz03HSqW_
|
|
13
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
|
-
not1mm/data/bandmap.ui,sha256=
|
16
|
+
not1mm/data/bandmap.ui,sha256=krmUYxGPRt2EeqSGrEkY2cXG79ujel3T2_2ymrrbgzg,7942
|
17
17
|
not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
|
18
18
|
not1mm/data/checkwindow.ui,sha256=PRD98K0julJ9EfWqoE89dT8UPuPKQzGiWBk_efAko3o,5141
|
19
|
-
not1mm/data/configuration.ui,sha256=
|
19
|
+
not1mm/data/configuration.ui,sha256=nDiLlttOOCnejEMxOFkPNpXHJErD92NdGA1llXUtzL0,70329
|
20
20
|
not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
|
21
21
|
not1mm/data/cty.json,sha256=dPG9K1Pm4Rxd4uJom_gQ8y-sbqiZfILpl4kBAFnOveU,4877142
|
22
22
|
not1mm/data/cwmacros.txt,sha256=NztufsX6R52gAO7VyJ2AHr7wOh41pJTwHKh5Lcs32ds,468
|
23
|
-
not1mm/data/donors.html,sha256=
|
23
|
+
not1mm/data/donors.html,sha256=DtH9DoDZoMLJf6adisJT8jCcnyhmj4gzHhX5UmmDgjI,239
|
24
24
|
not1mm/data/editcontact.ui,sha256=TNOsXETYfDaON4wj6AkzCJ-n2SmbNRO2-g2SLl5m8s0,27437
|
25
25
|
not1mm/data/editmacro.ui,sha256=Vg-S62ogKYcWlDDlza_JYyZkCQfa8mCfF-cFqpBej-w,2700
|
26
26
|
not1mm/data/greendot.png,sha256=6h6KFMj5mmu07ppPWXXewH0PLAvbOOre-5z6rpzWLLo,474
|
@@ -31,7 +31,7 @@ not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N
|
|
31
31
|
not1mm/data/logwindow.ui,sha256=f7vULj96tHIQuR1nJMyvPHHcmVgzkhv9D1isyojsnFU,1458
|
32
32
|
not1mm/data/logwindowx.ui,sha256=CwpI-h7cI1yqyldH9quKftsdHL5lTyL9ABOcf80nfqc,1632
|
33
33
|
not1mm/data/main.ui,sha256=pI-70TYESe85ENkRH8l1DXnKDOkwYqKXUdMk6KYaN50,63193
|
34
|
-
not1mm/data/new_contest.ui,sha256=
|
34
|
+
not1mm/data/new_contest.ui,sha256=KXLQixsrKPnS7siN12CznMxtJtwVInf8Aqdw7o4Q2kA,23844
|
35
35
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
36
36
|
not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
|
37
37
|
not1mm/data/pickcontest.ui,sha256=4hPBszCglObThx_eIWtmK9CEcbr7WBjbB1rKZdI-o3I,1707
|
@@ -95,9 +95,9 @@ not1mm/data/phonetics/yourcall.wav,sha256=4kheHJmCiRDL2kjhlgXQ8_u_eEMgKxiNGu5UBk
|
|
95
95
|
not1mm/data/phonetics/z.wav,sha256=arafCi7fwmBLdVDI-PRyaL4U-03PIQDhffwY5noJ_2c,51768
|
96
96
|
not1mm/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
97
|
not1mm/lib/about.py,sha256=sWycfGcruN3SaEe4JmaJ61K6D8Itq0WxpUYT-lEcmYM,416
|
98
|
-
not1mm/lib/cat_interface.py,sha256
|
98
|
+
not1mm/lib/cat_interface.py,sha256=0R9ZiEZ0u0RzPrw_hrFNIdS4ybUBgAKtD74x2jdCVIU,25094
|
99
99
|
not1mm/lib/cwinterface.py,sha256=yQL8Dif9oOIynaRItHgvcmu4mYv1TnTpqCHPtkeb09o,4472
|
100
|
-
not1mm/lib/database.py,sha256=
|
100
|
+
not1mm/lib/database.py,sha256=mm3vJgKmAQcUn4Ej--feR0yc_RhWTN01JIwMelI1EdI,48971
|
101
101
|
not1mm/lib/edit_contact.py,sha256=Ki9bGPpqyQQBB1cU8VIBDCal3lbXeQ6qxhzklmhE2_w,353
|
102
102
|
not1mm/lib/edit_macro.py,sha256=raKWBwsHInj5EUKmvyLQ6gqc3ZFDlstsD3xqoM4PC8E,517
|
103
103
|
not1mm/lib/edit_opon.py,sha256=j3qJ1aBsQoIOnQ9yiBl3lyeISvKTP0I_rtBYBPAfgeI,359
|
@@ -112,41 +112,42 @@ not1mm/lib/n1mm.py,sha256=H54mpgJF0GAmKavM-nb5OAq2SJFWYkux4eMWWiSRxJc,6288
|
|
112
112
|
not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
113
113
|
not1mm/lib/plugin_common.py,sha256=AABdx9DoTT8Znrup7AkfmKGC22hshMsEypiMqV0iKw0,10671
|
114
114
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
115
|
-
not1mm/lib/settings.py,sha256=
|
115
|
+
not1mm/lib/settings.py,sha256=pyCa6EUhDs97g1KTmWS8RLXCSbrB9ruv7LV48_nuEAk,13781
|
116
116
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
117
|
-
not1mm/lib/version.py,sha256=
|
117
|
+
not1mm/lib/version.py,sha256=bhMR4QJmK3QTUeDWE0-woWg7mLLA96OgD2nM4b0gykU,50
|
118
118
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
119
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
120
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
121
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
122
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
119
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=AsvB2VUd6Qb2_FzZkSBkSd1_qeP8Dt-B-exF1Pzb9tk,14469
|
120
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=nA4v0oqlp-ivvKqNPakb19I-wE_ElhvH5bCzDRx00JU,14474
|
121
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=FNcTQoyZCeAW2i3SKYYDZWuJS1vmk1CO4XO1MAZe8rQ,14587
|
122
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=NRAKgu4oYzrpUtjUKWgCfZQf3b85sdVe9oyl-yD6kJo,14486
|
123
123
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
124
|
-
not1mm/plugins/arrl_10m.py,sha256
|
124
|
+
not1mm/plugins/arrl_10m.py,sha256=-stuBD3DCdlWctxE9bWEeznZrgIfNw7VcMIE1ZmsfMo,17942
|
125
|
+
not1mm/plugins/arrl_160m.py,sha256=azm0SV-bTDHe2LDK1TjVgRLajlv2vnKZrpN7wgTv7ho,18441
|
125
126
|
not1mm/plugins/arrl_dx_cw.py,sha256=1epTIf9TjeUCjYlpRDU54Ig3lJdXa2e5JZI9SCGE080,17400
|
126
127
|
not1mm/plugins/arrl_dx_ssb.py,sha256=IEZ6tlP9stW3Mdr5_qTBS77hjAUU43IpagyPjr0eqaQ,17403
|
127
128
|
not1mm/plugins/arrl_field_day.py,sha256=YEyXr1Ytllq12sCj54erOba0wrblwb0_bq51gj75OIQ,16478
|
128
129
|
not1mm/plugins/arrl_rtty_ru.py,sha256=npOuf7OxcF0BbvpXJuPOLwf0-wONbDlGW7_B_-BSFz0,7370
|
129
130
|
not1mm/plugins/arrl_ss_cw.py,sha256=HlUsDqyPAZh9VuatcGJ7EDst4qfS6f35yv_nPPzYW7M,17162
|
130
131
|
not1mm/plugins/arrl_ss_phone.py,sha256=_QWnat0y2LLoKTP9RF-sZBqxWxHNrKiPYopBpq8kKTs,16498
|
131
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
132
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
133
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
132
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=tNBrm8Zi_-FgRvu16sySVVnKVpHBYkqdbTlTCWmnOhc,19781
|
133
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=2F1L19A6FKFN6w3Xt5U_ueXoUdtEAqToIyy4n0vQ_h0,18873
|
134
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=bjZNHIAYMaPnhCJ31O5pso-4yHcoURo3DAkL8Y_ZTto,18912
|
134
135
|
not1mm/plugins/canada_day.py,sha256=WxtIm0xl8vd8XUDHX3VQnjDzRhPXM1UR92Qjg99NLMY,15245
|
135
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
136
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
136
|
+
not1mm/plugins/cq_160_cw.py,sha256=1oEI6lH-LUZSY-BSlbWsXnc4F5dmIF8bVBewy10k4Jc,18555
|
137
|
+
not1mm/plugins/cq_160_ssb.py,sha256=_0bkvq0KvSdyTBhkqJ35VqXuaWIaDNmBGE1aQ-cxQz8,18598
|
137
138
|
not1mm/plugins/cq_wpx_cw.py,sha256=H1H4xL-hx0sqU_8fSQYnNzO0ZcOLV-KSOQT9wPvIva0,17843
|
138
139
|
not1mm/plugins/cq_wpx_rtty.py,sha256=nT2lMdAM1pRu2jNKI4FpkGei9kEGX0XcF_24FkL0lnY,20662
|
139
140
|
not1mm/plugins/cq_wpx_ssb.py,sha256=Zjga12w_ISh4aZjCYZbpwN0x0032Prc8p7aIGI7HJFQ,16410
|
140
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
141
|
+
not1mm/plugins/cq_ww_cw.py,sha256=POh_H6FlZrFeayt4x0aGn-xytcPZ_Ww8w8mFStoLyOE,17893
|
141
142
|
not1mm/plugins/cq_ww_rtty.py,sha256=Pfpr8xWJwp2NOci-WQMTUZaMpAtsUGq1jrIIUv6lQ2Y,21971
|
142
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
143
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=IyPmEImq_eb5YSFuhHxiJU4EFAPB4D5dg2xED6Nu97k,17491
|
143
144
|
not1mm/plugins/cwt.py,sha256=3gA1DqiXxj5NARdG5i0PyFmuq3XSXn6LisZxD5jFs4M,17034
|
144
145
|
not1mm/plugins/darc_xmas.py,sha256=GdtAQVCLogKGzZaexJfzsZms5SbLLlO1YweFPjgvYWw,18458
|
145
146
|
not1mm/plugins/general_logging.py,sha256=NV_FCgpAEEQrVRxMDD7nQ2krJgPrhtopizxrGndtUNk,6686
|
146
147
|
not1mm/plugins/helvetia.py,sha256=SRKn7jflfYPUNrvmErDM44af5YWUe57h7JkIwFSbT0Q,19609
|
147
|
-
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=
|
148
|
-
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=
|
149
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
148
|
+
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=oWeFuKxvY15vRiUh2vW3z3o7mxJMae7vfpKx4OFU_yA,16816
|
149
|
+
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=HylTAcNs0DSii5EDzMQlocjs4k7rQ579YvLrwn6sqIQ,16821
|
150
|
+
not1mm/plugins/iaru_hf.py,sha256=RcVf0UFaHX0eSpUZMMGHC0HTsOy_SwTH9Yi9SeJNQUA,15715
|
150
151
|
not1mm/plugins/icwc_mst.py,sha256=K1tgNXiknGbnvxG4sEZQCgZnjI6x3OYRI_4Djmr8E2Q,15976
|
151
152
|
not1mm/plugins/jidx_cw.py,sha256=KJOE3fU0KVMqD5IqvnN3YDHPEwrMx3yJZBmCtAIP7WQ,15650
|
152
153
|
not1mm/plugins/jidx_ph.py,sha256=1l92EmDZJFRGZjR1VrISgFc8KoHVfmJvLsaVsuufIMs,14599
|
@@ -162,9 +163,9 @@ not1mm/plugins/ref_ssb.py,sha256=G2Gz4kApchmOZQVnBexEokSEvdb-mZWJAfyJ1D6JDGY,204
|
|
162
163
|
not1mm/plugins/stew_perry_topband.py,sha256=Gy_vv6tgkR-3vmvsUVO0pVfHMkUJSxpt7G4secn0RH8,15084
|
163
164
|
not1mm/plugins/weekly_rtty.py,sha256=PI0_AtEdZZKGAuKnP-b2EYn9xwCN1Ablk38trbNP3Rc,19603
|
164
165
|
not1mm/plugins/winter_field_day.py,sha256=9w3tDL9ZWiENSTERc3vzDbBktvI7pnyNvlH6fDjAi08,14841
|
165
|
-
not1mm-24.
|
166
|
-
not1mm-24.
|
167
|
-
not1mm-24.
|
168
|
-
not1mm-24.
|
169
|
-
not1mm-24.
|
170
|
-
not1mm-24.
|
166
|
+
not1mm-24.12.3.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
167
|
+
not1mm-24.12.3.1.dist-info/METADATA,sha256=-sRAqH5a1_ncxP4em6VdOODYlw2xni9qchE8Q4AJqdE,35687
|
168
|
+
not1mm-24.12.3.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
169
|
+
not1mm-24.12.3.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
170
|
+
not1mm-24.12.3.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
171
|
+
not1mm-24.12.3.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|