not1mm 24.4.2.1__py3-none-any.whl → 24.4.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- not1mm/__main__.py +3 -3
- not1mm/lib/new_contest.py +11 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/10_10_fall_cw.py +2 -0
- not1mm/plugins/10_10_spring_cw.py +2 -0
- not1mm/plugins/10_10_summer_phone.py +2 -0
- not1mm/plugins/10_10_winter_phone.py +2 -0
- not1mm/plugins/arrl_10m.py +2 -0
- not1mm/plugins/arrl_dx_cw.py +2 -0
- not1mm/plugins/arrl_dx_ssb.py +2 -0
- not1mm/plugins/arrl_field_day.py +2 -0
- not1mm/plugins/arrl_rtty_ru.py +2 -0
- not1mm/plugins/arrl_ss_cw.py +2 -5
- not1mm/plugins/arrl_ss_phone.py +2 -5
- not1mm/plugins/arrl_vhf_jan.py +2 -0
- not1mm/plugins/arrl_vhf_jun.py +2 -0
- not1mm/plugins/arrl_vhf_sep.py +2 -0
- not1mm/plugins/canada_day.py +2 -0
- not1mm/plugins/cq_160_cw.py +2 -0
- not1mm/plugins/cq_160_ssb.py +2 -0
- not1mm/plugins/cq_wpx_cw.py +2 -0
- not1mm/plugins/cq_wpx_ssb.py +2 -0
- not1mm/plugins/cq_ww_cw.py +2 -0
- not1mm/plugins/cq_ww_ssb.py +2 -0
- not1mm/plugins/cwt.py +3 -0
- not1mm/plugins/general_logging.py +1 -1
- not1mm/plugins/iaru_hf.py +2 -0
- not1mm/plugins/jidx_cw.py +2 -0
- not1mm/plugins/jidx_ph.py +2 -0
- not1mm/plugins/naqp_cw.py +2 -0
- not1mm/plugins/naqp_ssb.py +2 -0
- not1mm/plugins/phone_weekly_test.py +2 -0
- not1mm/plugins/stew_perry_topband.py +1 -0
- not1mm/plugins/winter_field_day.py +2 -0
- not1mm/vfo.py +2 -1
- {not1mm-24.4.2.1.dist-info → not1mm-24.4.4.dist-info}/METADATA +2 -1
- {not1mm-24.4.2.1.dist-info → not1mm-24.4.4.dist-info}/RECORD +41 -41
- {not1mm-24.4.2.1.dist-info → not1mm-24.4.4.dist-info}/LICENSE +0 -0
- {not1mm-24.4.2.1.dist-info → not1mm-24.4.4.dist-info}/WHEEL +0 -0
- {not1mm-24.4.2.1.dist-info → not1mm-24.4.4.dist-info}/entry_points.txt +0 -0
- {not1mm-24.4.2.1.dist-info → not1mm-24.4.4.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -3181,9 +3181,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3181
3181
|
)
|
3182
3182
|
try:
|
3183
3183
|
fsutils.openFileWithOS(fsutils.USER_DATA_PATH / macro_file)
|
3184
|
-
except:
|
3185
|
-
logger.
|
3186
|
-
f"Could not open file {fsutils.USER_DATA_PATH / macro_file}"
|
3184
|
+
except FileNotFoundError | PermissionError | OSError as err:
|
3185
|
+
logger.critical(
|
3186
|
+
f"Could not open file {fsutils.USER_DATA_PATH / macro_file} {err}"
|
3187
3187
|
)
|
3188
3188
|
|
3189
3189
|
def read_cw_macros(self) -> None:
|
not1mm/lib/new_contest.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
"""New Contest Dialog"""
|
2
2
|
|
3
|
+
import importlib
|
3
4
|
from PyQt6 import QtWidgets, uic
|
4
5
|
|
5
6
|
|
@@ -10,6 +11,16 @@ class NewContest(QtWidgets.QDialog):
|
|
10
11
|
super().__init__(None)
|
11
12
|
uic.loadUi(app_data_path / "new_contest.ui", self)
|
12
13
|
self.buttonBox.clicked.connect(self.store)
|
14
|
+
self.contest.currentTextChanged.connect(self.add_exchange_hint)
|
13
15
|
|
14
16
|
def store(self):
|
15
17
|
"""dialog magic"""
|
18
|
+
|
19
|
+
def add_exchange_hint(self):
|
20
|
+
"""add hint"""
|
21
|
+
contest_name = self.contest.currentText().lower().replace(" ", "_")
|
22
|
+
temp = importlib.import_module(f"not1mm.plugins.{contest_name}")
|
23
|
+
if hasattr(temp, "EXCHANGE_HINT"):
|
24
|
+
self.exchange.setPlaceholderText(temp.EXCHANGE_HINT)
|
25
|
+
else:
|
26
|
+
self.exchange.setPlaceholderText("")
|
not1mm/lib/version.py
CHANGED
not1mm/plugins/10_10_fall_cw.py
CHANGED
not1mm/plugins/arrl_10m.py
CHANGED
not1mm/plugins/arrl_dx_cw.py
CHANGED
not1mm/plugins/arrl_dx_ssb.py
CHANGED
not1mm/plugins/arrl_field_day.py
CHANGED
not1mm/plugins/arrl_rtty_ru.py
CHANGED
not1mm/plugins/arrl_ss_cw.py
CHANGED
@@ -14,6 +14,8 @@ from not1mm.lib.version import __version__
|
|
14
14
|
|
15
15
|
logger = logging.getLogger(__name__)
|
16
16
|
|
17
|
+
EXCHANGE_HINT = "Prec Call Check Section"
|
18
|
+
|
17
19
|
name = "ARRL Sweepstakes CW"
|
18
20
|
cabrillo_name = "ARRL-SS-CW"
|
19
21
|
mode = "CW" # CW SSB BOTH RTTY
|
@@ -381,23 +383,19 @@ def parse_exchange(self):
|
|
381
383
|
for tokens in exchange.split():
|
382
384
|
text = ""
|
383
385
|
numb = ""
|
384
|
-
print(f"'{tokens}'")
|
385
386
|
if tokens.isdigit():
|
386
|
-
print(f"{tokens} is digits")
|
387
387
|
if sn == "":
|
388
388
|
sn = tokens
|
389
389
|
else:
|
390
390
|
ck = tokens
|
391
391
|
continue
|
392
392
|
elif tokens.isalpha():
|
393
|
-
print(f"{tokens} is alpha")
|
394
393
|
if len(tokens) == 1:
|
395
394
|
prec = tokens
|
396
395
|
else:
|
397
396
|
sec = tokens
|
398
397
|
continue
|
399
398
|
elif tokens.isalnum():
|
400
|
-
print("isalnum")
|
401
399
|
if tokens[:1].isalpha():
|
402
400
|
print(f"{tokens} is callsign")
|
403
401
|
call = tokens
|
@@ -406,7 +404,6 @@ def parse_exchange(self):
|
|
406
404
|
if c.isalpha():
|
407
405
|
text = tokens[i:]
|
408
406
|
numb = tokens[:i]
|
409
|
-
print(f"{tokens[:i]} {tokens[i:]}")
|
410
407
|
break
|
411
408
|
if len(text) == 1:
|
412
409
|
prec = text
|
not1mm/plugins/arrl_ss_phone.py
CHANGED
@@ -14,6 +14,8 @@ from not1mm.lib.version import __version__
|
|
14
14
|
|
15
15
|
logger = logging.getLogger(__name__)
|
16
16
|
|
17
|
+
EXCHANGE_HINT = "Prec Call Check Section"
|
18
|
+
|
17
19
|
name = "ARRL Sweepstakes Phone"
|
18
20
|
cabrillo_name = "ARRL-SS-SSB"
|
19
21
|
mode = "SSB" # CW SSB BOTH RTTY
|
@@ -383,30 +385,25 @@ def parse_exchange(self):
|
|
383
385
|
numb = ""
|
384
386
|
print(f"'{tokens}'")
|
385
387
|
if tokens.isdigit():
|
386
|
-
print(f"{tokens} is digits")
|
387
388
|
if sn == "":
|
388
389
|
sn = tokens
|
389
390
|
else:
|
390
391
|
ck = tokens
|
391
392
|
continue
|
392
393
|
elif tokens.isalpha():
|
393
|
-
print(f"{tokens} is alpha")
|
394
394
|
if len(tokens) == 1:
|
395
395
|
prec = tokens
|
396
396
|
else:
|
397
397
|
sec = tokens
|
398
398
|
continue
|
399
399
|
elif tokens.isalnum():
|
400
|
-
print("isalnum")
|
401
400
|
if tokens[:1].isalpha():
|
402
|
-
print(f"{tokens} is callsign")
|
403
401
|
call = tokens
|
404
402
|
continue
|
405
403
|
for i, c in enumerate(tokens):
|
406
404
|
if c.isalpha():
|
407
405
|
text = tokens[i:]
|
408
406
|
numb = tokens[:i]
|
409
|
-
print(f"{tokens[:i]} {tokens[i:]}")
|
410
407
|
break
|
411
408
|
if len(text) == 1:
|
412
409
|
prec = text
|
not1mm/plugins/arrl_vhf_jan.py
CHANGED
not1mm/plugins/arrl_vhf_jun.py
CHANGED
not1mm/plugins/arrl_vhf_sep.py
CHANGED
not1mm/plugins/canada_day.py
CHANGED
not1mm/plugins/cq_160_cw.py
CHANGED
not1mm/plugins/cq_160_ssb.py
CHANGED
not1mm/plugins/cq_wpx_cw.py
CHANGED
not1mm/plugins/cq_wpx_ssb.py
CHANGED
not1mm/plugins/cq_ww_cw.py
CHANGED
not1mm/plugins/cq_ww_ssb.py
CHANGED
not1mm/plugins/cwt.py
CHANGED
@@ -13,6 +13,9 @@ from not1mm.lib.plugin_common import gen_adif, get_points
|
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
15
|
logger = logging.getLogger(__name__)
|
16
|
+
|
17
|
+
EXCHANGE_HINT = "Name + Member No./'CWA'"
|
18
|
+
|
16
19
|
name = "CWT"
|
17
20
|
mode = "CW" # CW SSB BOTH RTTY
|
18
21
|
# columns = [0, 1, 2, 3, 4, 5, 6, 11, 15]
|
@@ -10,7 +10,7 @@ from not1mm.lib.plugin_common import gen_adif, get_points
|
|
10
10
|
from not1mm.lib.version import __version__
|
11
11
|
|
12
12
|
logger = logging.getLogger(__name__)
|
13
|
-
|
13
|
+
EXCHANGE_HINT = ""
|
14
14
|
name = "General Logging"
|
15
15
|
cabrillo_name = "General-Logging"
|
16
16
|
mode = "BOTH" # CW SSB BOTH RTTY
|
not1mm/plugins/iaru_hf.py
CHANGED
not1mm/plugins/jidx_cw.py
CHANGED
not1mm/plugins/jidx_ph.py
CHANGED
not1mm/plugins/naqp_cw.py
CHANGED
not1mm/plugins/naqp_ssb.py
CHANGED
not1mm/vfo.py
CHANGED
@@ -328,7 +328,8 @@ class VfoWindow(QDockWidget):
|
|
328
328
|
Display an alert box with the supplied message.
|
329
329
|
"""
|
330
330
|
message_box = QtWidgets.QMessageBox()
|
331
|
-
|
331
|
+
if self.current_palette:
|
332
|
+
message_box.setPalette(self.current_palette)
|
332
333
|
message_box.setIcon(QtWidgets.QMessageBox.Icon.Information)
|
333
334
|
message_box.setText(message)
|
334
335
|
message_box.setWindowTitle("Information")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.4.
|
3
|
+
Version: 24.4.4
|
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
|
@@ -177,6 +177,7 @@ I wish to thank those who've contributed to the project.
|
|
177
177
|
|
178
178
|
## Recent Changes
|
179
179
|
|
180
|
+
- [24-4-4] Added per-contest echange hint when adding new contest.
|
180
181
|
- [24-4-2] Migrated to PyQt6. I'm sure there are broken things.
|
181
182
|
- [24-4-1-2] Added color text indicators to the Check Partial window. Poached the code from @kyleboyle. Thanks! Fixed the Log, VFO and Check Partial windows to be actual docking widgets. Refocus call field after double clicking on item in the check partial window.
|
182
183
|
- [24-4-1] Removed some un-needed loops and widgets from the check window. Fixed docking to the left side.
|
@@ -1,10 +1,10 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=ofO8dhlMfS9G3ih_UEpxCCOWU1vmqMfH6CDCUqLbzOE,119858
|
3
3
|
not1mm/bandmap.py,sha256=-wHbUmj-zqefyFO_ydLECwTtWcs37tSkA7Xm2zOVcLA,34318
|
4
4
|
not1mm/checkwindow.py,sha256=ncIOZmuhM_eLR1gb-St8FqEefbUkD9p9VltFDJVxLeY,10465
|
5
5
|
not1mm/fsutils.py,sha256=Li8Tq9K7c_q7onOHOQ7u1dOOFfhIIz5Aj2LKuQtGOO4,1652
|
6
6
|
not1mm/logwindow.py,sha256=H6FbKowq5ekEhALRPiRugZk_Rv1mwtMF5VT_OBZ63Oo,44900
|
7
|
-
not1mm/vfo.py,sha256=
|
7
|
+
not1mm/vfo.py,sha256=HIr73gob-JLaJqn0TpTYxWApwKR1YpmA43M8QyTnYik,12467
|
8
8
|
not1mm/data/JetBrainsMono-Regular.ttf,sha256=UOHctAKY_PzCGh7zy-6f6egnCcSK0wzmF0csBqO9lDY,203952
|
9
9
|
not1mm/data/MASTER.SCP,sha256=1vQRvEZ865brfmmajp-Lj-hgWejVGI992q8o971bUV8,366478
|
10
10
|
not1mm/data/about.ui,sha256=7TqvtXFFm0Rmcu0bmLupwpO1CsK8MekfZ09_xn6kZrQ,2067
|
@@ -99,48 +99,48 @@ not1mm/lib/ham_utility.py,sha256=pUrysod3wGk4BYOWDAKJxZZTiUNDE4ZzRk8S5ZnllNA,109
|
|
99
99
|
not1mm/lib/lookup.py,sha256=F2fl5QkMxaGSxl1XMWnLUub3T9Mt7LhCX4acOlAsks4,13952
|
100
100
|
not1mm/lib/multicast.py,sha256=bnFUNHyy82GmIb3_88EPBVVssj7-HzkJPaH671cK8Qw,3249
|
101
101
|
not1mm/lib/n1mm.py,sha256=V1NiNyOHaPNYKe_vRsq44O1R42N8uS5PlfRa5Db4Tv0,5712
|
102
|
-
not1mm/lib/new_contest.py,sha256=
|
102
|
+
not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
103
103
|
not1mm/lib/plugin_common.py,sha256=AAKBPCXzTWZJb-h08uPNnHVG7bSCg7kwukc211gFivY,8605
|
104
104
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
105
105
|
not1mm/lib/settings.py,sha256=tlXlJUUZP0IFwIDc9DboM5_1by_tHNtMXvyJ0E7B6RI,8877
|
106
106
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
107
|
-
not1mm/lib/version.py,sha256=
|
107
|
+
not1mm/lib/version.py,sha256=HjO--fiMajqd0V_9fJOBO07Crj2XOf9gi0rZlRjUAi8,47
|
108
108
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
109
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
110
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
111
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
112
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
109
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=fUjfwjuscDjicXIxsO0JHh7xTR9Vu0iPsrOLb896Qak,10873
|
110
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=WNaJP5mBQfaB6SxnFI0Vawt3AKDr94tKVtAK-EVhtUY,10878
|
111
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=_dgrXDQ4S44EiTr1bDydSBkvY9jOY_ll8PQ54eXfd8U,10887
|
112
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=8uKM7iE6_fkARUpvOZeTmJkgME5nAhGq7axOX7JA4sg,10890
|
113
113
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
114
|
-
not1mm/plugins/arrl_10m.py,sha256
|
115
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
116
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
117
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
118
|
-
not1mm/plugins/arrl_rtty_ru.py,sha256=
|
119
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
120
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
121
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
122
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
123
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
124
|
-
not1mm/plugins/canada_day.py,sha256=
|
125
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
126
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
127
|
-
not1mm/plugins/cq_wpx_cw.py,sha256=
|
128
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
129
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
130
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
131
|
-
not1mm/plugins/cwt.py,sha256=
|
132
|
-
not1mm/plugins/general_logging.py,sha256=
|
133
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
134
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
135
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
136
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
137
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
138
|
-
not1mm/plugins/phone_weekly_test.py,sha256=
|
139
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
140
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
141
|
-
not1mm-24.4.
|
142
|
-
not1mm-24.4.
|
143
|
-
not1mm-24.4.
|
144
|
-
not1mm-24.4.
|
145
|
-
not1mm-24.4.
|
146
|
-
not1mm-24.4.
|
114
|
+
not1mm/plugins/arrl_10m.py,sha256=pnRyBqAZy5rP2kTWNyEX-fAjJTOF7ze8STc4KHULvTQ,13677
|
115
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=B4mX8C1pPygioG8NjEXhrgSUrbhnXhceo1ZTbTB0hsQ,13722
|
116
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=aVhNnA2dGl5BLoIXY8ZuJ5nHNok8EFVN2y-dXN7H66o,13725
|
117
|
+
not1mm/plugins/arrl_field_day.py,sha256=OSro24LsSVW41yecKziWQMjflJbo62P8C53Q3M3-Lb0,10052
|
118
|
+
not1mm/plugins/arrl_rtty_ru.py,sha256=hKUS4isjdXo3EYxQrsqsDupPp2chW8fpoWj0T1pTgJ4,7994
|
119
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=yxir0G-UfRCR2NiniTVyE2oWh6rEbTqUUNEm3Der5Ms,12989
|
120
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=M9CKmzyzpEvwPYkbjJepzbOtJ2DVuxZLSmN_sYvT4Ic,12977
|
121
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=ttYIXvwlnwqp0Jg6zkwEj-f1aLj4SZ7gJKKfmpNa5n8,12481
|
122
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=I3dcU01n5-VC07EM3mWJu7CpKo515MduImi9P0sLWz4,11500
|
123
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=HR3zuArCNUu86Nh3xhbPiVNF4ug_GtBrGPwNEG131Fo,11500
|
124
|
+
not1mm/plugins/canada_day.py,sha256=X7T0AjEoooHlm0h37KuLb4u5hQsrCNp8qtd3affbUbE,11907
|
125
|
+
not1mm/plugins/cq_160_cw.py,sha256=0h90dF8avfl7UJcUsAK4SMuXpmStkssQB2gSQMW3tnU,14059
|
126
|
+
not1mm/plugins/cq_160_ssb.py,sha256=jhUc_1hc68jtv8vNS_UadqfaRjY1KnBPHJXGE1K27d4,14102
|
127
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=iGuGvsLe9V_HzsGRjMckCPJBklvuDjyp9jVOX6Wr-1A,12399
|
128
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=C-25CMIhvKIhUx6j4TEvOK5597EwRYrTcHptILAoEnI,12487
|
129
|
+
not1mm/plugins/cq_ww_cw.py,sha256=O4E4r0Jbp-lz5Npuhe3GYPwJ9dcEalW1YNe3TusforU,11114
|
130
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=WG_wsMuqt6F1M7DRvbW3c4kdl5nycUeIHcffjMHGVJs,11119
|
131
|
+
not1mm/plugins/cwt.py,sha256=YtgWH1wjXVmaTNfYG5e3yCrXnfbjOmxuTe8fFCqObFU,12020
|
132
|
+
not1mm/plugins/general_logging.py,sha256=1Y9ruPaxCQkvHHX6N0cwKjZtdC9az-jLbHnJLrcj3M0,3387
|
133
|
+
not1mm/plugins/iaru_hf.py,sha256=PN31WHeRyOFJf8obZPkoPySTxguIQ2KGG8ulj_ZzJRc,11461
|
134
|
+
not1mm/plugins/jidx_cw.py,sha256=Yc-LWjqhphAkiBxZT3KEAJzJ5IUKUdTQEMjfN1OUsBo,11090
|
135
|
+
not1mm/plugins/jidx_ph.py,sha256=S-0Pxti_OdIQGID7w0tR6G44J4hoxQ3XGaCWm_3LXOE,11092
|
136
|
+
not1mm/plugins/naqp_cw.py,sha256=27m1PtUQCROusrzs7OSx1Uxb5223ob5FJKksUj2BTjs,11510
|
137
|
+
not1mm/plugins/naqp_ssb.py,sha256=IWksulcb2_DxlkeW0h3048t8I-u00G_67KBVKkp-TV4,11515
|
138
|
+
not1mm/plugins/phone_weekly_test.py,sha256=gCX0ESUoiQzDp9puwibt9-dRembNsiuEeBdawCVvjHA,12316
|
139
|
+
not1mm/plugins/stew_perry_topband.py,sha256=DIMI3mGMKokXXb9pPLqdhBI6JVnnIs7ZnAL23nFmshE,10588
|
140
|
+
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
141
|
+
not1mm-24.4.4.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
142
|
+
not1mm-24.4.4.dist-info/METADATA,sha256=w-lyauvXXE_ExubDbet2No9aXr7fuL_hsNe09gx1pBk,26634
|
143
|
+
not1mm-24.4.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
144
|
+
not1mm-24.4.4.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
145
|
+
not1mm-24.4.4.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
146
|
+
not1mm-24.4.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|