not1mm 24.12.8__py3-none-any.whl → 24.12.8.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 +1 -1
- not1mm/lib/plugin_common.py +3 -1
- not1mm/lib/version.py +1 -1
- not1mm/plugins/10_10_fall_cw.py +4 -1
- not1mm/plugins/10_10_spring_cw.py +4 -1
- not1mm/plugins/10_10_summer_phone.py +4 -1
- not1mm/plugins/10_10_winter_phone.py +4 -1
- not1mm/plugins/arrl_10m.py +22 -4
- not1mm/plugins/arrl_160m.py +4 -1
- not1mm/plugins/arrl_dx_cw.py +4 -1
- not1mm/plugins/arrl_dx_ssb.py +4 -1
- not1mm/plugins/arrl_field_day.py +4 -1
- not1mm/plugins/arrl_ss_cw.py +4 -1
- not1mm/plugins/arrl_ss_phone.py +4 -1
- not1mm/plugins/arrl_vhf_jan.py +4 -1
- not1mm/plugins/arrl_vhf_jun.py +4 -1
- not1mm/plugins/arrl_vhf_sep.py +4 -1
- not1mm/plugins/canada_day.py +4 -1
- not1mm/plugins/cq_160_cw.py +4 -1
- not1mm/plugins/cq_160_ssb.py +4 -1
- not1mm/plugins/cq_wpx_cw.py +4 -1
- not1mm/plugins/cq_wpx_rtty.py +4 -1
- not1mm/plugins/cq_wpx_ssb.py +4 -1
- not1mm/plugins/cq_ww_cw.py +4 -1
- not1mm/plugins/cq_ww_rtty.py +4 -1
- not1mm/plugins/cq_ww_ssb.py +4 -1
- not1mm/plugins/cwt.py +5 -2
- not1mm/plugins/darc_xmas.py +4 -1
- not1mm/plugins/helvetia.py +4 -1
- not1mm/plugins/iaru_fieldday_r1_cw.py +4 -1
- not1mm/plugins/iaru_fieldday_r1_ssb.py +4 -1
- not1mm/plugins/iaru_hf.py +4 -1
- not1mm/plugins/icwc_mst.py +4 -1
- not1mm/plugins/k1usn_sst.py +5 -2
- not1mm/plugins/lz-dx.py +4 -1
- not1mm/plugins/naqp_cw.py +4 -1
- not1mm/plugins/naqp_rtty.py +4 -1
- not1mm/plugins/naqp_ssb.py +4 -1
- not1mm/plugins/phone_weekly_test.py +4 -1
- not1mm/plugins/raem.py +4 -1
- not1mm/plugins/ref_cw.py +4 -1
- not1mm/plugins/ref_ssb.py +4 -1
- not1mm/plugins/stew_perry_topband.py +4 -1
- not1mm/plugins/weekly_rtty.py +4 -1
- not1mm/plugins/winter_field_day.py +4 -1
- {not1mm-24.12.8.dist-info → not1mm-24.12.8.2.dist-info}/METADATA +3 -1
- {not1mm-24.12.8.dist-info → not1mm-24.12.8.2.dist-info}/RECORD +51 -51
- {not1mm-24.12.8.dist-info → not1mm-24.12.8.2.dist-info}/LICENSE +0 -0
- {not1mm-24.12.8.dist-info → not1mm-24.12.8.2.dist-info}/WHEEL +0 -0
- {not1mm-24.12.8.dist-info → not1mm-24.12.8.2.dist-info}/entry_points.txt +0 -0
- {not1mm-24.12.8.dist-info → not1mm-24.12.8.2.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -2634,7 +2634,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2634
2634
|
self.station["SAntH2"] = self.settings_dialog.ASL.text()
|
2635
2635
|
self.station["ARRLSection"] = self.settings_dialog.ARRLSection.text().upper()
|
2636
2636
|
self.station["RoverQTH"] = self.settings_dialog.RoverQTH.text()
|
2637
|
-
self.station["Club"] = self.settings_dialog.Club.text()
|
2637
|
+
self.station["Club"] = self.settings_dialog.Club.text()
|
2638
2638
|
self.station["Email"] = self.settings_dialog.Email.text()
|
2639
2639
|
self.database.add_station(self.station)
|
2640
2640
|
self.settings_dialog.close()
|
not1mm/lib/plugin_common.py
CHANGED
@@ -23,6 +23,8 @@ def online_score_xml(self):
|
|
23
23
|
assisted = self.contest_settings.get("AssistedCategory", "")
|
24
24
|
bands = self.contest_settings.get("BandCategory", "")
|
25
25
|
modes = self.contest_settings.get("ModeCategory", "")
|
26
|
+
if modes in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
27
|
+
modes = "MIXED"
|
26
28
|
xmiter = self.contest_settings.get("TransmitterCategory", "")
|
27
29
|
ops = self.contest_settings.get("OperatorCategory", "")
|
28
30
|
overlay = self.contest_settings.get("OverlayCategory", "")
|
@@ -35,7 +37,7 @@ def online_score_xml(self):
|
|
35
37
|
f'<call>{self.station.get("Call", "")}</call>'
|
36
38
|
# <ops>NR9Q</ops>
|
37
39
|
f'<class power="{power}" assisted = "{assisted}" transmitter="{xmiter}" ops="{ops}" bands="{bands}" mode="{modes}" overlay="{overlay}"></class>'
|
38
|
-
f"<club>{self.station.get('Club', '')
|
40
|
+
f"<club>{self.station.get('Club', '')}</club>"
|
39
41
|
"<soft>Not1MM</soft>"
|
40
42
|
f"<version>{__version__}</version>"
|
41
43
|
"<qth>"
|
not1mm/lib/version.py
CHANGED
not1mm/plugins/10_10_fall_cw.py
CHANGED
@@ -238,8 +238,11 @@ def cabrillo(self, file_encoding):
|
|
238
238
|
file_descriptor,
|
239
239
|
file_encoding,
|
240
240
|
)
|
241
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
242
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
243
|
+
mode = "MIXED"
|
241
244
|
output_cabrillo_line(
|
242
|
-
f"CATEGORY-MODE: {
|
245
|
+
f"CATEGORY-MODE: {mode}",
|
243
246
|
"\r\n",
|
244
247
|
file_descriptor,
|
245
248
|
file_encoding,
|
@@ -237,8 +237,11 @@ def cabrillo(self, file_encoding):
|
|
237
237
|
file_descriptor,
|
238
238
|
file_encoding,
|
239
239
|
)
|
240
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
241
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
242
|
+
mode = "MIXED"
|
240
243
|
output_cabrillo_line(
|
241
|
-
f"CATEGORY-MODE: {
|
244
|
+
f"CATEGORY-MODE: {mode}",
|
242
245
|
"\r\n",
|
243
246
|
file_descriptor,
|
244
247
|
file_encoding,
|
@@ -241,8 +241,11 @@ def cabrillo(self, file_encoding):
|
|
241
241
|
file_descriptor,
|
242
242
|
file_encoding,
|
243
243
|
)
|
244
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
245
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
246
|
+
mode = "MIXED"
|
244
247
|
output_cabrillo_line(
|
245
|
-
f"CATEGORY-MODE: {
|
248
|
+
f"CATEGORY-MODE: {mode}",
|
246
249
|
"\r\n",
|
247
250
|
file_descriptor,
|
248
251
|
file_encoding,
|
@@ -239,8 +239,11 @@ def cabrillo(self, file_encoding):
|
|
239
239
|
file_descriptor,
|
240
240
|
file_encoding,
|
241
241
|
)
|
242
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
243
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
244
|
+
mode = "MIXED"
|
242
245
|
output_cabrillo_line(
|
243
|
-
f"CATEGORY-MODE: {
|
246
|
+
f"CATEGORY-MODE: {mode}",
|
244
247
|
"\r\n",
|
245
248
|
file_descriptor,
|
246
249
|
file_encoding,
|
not1mm/plugins/arrl_10m.py
CHANGED
@@ -52,7 +52,7 @@ import logging
|
|
52
52
|
from pathlib import Path
|
53
53
|
from PyQt6 import QtWidgets
|
54
54
|
|
55
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
55
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
56
56
|
from not1mm.lib.version import __version__
|
57
57
|
|
58
58
|
logger = logging.getLogger(__name__)
|
@@ -174,7 +174,7 @@ def points(self):
|
|
174
174
|
return 0
|
175
175
|
|
176
176
|
|
177
|
-
def show_mults(self):
|
177
|
+
def show_mults(self, rtc=None):
|
178
178
|
"""Return display string for mults"""
|
179
179
|
# CountryPrefix, integer
|
180
180
|
|
@@ -212,6 +212,9 @@ def show_mults(self):
|
|
212
212
|
if result:
|
213
213
|
dx = result.get("mult_count", 0)
|
214
214
|
|
215
|
+
if rtc is not None:
|
216
|
+
return dx, us_ve_mx + mm
|
217
|
+
|
215
218
|
return us_ve_mx + mm + dx
|
216
219
|
|
217
220
|
|
@@ -285,7 +288,7 @@ def cabrillo(self, file_encoding):
|
|
285
288
|
)
|
286
289
|
if self.station.get("Club", ""):
|
287
290
|
output_cabrillo_line(
|
288
|
-
f"CLUB: {self.station.get('Club', '')
|
291
|
+
f"CLUB: {self.station.get('Club', '')}",
|
289
292
|
"\r\n",
|
290
293
|
file_descriptor,
|
291
294
|
file_encoding,
|
@@ -320,8 +323,11 @@ def cabrillo(self, file_encoding):
|
|
320
323
|
file_descriptor,
|
321
324
|
file_encoding,
|
322
325
|
)
|
326
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
327
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
328
|
+
mode = "MIXED"
|
323
329
|
output_cabrillo_line(
|
324
|
-
f"CATEGORY-MODE: {
|
330
|
+
f"CATEGORY-MODE: {mode}",
|
325
331
|
"\r\n",
|
326
332
|
file_descriptor,
|
327
333
|
file_encoding,
|
@@ -551,3 +557,15 @@ def check_call_history(self):
|
|
551
557
|
self.history_info.setText(f"{result.get('UserText','')}")
|
552
558
|
if self.other_2.text() == "":
|
553
559
|
self.other_2.setText(f"{result.get('State', '')}")
|
560
|
+
|
561
|
+
|
562
|
+
def get_mults(self):
|
563
|
+
""""""
|
564
|
+
mults = {}
|
565
|
+
mults["country"], mults["state"] = show_mults(self, rtc=True)
|
566
|
+
return mults
|
567
|
+
|
568
|
+
|
569
|
+
def just_points(self):
|
570
|
+
""""""
|
571
|
+
return get_points(self)
|
not1mm/plugins/arrl_160m.py
CHANGED
@@ -331,8 +331,11 @@ def cabrillo(self, file_encoding):
|
|
331
331
|
file_descriptor,
|
332
332
|
file_encoding,
|
333
333
|
)
|
334
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
335
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
336
|
+
mode = "MIXED"
|
334
337
|
output_cabrillo_line(
|
335
|
-
f"CATEGORY-MODE: {
|
338
|
+
f"CATEGORY-MODE: {mode}",
|
336
339
|
"\r\n",
|
337
340
|
file_descriptor,
|
338
341
|
file_encoding,
|
not1mm/plugins/arrl_dx_cw.py
CHANGED
@@ -264,8 +264,11 @@ def cabrillo(self, file_encoding):
|
|
264
264
|
file_descriptor,
|
265
265
|
file_encoding,
|
266
266
|
)
|
267
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
268
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
269
|
+
mode = "MIXED"
|
267
270
|
output_cabrillo_line(
|
268
|
-
f"CATEGORY-MODE: {
|
271
|
+
f"CATEGORY-MODE: {mode}",
|
269
272
|
"\r\n",
|
270
273
|
file_descriptor,
|
271
274
|
file_encoding,
|
not1mm/plugins/arrl_dx_ssb.py
CHANGED
@@ -264,8 +264,11 @@ def cabrillo(self, file_encoding):
|
|
264
264
|
file_descriptor,
|
265
265
|
file_encoding,
|
266
266
|
)
|
267
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
268
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
269
|
+
mode = "MIXED"
|
267
270
|
output_cabrillo_line(
|
268
|
-
f"CATEGORY-MODE: {
|
271
|
+
f"CATEGORY-MODE: {mode}",
|
269
272
|
"\r\n",
|
270
273
|
file_descriptor,
|
271
274
|
file_encoding,
|
not1mm/plugins/arrl_field_day.py
CHANGED
@@ -221,8 +221,11 @@ def cabrillo(self, file_encoding):
|
|
221
221
|
file_descriptor,
|
222
222
|
file_encoding,
|
223
223
|
)
|
224
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
225
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
226
|
+
mode = "MIXED"
|
224
227
|
output_cabrillo_line(
|
225
|
-
f"CATEGORY-MODE: {
|
228
|
+
f"CATEGORY-MODE: {mode}",
|
226
229
|
"\r\n",
|
227
230
|
file_descriptor,
|
228
231
|
file_encoding,
|
not1mm/plugins/arrl_ss_cw.py
CHANGED
@@ -266,8 +266,11 @@ def cabrillo(self, file_encoding):
|
|
266
266
|
file_descriptor,
|
267
267
|
file_encoding,
|
268
268
|
)
|
269
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
270
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
271
|
+
mode = "MIXED"
|
269
272
|
output_cabrillo_line(
|
270
|
-
f"CATEGORY-MODE: {
|
273
|
+
f"CATEGORY-MODE: {mode}",
|
271
274
|
"\r\n",
|
272
275
|
file_descriptor,
|
273
276
|
file_encoding,
|
not1mm/plugins/arrl_ss_phone.py
CHANGED
@@ -247,8 +247,11 @@ def cabrillo(self, file_encoding):
|
|
247
247
|
file_descriptor,
|
248
248
|
file_encoding,
|
249
249
|
)
|
250
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
251
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
252
|
+
mode = "MIXED"
|
250
253
|
output_cabrillo_line(
|
251
|
-
f"CATEGORY-MODE: {
|
254
|
+
f"CATEGORY-MODE: {mode}",
|
252
255
|
"\r\n",
|
253
256
|
file_descriptor,
|
254
257
|
file_encoding,
|
not1mm/plugins/arrl_vhf_jan.py
CHANGED
@@ -297,8 +297,11 @@ def cabrillo(self, file_encoding):
|
|
297
297
|
file_descriptor,
|
298
298
|
file_encoding,
|
299
299
|
)
|
300
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
301
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
302
|
+
mode = "MIXED"
|
300
303
|
output_cabrillo_line(
|
301
|
-
f"CATEGORY-MODE: {
|
304
|
+
f"CATEGORY-MODE: {mode}",
|
302
305
|
"\r\n",
|
303
306
|
file_descriptor,
|
304
307
|
file_encoding,
|
not1mm/plugins/arrl_vhf_jun.py
CHANGED
@@ -265,8 +265,11 @@ def cabrillo(self, file_encoding):
|
|
265
265
|
file_descriptor,
|
266
266
|
file_encoding,
|
267
267
|
)
|
268
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
269
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
270
|
+
mode = "MIXED"
|
268
271
|
output_cabrillo_line(
|
269
|
-
f"CATEGORY-MODE: {
|
272
|
+
f"CATEGORY-MODE: {mode}",
|
270
273
|
"\r\n",
|
271
274
|
file_descriptor,
|
272
275
|
file_encoding,
|
not1mm/plugins/arrl_vhf_sep.py
CHANGED
@@ -265,8 +265,11 @@ def cabrillo(self, file_encoding):
|
|
265
265
|
file_descriptor,
|
266
266
|
file_encoding,
|
267
267
|
)
|
268
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
269
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
270
|
+
mode = "MIXED"
|
268
271
|
output_cabrillo_line(
|
269
|
-
f"CATEGORY-MODE: {
|
272
|
+
f"CATEGORY-MODE: {mode}",
|
270
273
|
"\r\n",
|
271
274
|
file_descriptor,
|
272
275
|
file_encoding,
|
not1mm/plugins/canada_day.py
CHANGED
@@ -288,8 +288,11 @@ def cabrillo(self, file_encoding):
|
|
288
288
|
file_descriptor,
|
289
289
|
file_encoding,
|
290
290
|
)
|
291
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
292
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
293
|
+
mode = "MIXED"
|
291
294
|
output_cabrillo_line(
|
292
|
-
f"CATEGORY-MODE: {
|
295
|
+
f"CATEGORY-MODE: {mode}",
|
293
296
|
"\r\n",
|
294
297
|
file_descriptor,
|
295
298
|
file_encoding,
|
not1mm/plugins/cq_160_cw.py
CHANGED
@@ -276,8 +276,11 @@ def cabrillo(self, file_encoding):
|
|
276
276
|
file_descriptor,
|
277
277
|
file_encoding,
|
278
278
|
)
|
279
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
280
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
281
|
+
mode = "MIXED"
|
279
282
|
output_cabrillo_line(
|
280
|
-
f"CATEGORY-MODE: {
|
283
|
+
f"CATEGORY-MODE: {mode}",
|
281
284
|
"\r\n",
|
282
285
|
file_descriptor,
|
283
286
|
file_encoding,
|
not1mm/plugins/cq_160_ssb.py
CHANGED
@@ -276,8 +276,11 @@ def cabrillo(self, file_encoding):
|
|
276
276
|
file_descriptor,
|
277
277
|
file_encoding,
|
278
278
|
)
|
279
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
280
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
281
|
+
mode = "MIXED"
|
279
282
|
output_cabrillo_line(
|
280
|
-
f"CATEGORY-MODE: {
|
283
|
+
f"CATEGORY-MODE: {mode}",
|
281
284
|
"\r\n",
|
282
285
|
file_descriptor,
|
283
286
|
file_encoding,
|
not1mm/plugins/cq_wpx_cw.py
CHANGED
@@ -309,8 +309,11 @@ def cabrillo(self, file_encoding):
|
|
309
309
|
file_descriptor,
|
310
310
|
file_encoding,
|
311
311
|
)
|
312
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
313
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
314
|
+
mode = "MIXED"
|
312
315
|
output_cabrillo_line(
|
313
|
-
f"CATEGORY-MODE: {
|
316
|
+
f"CATEGORY-MODE: {mode}",
|
314
317
|
"\r\n",
|
315
318
|
file_descriptor,
|
316
319
|
file_encoding,
|
not1mm/plugins/cq_wpx_rtty.py
CHANGED
@@ -308,8 +308,11 @@ def cabrillo(self, file_encoding):
|
|
308
308
|
file_descriptor,
|
309
309
|
file_encoding,
|
310
310
|
)
|
311
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
312
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
313
|
+
mode = "MIXED"
|
311
314
|
output_cabrillo_line(
|
312
|
-
f"CATEGORY-MODE: {
|
315
|
+
f"CATEGORY-MODE: {mode}",
|
313
316
|
"\r\n",
|
314
317
|
file_descriptor,
|
315
318
|
file_encoding,
|
not1mm/plugins/cq_wpx_ssb.py
CHANGED
@@ -272,8 +272,11 @@ def cabrillo(self, file_encoding):
|
|
272
272
|
file_descriptor,
|
273
273
|
file_encoding,
|
274
274
|
)
|
275
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
276
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
277
|
+
mode = "MIXED"
|
275
278
|
output_cabrillo_line(
|
276
|
-
f"CATEGORY-MODE: {
|
279
|
+
f"CATEGORY-MODE: {mode}",
|
277
280
|
"\r\n",
|
278
281
|
file_descriptor,
|
279
282
|
file_encoding,
|
not1mm/plugins/cq_ww_cw.py
CHANGED
@@ -306,8 +306,11 @@ def cabrillo(self, file_encoding):
|
|
306
306
|
file_descriptor,
|
307
307
|
file_encoding,
|
308
308
|
)
|
309
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
310
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
311
|
+
mode = "MIXED"
|
309
312
|
output_cabrillo_line(
|
310
|
-
f"CATEGORY-MODE: {
|
313
|
+
f"CATEGORY-MODE: {mode}",
|
311
314
|
"\r\n",
|
312
315
|
file_descriptor,
|
313
316
|
file_encoding,
|
not1mm/plugins/cq_ww_rtty.py
CHANGED
@@ -296,8 +296,11 @@ def cabrillo(self, file_encoding):
|
|
296
296
|
file_descriptor,
|
297
297
|
file_encoding,
|
298
298
|
)
|
299
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
300
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
301
|
+
mode = "MIXED"
|
299
302
|
output_cabrillo_line(
|
300
|
-
f"CATEGORY-MODE: {
|
303
|
+
f"CATEGORY-MODE: {mode}",
|
301
304
|
"\r\n",
|
302
305
|
file_descriptor,
|
303
306
|
file_encoding,
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
@@ -283,8 +283,11 @@ def cabrillo(self, file_encoding):
|
|
283
283
|
file_descriptor,
|
284
284
|
file_encoding,
|
285
285
|
)
|
286
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
287
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
288
|
+
mode = "MIXED"
|
286
289
|
output_cabrillo_line(
|
287
|
-
f"CATEGORY-MODE: {
|
290
|
+
f"CATEGORY-MODE: {mode}",
|
288
291
|
"\r\n",
|
289
292
|
file_descriptor,
|
290
293
|
file_encoding,
|
not1mm/plugins/cwt.py
CHANGED
@@ -54,7 +54,7 @@ columns = [
|
|
54
54
|
"M1",
|
55
55
|
"PTS",
|
56
56
|
]
|
57
|
-
cabrillo_name = "
|
57
|
+
cabrillo_name = "CW-OPS"
|
58
58
|
|
59
59
|
advance_on_space = [True, True, True, True, True]
|
60
60
|
|
@@ -266,8 +266,11 @@ def cabrillo(self, file_encoding):
|
|
266
266
|
file_descriptor,
|
267
267
|
file_encoding,
|
268
268
|
)
|
269
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
270
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
271
|
+
mode = "MIXED"
|
269
272
|
output_cabrillo_line(
|
270
|
-
f"CATEGORY-MODE: {
|
273
|
+
f"CATEGORY-MODE: {mode}",
|
271
274
|
"\r\n",
|
272
275
|
file_descriptor,
|
273
276
|
file_encoding,
|
not1mm/plugins/darc_xmas.py
CHANGED
@@ -290,8 +290,11 @@ def cabrillo(self, file_encoding):
|
|
290
290
|
file_descriptor,
|
291
291
|
file_encoding,
|
292
292
|
)
|
293
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
294
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
295
|
+
mode = "MIXED"
|
293
296
|
output_cabrillo_line(
|
294
|
-
f"CATEGORY-MODE: {
|
297
|
+
f"CATEGORY-MODE: {mode}",
|
295
298
|
"\r\n",
|
296
299
|
file_descriptor,
|
297
300
|
file_encoding,
|
not1mm/plugins/helvetia.py
CHANGED
@@ -394,8 +394,11 @@ def cabrillo(self, file_encoding):
|
|
394
394
|
file_descriptor,
|
395
395
|
file_encoding,
|
396
396
|
)
|
397
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
398
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
399
|
+
mode = "MIXED"
|
397
400
|
output_cabrillo_line(
|
398
|
-
f"CATEGORY-MODE: {
|
401
|
+
f"CATEGORY-MODE: {mode}",
|
399
402
|
"\r\n",
|
400
403
|
file_descriptor,
|
401
404
|
file_encoding,
|
@@ -299,8 +299,11 @@ def cabrillo(self, file_encoding):
|
|
299
299
|
file_descriptor,
|
300
300
|
file_encoding,
|
301
301
|
)
|
302
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
303
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
304
|
+
mode = "MIXED"
|
302
305
|
output_cabrillo_line(
|
303
|
-
f"CATEGORY-MODE: {
|
306
|
+
f"CATEGORY-MODE: {mode}",
|
304
307
|
"\r\n",
|
305
308
|
file_descriptor,
|
306
309
|
file_encoding,
|
@@ -299,8 +299,11 @@ def cabrillo(self, file_encoding):
|
|
299
299
|
file_descriptor,
|
300
300
|
file_encoding,
|
301
301
|
)
|
302
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
303
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
304
|
+
mode = "MIXED"
|
302
305
|
output_cabrillo_line(
|
303
|
-
f"CATEGORY-MODE: {
|
306
|
+
f"CATEGORY-MODE: {mode}",
|
304
307
|
"\r\n",
|
305
308
|
file_descriptor,
|
306
309
|
file_encoding,
|
not1mm/plugins/iaru_hf.py
CHANGED
@@ -258,8 +258,11 @@ def cabrillo(self, file_encoding):
|
|
258
258
|
file_descriptor,
|
259
259
|
file_encoding,
|
260
260
|
)
|
261
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
262
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
263
|
+
mode = "MIXED"
|
261
264
|
output_cabrillo_line(
|
262
|
-
f"CATEGORY-MODE: {
|
265
|
+
f"CATEGORY-MODE: {mode}",
|
263
266
|
"\r\n",
|
264
267
|
file_descriptor,
|
265
268
|
file_encoding,
|
not1mm/plugins/icwc_mst.py
CHANGED
@@ -251,8 +251,11 @@ def cabrillo(self, file_encoding):
|
|
251
251
|
file_descriptor,
|
252
252
|
file_encoding,
|
253
253
|
)
|
254
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
255
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
256
|
+
mode = "MIXED"
|
254
257
|
output_cabrillo_line(
|
255
|
-
f"CATEGORY-MODE: {
|
258
|
+
f"CATEGORY-MODE: {mode}",
|
256
259
|
"\r\n",
|
257
260
|
file_descriptor,
|
258
261
|
file_encoding,
|
not1mm/plugins/k1usn_sst.py
CHANGED
@@ -36,7 +36,7 @@ logger = logging.getLogger(__name__)
|
|
36
36
|
EXCHANGE_HINT = "Name + SPC"
|
37
37
|
|
38
38
|
name = "K1USN SLOW SPEED TEST"
|
39
|
-
cabrillo_name = "
|
39
|
+
cabrillo_name = "K1USNSST"
|
40
40
|
mode = "CW" # CW SSB BOTH RTTY
|
41
41
|
# columns = [0, 1, 2, 3, 4, 10, 11, 14, 15]
|
42
42
|
columns = [
|
@@ -243,8 +243,11 @@ def cabrillo(self, file_encoding):
|
|
243
243
|
file_descriptor,
|
244
244
|
file_encoding,
|
245
245
|
)
|
246
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
247
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
248
|
+
mode = "MIXED"
|
246
249
|
output_cabrillo_line(
|
247
|
-
f"CATEGORY-MODE: {
|
250
|
+
f"CATEGORY-MODE: {mode}",
|
248
251
|
"\r\n",
|
249
252
|
file_descriptor,
|
250
253
|
file_encoding,
|
not1mm/plugins/lz-dx.py
CHANGED
@@ -304,8 +304,11 @@ def cabrillo(self, file_encoding):
|
|
304
304
|
file_descriptor,
|
305
305
|
file_encoding,
|
306
306
|
)
|
307
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
308
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
309
|
+
mode = "MIXED"
|
307
310
|
output_cabrillo_line(
|
308
|
-
f"CATEGORY-MODE: {
|
311
|
+
f"CATEGORY-MODE: {mode}",
|
309
312
|
"\r\n",
|
310
313
|
file_descriptor,
|
311
314
|
file_encoding,
|
not1mm/plugins/naqp_cw.py
CHANGED
@@ -269,8 +269,11 @@ def cabrillo(self, file_encoding):
|
|
269
269
|
file_descriptor,
|
270
270
|
file_encoding,
|
271
271
|
)
|
272
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
273
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
274
|
+
mode = "MIXED"
|
272
275
|
output_cabrillo_line(
|
273
|
-
f"CATEGORY-MODE: {
|
276
|
+
f"CATEGORY-MODE: {mode}",
|
274
277
|
"\r\n",
|
275
278
|
file_descriptor,
|
276
279
|
file_encoding,
|
not1mm/plugins/naqp_rtty.py
CHANGED
@@ -272,8 +272,11 @@ def cabrillo(self, file_encoding):
|
|
272
272
|
file_descriptor,
|
273
273
|
file_encoding,
|
274
274
|
)
|
275
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
276
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
277
|
+
mode = "MIXED"
|
275
278
|
output_cabrillo_line(
|
276
|
-
f"CATEGORY-MODE: {
|
279
|
+
f"CATEGORY-MODE: {mode}",
|
277
280
|
"\r\n",
|
278
281
|
file_descriptor,
|
279
282
|
file_encoding,
|
not1mm/plugins/naqp_ssb.py
CHANGED
@@ -239,8 +239,11 @@ def cabrillo(self, file_encoding):
|
|
239
239
|
file_descriptor,
|
240
240
|
file_encoding,
|
241
241
|
)
|
242
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
243
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
244
|
+
mode = "MIXED"
|
242
245
|
output_cabrillo_line(
|
243
|
-
f"CATEGORY-MODE: {
|
246
|
+
f"CATEGORY-MODE: {mode}",
|
244
247
|
"\r\n",
|
245
248
|
file_descriptor,
|
246
249
|
file_encoding,
|
@@ -259,8 +259,11 @@ def cabrillo(self, file_encoding):
|
|
259
259
|
file_descriptor,
|
260
260
|
file_encoding,
|
261
261
|
)
|
262
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
263
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
264
|
+
mode = "MIXED"
|
262
265
|
output_cabrillo_line(
|
263
|
-
f"CATEGORY-MODE: {
|
266
|
+
f"CATEGORY-MODE: {mode}",
|
264
267
|
"\r\n",
|
265
268
|
file_descriptor,
|
266
269
|
file_encoding,
|
not1mm/plugins/raem.py
CHANGED
@@ -358,8 +358,11 @@ def cabrillo(self, file_encoding):
|
|
358
358
|
file_descriptor,
|
359
359
|
file_encoding,
|
360
360
|
)
|
361
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
362
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
363
|
+
mode = "MIXED"
|
361
364
|
output_cabrillo_line(
|
362
|
-
f"CATEGORY-MODE: {
|
365
|
+
f"CATEGORY-MODE: {mode}",
|
363
366
|
"\r\n",
|
364
367
|
file_descriptor,
|
365
368
|
file_encoding,
|
not1mm/plugins/ref_cw.py
CHANGED
@@ -399,8 +399,11 @@ def cabrillo(self, file_encoding):
|
|
399
399
|
file_descriptor,
|
400
400
|
file_encoding,
|
401
401
|
)
|
402
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
403
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
404
|
+
mode = "MIXED"
|
402
405
|
output_cabrillo_line(
|
403
|
-
f"CATEGORY-MODE: {
|
406
|
+
f"CATEGORY-MODE: {mode}",
|
404
407
|
"\r\n",
|
405
408
|
file_descriptor,
|
406
409
|
file_encoding,
|
not1mm/plugins/ref_ssb.py
CHANGED
@@ -414,8 +414,11 @@ def cabrillo(self, file_encoding):
|
|
414
414
|
file_descriptor,
|
415
415
|
file_encoding,
|
416
416
|
)
|
417
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
418
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
419
|
+
mode = "MIXED"
|
417
420
|
output_cabrillo_line(
|
418
|
-
f"CATEGORY-MODE: {
|
421
|
+
f"CATEGORY-MODE: {mode}",
|
419
422
|
"\r\n",
|
420
423
|
file_descriptor,
|
421
424
|
file_encoding,
|
@@ -239,8 +239,11 @@ def cabrillo(self, file_encoding):
|
|
239
239
|
file_descriptor,
|
240
240
|
file_encoding,
|
241
241
|
)
|
242
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
243
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
244
|
+
mode = "MIXED"
|
242
245
|
output_cabrillo_line(
|
243
|
-
f"CATEGORY-MODE: {
|
246
|
+
f"CATEGORY-MODE: {mode}",
|
244
247
|
"\r\n",
|
245
248
|
file_descriptor,
|
246
249
|
file_encoding,
|
not1mm/plugins/weekly_rtty.py
CHANGED
@@ -251,8 +251,11 @@ def cabrillo(self, file_encoding):
|
|
251
251
|
file_descriptor,
|
252
252
|
file_encoding,
|
253
253
|
)
|
254
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
255
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
256
|
+
mode = "MIXED"
|
254
257
|
output_cabrillo_line(
|
255
|
-
f"CATEGORY-MODE: {
|
258
|
+
f"CATEGORY-MODE: {mode}",
|
256
259
|
"\r\n",
|
257
260
|
file_descriptor,
|
258
261
|
file_encoding,
|
@@ -232,8 +232,11 @@ def cabrillo(self, file_encoding):
|
|
232
232
|
file_descriptor,
|
233
233
|
file_encoding,
|
234
234
|
)
|
235
|
+
mode = self.contest_settings.get("ModeCategory", "")
|
236
|
+
if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
|
237
|
+
mode = "MIXED"
|
235
238
|
output_cabrillo_line(
|
236
|
-
f"CATEGORY-MODE: {
|
239
|
+
f"CATEGORY-MODE: {mode}",
|
237
240
|
"\r\n",
|
238
241
|
file_descriptor,
|
239
242
|
file_encoding,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.12.8
|
3
|
+
Version: 24.12.8.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
|
@@ -239,6 +239,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
239
239
|
|
240
240
|
## Recent Changes (Polishing the Turd)
|
241
241
|
|
242
|
+
- [24-12-8-2] Add RTC to ARRL 10M, Tweaked cabrillo file output.
|
243
|
+
- [24-12-8-1] Changed cabrillo names for Weekly RTTY, CW Ops CWT and K1USN SST.
|
242
244
|
- [24-12-8] Fix: Weekly RTTY mults. Add RTC to Weekly RTTY.
|
243
245
|
- [24-12-6] Add RTC to K1USN.
|
244
246
|
-[24-12-5-1] ARRL 160 gets rtc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=wwuwQHChnYEWWMkiE5XsudVb52VodXSSMkKdXdWY2JU,144688
|
3
3
|
not1mm/bandmap.py,sha256=zD3aUf36NVQCy0plAcZLNxYhSEM9xZ8J1Cu9vrcFPYA,31136
|
4
4
|
not1mm/checkwindow.py,sha256=VFAcKYTcoWhmIf91chwY6tyao9FQMWPiUkgDDkkWaog,9670
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -111,62 +111,62 @@ not1mm/lib/lookup.py,sha256=KECMDi9tflRDzgTLeDfDl7HGWWRHvW3HCjNHyyjoWaY,10835
|
|
111
111
|
not1mm/lib/multicast.py,sha256=KJcruI-bOuHfHXPjl3SGQhL6I9sKrygy-sdFSvxffUM,3255
|
112
112
|
not1mm/lib/n1mm.py,sha256=H54mpgJF0GAmKavM-nb5OAq2SJFWYkux4eMWWiSRxJc,6288
|
113
113
|
not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
114
|
-
not1mm/lib/plugin_common.py,sha256
|
114
|
+
not1mm/lib/plugin_common.py,sha256=-cvXtEAUgZ7GtxaNiwVdHbZ-7wEBeoMPRZXNdCxnPyA,13203
|
115
115
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
116
116
|
not1mm/lib/settings.py,sha256=j5lIMLHJ-eqIaVr_QhI82gkbOl17_C-5suRkWbHYET8,14717
|
117
117
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
118
|
-
not1mm/lib/version.py,sha256=
|
118
|
+
not1mm/lib/version.py,sha256=dGZ362Sujlt5tGiZfEJuuxkBFn47c3rEzirYRmHScbE,50
|
119
119
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
120
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
121
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
122
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
123
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
120
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=YDuAd9wb0XIVl1jWn4foBRWoPc7YfaWcEnl8EYsZtdI,14578
|
121
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=Dqhd3dcSJk-H1cNayLfjJbstzWePt86iFY9BrpW6gnU,14583
|
122
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=4jgpzNB1RS0To4URWmItS8ZuIOlK7gW9O2HAojSIJGQ,14696
|
123
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=Z1Yqge84-6s1PFyL5aLXt5sa8nPZrw0jki4en-URqtw,14595
|
124
124
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
125
|
-
not1mm/plugins/arrl_10m.py,sha256
|
126
|
-
not1mm/plugins/arrl_160m.py,sha256=
|
127
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
128
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
129
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
125
|
+
not1mm/plugins/arrl_10m.py,sha256=EzVBMdyVtm4LWH-5YR_s--Z7dA8xXLOVTcnAW4ZmLFQ,18325
|
126
|
+
not1mm/plugins/arrl_160m.py,sha256=9SHfxjTX_LECOYDsICnoX_Q133atojsJbmFapehleYE,20236
|
127
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=lTEoFMvy7C5x23DN3pPgwXR-1wkxwcRYBfZsxP_Jf5M,17509
|
128
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=OZW12_NvgE8EBaT2q0meglOi3XkEaVd7fH41qffcM2U,17512
|
129
|
+
not1mm/plugins/arrl_field_day.py,sha256=96gD6Xg8ncgEHXk3rouqvMd-ux-FbHKsBEGTwKoK9kE,16587
|
130
130
|
not1mm/plugins/arrl_rtty_ru.py,sha256=npOuf7OxcF0BbvpXJuPOLwf0-wONbDlGW7_B_-BSFz0,7370
|
131
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
132
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
133
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
134
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
135
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
136
|
-
not1mm/plugins/canada_day.py,sha256=
|
137
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
138
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
139
|
-
not1mm/plugins/cq_wpx_cw.py,sha256=
|
140
|
-
not1mm/plugins/cq_wpx_rtty.py,sha256=
|
141
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
142
|
-
not1mm/plugins/cq_ww_cw.py,sha256
|
143
|
-
not1mm/plugins/cq_ww_rtty.py,sha256=
|
144
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
145
|
-
not1mm/plugins/cwt.py,sha256=
|
146
|
-
not1mm/plugins/darc_xmas.py,sha256=
|
131
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=lLWCIVYiAYri08gwsHaFCG2OFcm6ox-o5_sN5o--EQM,17271
|
132
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=RKsfqzfghvyyBNgLR3JbII-Kjl3EYrKTuBWbf-h-MFs,16607
|
133
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=lIeZVLPW9afO_MtG3y-nSPi1ZNamNk44zHUqtTa28c8,19890
|
134
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=jmBKhEWL-6VK9Rcuc-jlU2-6gyXv7jiBCUkRZ3tWLik,18982
|
135
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=SgILjeGZ4Z6_lz5Bq2uov0kntBbqf57FoIl7dyaFN9Q,19021
|
136
|
+
not1mm/plugins/canada_day.py,sha256=C29L8PWYjXwuQmuh-bkN32eeoex6h5DsWWWpgmntQyo,15354
|
137
|
+
not1mm/plugins/cq_160_cw.py,sha256=Ks41--f-p46rpDeOlzJmLgg7Coj0nyVLuTNWFr7eVHw,18664
|
138
|
+
not1mm/plugins/cq_160_ssb.py,sha256=NqPO9EJzuvjLcacvUn-NJUoeWBUL9lSHYZ-N3Vyfjxk,18707
|
139
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=n3X0lNjQKm0fSyBTRS-d8s0_7ccZ3wMUBSNCWWOVMrk,17952
|
140
|
+
not1mm/plugins/cq_wpx_rtty.py,sha256=2x5qp8ThxkLlbaT3ItYfqK2cWl0FWB27Q80U4oZRsvA,20771
|
141
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=lZdQgCX_DWDhEpWJ643XUAkntKK6Bv67DOdNyoSNgig,16519
|
142
|
+
not1mm/plugins/cq_ww_cw.py,sha256=-z-UNzHrjpdCbsqLmivinHQalrE3SFLGIKX4rOSijJo,18339
|
143
|
+
not1mm/plugins/cq_ww_rtty.py,sha256=pKIvigbbDwSd9QxRsVmGcfE5Wyy1in9lXjVD-8Ikpgo,22080
|
144
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=3IFCJLc9YNRSaSHazE92V9Ds_tiE-0td1sXIWk90I8k,17600
|
145
|
+
not1mm/plugins/cwt.py,sha256=7BoKVrIywlHpP4f4_mrUyWKVsK6vujreb8jDWyXrwUc,17530
|
146
|
+
not1mm/plugins/darc_xmas.py,sha256=SYP35XbR-zyyLmmGb_xCqeNJRqtiuNAja7ufmipt7Ls,18567
|
147
147
|
not1mm/plugins/general_logging.py,sha256=NV_FCgpAEEQrVRxMDD7nQ2krJgPrhtopizxrGndtUNk,6686
|
148
|
-
not1mm/plugins/helvetia.py,sha256=
|
149
|
-
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=
|
150
|
-
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=
|
151
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
152
|
-
not1mm/plugins/icwc_mst.py,sha256=
|
148
|
+
not1mm/plugins/helvetia.py,sha256=819tSh-NAFDqdT6tWlWmH7qAp2OpQVbz6RSS_iPqpv0,19718
|
149
|
+
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=0nSdjaGi3z0QbhapClkUHAQ3ahVCAovW3jkSCwRpxds,16925
|
150
|
+
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=cKgwNAQqaY57oIvSVOVEA7dibdEPDKQS0ZelJxCGaBI,16930
|
151
|
+
not1mm/plugins/iaru_hf.py,sha256=wqlqKMPO0e3HNgbxbQWpckdFkaZ2e9pD3f5NDMZirCU,15824
|
152
|
+
not1mm/plugins/icwc_mst.py,sha256=XfaIRIj0BxWvpWk2nmy_dMseVuKVOh-_m3UcIGOy6wI,16475
|
153
153
|
not1mm/plugins/jidx_cw.py,sha256=KJOE3fU0KVMqD5IqvnN3YDHPEwrMx3yJZBmCtAIP7WQ,15650
|
154
154
|
not1mm/plugins/jidx_ph.py,sha256=1l92EmDZJFRGZjR1VrISgFc8KoHVfmJvLsaVsuufIMs,14599
|
155
|
-
not1mm/plugins/k1usn_sst.py,sha256=
|
156
|
-
not1mm/plugins/lz-dx.py,sha256=
|
157
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
158
|
-
not1mm/plugins/naqp_rtty.py,sha256=
|
159
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
160
|
-
not1mm/plugins/phone_weekly_test.py,sha256=
|
161
|
-
not1mm/plugins/raem.py,sha256=
|
162
|
-
not1mm/plugins/ref_cw.py,sha256=
|
163
|
-
not1mm/plugins/ref_ssb.py,sha256=
|
164
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
165
|
-
not1mm/plugins/weekly_rtty.py,sha256=
|
166
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
167
|
-
not1mm-24.12.8.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
168
|
-
not1mm-24.12.8.dist-info/METADATA,sha256=
|
169
|
-
not1mm-24.12.8.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
170
|
-
not1mm-24.12.8.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
171
|
-
not1mm-24.12.8.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
172
|
-
not1mm-24.12.8.dist-info/RECORD,,
|
155
|
+
not1mm/plugins/k1usn_sst.py,sha256=X9shd8_nLVLaoEonBDfgFfbaWDXcpz9pCmg6nNuQSi0,17151
|
156
|
+
not1mm/plugins/lz-dx.py,sha256=lXR0n_4-tfHXlLZtyAY44gedIvF_ZUw5dFgoU5fHuME,19614
|
157
|
+
not1mm/plugins/naqp_cw.py,sha256=vm4PsGYZA1TEYZlwtY4Ab0bjRGZxdP9SBf5jicGmAJM,18685
|
158
|
+
not1mm/plugins/naqp_rtty.py,sha256=7H8zQklTMZ5eIAbH3MsdJfRzxCmHlyVtQskgtd8gTzM,22369
|
159
|
+
not1mm/plugins/naqp_ssb.py,sha256=2F4mV9hBmTtyTa58QJzXkyJ6T9oqDBziOi_eqPezUXM,17602
|
160
|
+
not1mm/plugins/phone_weekly_test.py,sha256=xocHg61tZ5nL5n9zYzKS8ibrfwmQYa2nnEjWEgVvKdw,16325
|
161
|
+
not1mm/plugins/raem.py,sha256=DROvGpFI89eCekcQUhpbFaEZIFGolYtJqqYvq_DA2cs,19371
|
162
|
+
not1mm/plugins/ref_cw.py,sha256=eslrY8Wxz2s2xmeG7ekGIE71TJlCXb7spNrLHEhNSjY,20396
|
163
|
+
not1mm/plugins/ref_ssb.py,sha256=YMdYth8dLmP8UsdTfZLNIQ4q06aBBiEBgD4GFiRcKgw,20607
|
164
|
+
not1mm/plugins/stew_perry_topband.py,sha256=bZb9m6XiwAcClPC8L4pyvcw07QZgBcpZ1fyAcYWzB5A,15193
|
165
|
+
not1mm/plugins/weekly_rtty.py,sha256=huZszbZsIh4vF3cP80UyPzy3qxIoHdEiT1b6KuvwgYc,20083
|
166
|
+
not1mm/plugins/winter_field_day.py,sha256=BA-Y86RqF66XngUXWo8sSNWrrrLucy-HGGT04BUMVJ8,14950
|
167
|
+
not1mm-24.12.8.2.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
168
|
+
not1mm-24.12.8.2.dist-info/METADATA,sha256=AWLEMaK_FKZYJFu9JykiqjOb8987KWonBa1g69MBoj8,35860
|
169
|
+
not1mm-24.12.8.2.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
170
|
+
not1mm-24.12.8.2.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
171
|
+
not1mm-24.12.8.2.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
172
|
+
not1mm-24.12.8.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|