not1mm 24.3.13__py3-none-any.whl → 24.3.19__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 +0 -2
- not1mm/lib/plugin_common.py +5 -2
- 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_ss_cw.py +2 -0
- not1mm/plugins/arrl_ss_phone.py +2 -0
- 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 +3 -1
- not1mm/plugins/cq_160_ssb.py +3 -1
- 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 +2 -0
- 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 +2 -0
- not1mm/plugins/winter_field_day.py +2 -0
- {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/METADATA +4 -1
- {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/RECORD +40 -39
- testing/detectdark.py +35 -0
- testing/test.py +13 -11
- {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/LICENSE +0 -0
- {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/WHEEL +0 -0
- {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/entry_points.txt +0 -0
- {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -2478,8 +2478,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2478
2478
|
stripped_text = text.strip().replace(" ", "")
|
2479
2479
|
self.callsign.setText(stripped_text)
|
2480
2480
|
self.callsign.setCursorPosition(position)
|
2481
|
-
results = self.mscp.super_check(stripped_text)
|
2482
|
-
logger.debug(f"{results}")
|
2483
2481
|
|
2484
2482
|
if " " in text:
|
2485
2483
|
if stripped_text == "CW":
|
not1mm/lib/plugin_common.py
CHANGED
@@ -36,6 +36,8 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
|
|
36
36
|
hisname = contact.get("Name", "")
|
37
37
|
the_date_and_time = contact.get("TS", "")
|
38
38
|
themode = contact.get("Mode", "")
|
39
|
+
if themode == "CWR":
|
40
|
+
themode = "CW"
|
39
41
|
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
40
42
|
band = get_adif_band(Decimal(str(contact.get("Freq", 0))) / 1000)
|
41
43
|
sentrst = contact.get("SNT", "")
|
@@ -231,5 +233,6 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
|
|
231
233
|
|
232
234
|
print("<EOR>", end="\r\n", file=file_descriptor)
|
233
235
|
print("", end="\r\n", file=file_descriptor)
|
234
|
-
|
235
|
-
|
236
|
+
self.show_message_box(f"ADIF saved to: {filename}")
|
237
|
+
except IOError as error:
|
238
|
+
self.show_message_box(f"Error saving ADIF file: {error}")
|
not1mm/lib/version.py
CHANGED
not1mm/plugins/10_10_fall_cw.py
CHANGED
@@ -331,8 +331,10 @@ def cabrillo(self):
|
|
331
331
|
file=file_descriptor,
|
332
332
|
)
|
333
333
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
334
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
334
335
|
except IOError as exception:
|
335
336
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
337
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
336
338
|
return
|
337
339
|
|
338
340
|
|
@@ -331,8 +331,10 @@ def cabrillo(self):
|
|
331
331
|
file=file_descriptor,
|
332
332
|
)
|
333
333
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
334
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
334
335
|
except IOError as exception:
|
335
336
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
337
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
336
338
|
return
|
337
339
|
|
338
340
|
|
@@ -332,8 +332,10 @@ def cabrillo(self):
|
|
332
332
|
file=file_descriptor,
|
333
333
|
)
|
334
334
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
335
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
335
336
|
except IOError as exception:
|
336
337
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
338
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
337
339
|
return
|
338
340
|
|
339
341
|
|
@@ -332,8 +332,10 @@ def cabrillo(self):
|
|
332
332
|
file=file_descriptor,
|
333
333
|
)
|
334
334
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
335
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
335
336
|
except IOError as exception:
|
336
337
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
338
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
337
339
|
return
|
338
340
|
|
339
341
|
|
not1mm/plugins/arrl_10m.py
CHANGED
@@ -414,8 +414,10 @@ def cabrillo(self):
|
|
414
414
|
file=file_descriptor,
|
415
415
|
)
|
416
416
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
417
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
417
418
|
except IOError as exception:
|
418
419
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
420
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
419
421
|
return
|
420
422
|
|
421
423
|
|
not1mm/plugins/arrl_dx_cw.py
CHANGED
@@ -356,8 +356,10 @@ def cabrillo(self):
|
|
356
356
|
file=file_descriptor,
|
357
357
|
)
|
358
358
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
359
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
359
360
|
except IOError as exception:
|
360
361
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
362
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
361
363
|
return
|
362
364
|
|
363
365
|
|
not1mm/plugins/arrl_dx_ssb.py
CHANGED
@@ -356,8 +356,10 @@ def cabrillo(self):
|
|
356
356
|
file=file_descriptor,
|
357
357
|
)
|
358
358
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
359
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
359
360
|
except IOError as exception:
|
360
361
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
362
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
361
363
|
return
|
362
364
|
|
363
365
|
|
not1mm/plugins/arrl_field_day.py
CHANGED
@@ -308,8 +308,10 @@ def cabrillo(self):
|
|
308
308
|
file=file_descriptor,
|
309
309
|
)
|
310
310
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
311
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
311
312
|
except IOError as exception:
|
312
313
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
314
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
313
315
|
return
|
314
316
|
|
315
317
|
|
not1mm/plugins/arrl_ss_cw.py
CHANGED
@@ -346,8 +346,10 @@ def cabrillo(self):
|
|
346
346
|
file=file_descriptor,
|
347
347
|
)
|
348
348
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
349
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
349
350
|
except IOError as exception:
|
350
351
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
352
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
351
353
|
return
|
352
354
|
|
353
355
|
|
not1mm/plugins/arrl_ss_phone.py
CHANGED
@@ -346,8 +346,10 @@ def cabrillo(self):
|
|
346
346
|
file=file_descriptor,
|
347
347
|
)
|
348
348
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
349
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
349
350
|
except IOError as exception:
|
350
351
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
352
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
351
353
|
return
|
352
354
|
|
353
355
|
|
not1mm/plugins/arrl_vhf_jan.py
CHANGED
@@ -390,8 +390,10 @@ def cabrillo(self):
|
|
390
390
|
file=file_descriptor,
|
391
391
|
)
|
392
392
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
393
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
393
394
|
except IOError as exception:
|
394
395
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
396
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
395
397
|
return
|
396
398
|
|
397
399
|
|
not1mm/plugins/arrl_vhf_jun.py
CHANGED
@@ -358,8 +358,10 @@ def cabrillo(self):
|
|
358
358
|
file=file_descriptor,
|
359
359
|
)
|
360
360
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
361
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
361
362
|
except IOError as exception:
|
362
363
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
364
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
363
365
|
return
|
364
366
|
|
365
367
|
|
not1mm/plugins/arrl_vhf_sep.py
CHANGED
@@ -358,8 +358,10 @@ def cabrillo(self):
|
|
358
358
|
file=file_descriptor,
|
359
359
|
)
|
360
360
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
361
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
361
362
|
except IOError as exception:
|
362
363
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
364
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
363
365
|
return
|
364
366
|
|
365
367
|
|
not1mm/plugins/canada_day.py
CHANGED
@@ -388,8 +388,10 @@ def cabrillo(self):
|
|
388
388
|
file=file_descriptor,
|
389
389
|
)
|
390
390
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
391
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
391
392
|
except IOError as exception:
|
392
393
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
394
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
393
395
|
return
|
394
396
|
|
395
397
|
|
not1mm/plugins/cq_160_cw.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"""CQ 160 CW plugin"""
|
2
2
|
|
3
|
-
# pylint: disable=invalid-name, c-extension-no-member, unused-import
|
3
|
+
# pylint: disable=invalid-name, c-extension-no-member, unused-import, line-too-long
|
4
4
|
|
5
5
|
import datetime
|
6
6
|
import logging
|
@@ -363,8 +363,10 @@ def cabrillo(self):
|
|
363
363
|
file=file_descriptor,
|
364
364
|
)
|
365
365
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
366
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
366
367
|
except IOError as exception:
|
367
368
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
369
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
368
370
|
return
|
369
371
|
|
370
372
|
|
not1mm/plugins/cq_160_ssb.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"""CQ 160 CW plugin"""
|
2
2
|
|
3
|
-
# pylint: disable=invalid-name, c-extension-no-member, unused-import
|
3
|
+
# pylint: disable=invalid-name, c-extension-no-member, unused-import, line-too-long, too-many-lines, no-name-in-module
|
4
4
|
|
5
5
|
import datetime
|
6
6
|
import logging
|
@@ -363,8 +363,10 @@ def cabrillo(self):
|
|
363
363
|
file=file_descriptor,
|
364
364
|
)
|
365
365
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
366
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
366
367
|
except IOError as exception:
|
367
368
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
369
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
368
370
|
return
|
369
371
|
|
370
372
|
|
not1mm/plugins/cq_wpx_cw.py
CHANGED
@@ -362,8 +362,10 @@ def cabrillo(self):
|
|
362
362
|
file=file_descriptor,
|
363
363
|
)
|
364
364
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
365
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
365
366
|
except IOError as exception:
|
366
367
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
368
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
367
369
|
return
|
368
370
|
|
369
371
|
|
not1mm/plugins/cq_wpx_ssb.py
CHANGED
@@ -364,8 +364,10 @@ def cabrillo(self):
|
|
364
364
|
file=file_descriptor,
|
365
365
|
)
|
366
366
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
367
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
367
368
|
except IOError as exception:
|
368
369
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
370
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
369
371
|
return
|
370
372
|
|
371
373
|
|
not1mm/plugins/cq_ww_cw.py
CHANGED
@@ -333,8 +333,10 @@ def cabrillo(self):
|
|
333
333
|
file=file_descriptor,
|
334
334
|
)
|
335
335
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
336
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
336
337
|
except IOError as exception:
|
337
338
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
339
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
338
340
|
return
|
339
341
|
|
340
342
|
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
@@ -333,8 +333,10 @@ def cabrillo(self):
|
|
333
333
|
file=file_descriptor,
|
334
334
|
)
|
335
335
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
336
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
336
337
|
except IOError as exception:
|
337
338
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
339
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
338
340
|
return
|
339
341
|
|
340
342
|
|
not1mm/plugins/cwt.py
CHANGED
@@ -339,8 +339,10 @@ def cabrillo(self):
|
|
339
339
|
file=file_descriptor,
|
340
340
|
)
|
341
341
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
342
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
342
343
|
except IOError as exception:
|
343
344
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
345
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
344
346
|
return
|
345
347
|
|
346
348
|
|
not1mm/plugins/iaru_hf.py
CHANGED
@@ -350,8 +350,10 @@ def cabrillo(self):
|
|
350
350
|
file=file_descriptor,
|
351
351
|
)
|
352
352
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
353
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
353
354
|
except IOError as exception:
|
354
355
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
356
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
355
357
|
return
|
356
358
|
|
357
359
|
|
not1mm/plugins/jidx_cw.py
CHANGED
@@ -330,8 +330,10 @@ def cabrillo(self):
|
|
330
330
|
file=file_descriptor,
|
331
331
|
)
|
332
332
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
333
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
333
334
|
except IOError as exception:
|
334
335
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
336
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
335
337
|
return
|
336
338
|
|
337
339
|
|
not1mm/plugins/jidx_ph.py
CHANGED
@@ -330,8 +330,10 @@ def cabrillo(self):
|
|
330
330
|
file=file_descriptor,
|
331
331
|
)
|
332
332
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
333
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
333
334
|
except IOError as exception:
|
334
335
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
336
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
335
337
|
return
|
336
338
|
|
337
339
|
|
not1mm/plugins/naqp_cw.py
CHANGED
@@ -325,8 +325,10 @@ def cabrillo(self):
|
|
325
325
|
file=file_descriptor,
|
326
326
|
)
|
327
327
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
328
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
328
329
|
except IOError as exception:
|
329
330
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
331
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
330
332
|
return
|
331
333
|
|
332
334
|
|
not1mm/plugins/naqp_ssb.py
CHANGED
@@ -325,8 +325,10 @@ def cabrillo(self):
|
|
325
325
|
file=file_descriptor,
|
326
326
|
)
|
327
327
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
328
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
328
329
|
except IOError as exception:
|
329
330
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
331
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
330
332
|
return
|
331
333
|
|
332
334
|
|
@@ -347,8 +347,10 @@ def cabrillo(self):
|
|
347
347
|
file=file_descriptor,
|
348
348
|
)
|
349
349
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
350
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
350
351
|
except IOError as exception:
|
351
352
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
353
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
352
354
|
return
|
353
355
|
|
354
356
|
|
@@ -325,8 +325,10 @@ def cabrillo(self):
|
|
325
325
|
file=file_descriptor,
|
326
326
|
)
|
327
327
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
328
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
328
329
|
except IOError as exception:
|
329
330
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
331
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
330
332
|
return
|
331
333
|
|
332
334
|
|
@@ -310,8 +310,10 @@ def cabrillo(self):
|
|
310
310
|
file=file_descriptor,
|
311
311
|
)
|
312
312
|
print("END-OF-LOG:", end="\r\n", file=file_descriptor)
|
313
|
+
self.show_message_box(f"Cabrillo saved to: {filename}")
|
313
314
|
except IOError as exception:
|
314
315
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
316
|
+
self.show_message_box(f"Error saving Cabrillo: {exception} {filename}")
|
315
317
|
return
|
316
318
|
|
317
319
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.3.
|
3
|
+
Version: 24.3.19
|
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
|
@@ -168,6 +168,9 @@ I wish to thank those who've contributed to the project.
|
|
168
168
|
|
169
169
|
## Recent Changes
|
170
170
|
|
171
|
+
- [24-3-19] Removed some useless bloat causing slow interface on FreeBSD 13/14 and maybe others.
|
172
|
+
- [24-3-16] Add Save/Fail confirmation dialogs when saving ADIF of Cabrillo files.
|
173
|
+
- [24-3-15] Change 'CWR' to 'CW' in the ADIF output.
|
171
174
|
- [24-3-13] Added CQ 160 CW and SSB
|
172
175
|
- [24-3-9] Marked calls in the bandmap window colored Blue, until worked.
|
173
176
|
- [24-3-7] Merged PR from @arodland for faster fuzzy SCP lookups.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=1qsz42uPC2r1XBVhScPYYPnnRphipNVprn0bX7t_CZE,108424
|
3
3
|
not1mm/bandmap.py,sha256=hL76Hyz2omB_jroaUeXJ9XTYuD_qbWZQrqfTMW1Wx3E,29645
|
4
4
|
not1mm/checkwindow.py,sha256=QyxPtGwqOCTQR3kVREhwSkhdbWcGfDyGNHId-b6FpQQ,7449
|
5
5
|
not1mm/logwindow.py,sha256=Rk9GAxOjic8JeqjrCJrCbnLIdoKT9kdE-G32AjAwVX4,44021
|
@@ -98,55 +98,56 @@ not1mm/lib/lookup.py,sha256=nuRyeUCcGOj0reBXcmPkGXCYGyKN5vsBD5xF8iE0fF8,13777
|
|
98
98
|
not1mm/lib/multicast.py,sha256=VbKyppKVu6m2RN9prcd6jknEivr5hcDH0MAsnyAC9Gw,3000
|
99
99
|
not1mm/lib/n1mm.py,sha256=O3U2dhOX-_5nBomyuiyfx-_GQk6rj067lwrcC9GtDpQ,5713
|
100
100
|
not1mm/lib/new_contest.py,sha256=mHKNCS3iKOKN-bT9d8ZK3JemThOZFQ0ikfUSS0-ZTpY,354
|
101
|
-
not1mm/lib/plugin_common.py,sha256=
|
101
|
+
not1mm/lib/plugin_common.py,sha256=AAKBPCXzTWZJb-h08uPNnHVG7bSCg7kwukc211gFivY,8605
|
102
102
|
not1mm/lib/select_contest.py,sha256=XQdRUkPAIHIMVsilm82M54b_v9yWpYrZ1nfInJrtZoo,363
|
103
103
|
not1mm/lib/settings.py,sha256=t_JLJPnDBtMGAvJMAF1AL1eVB7MyucqlksVTU47yxvk,8933
|
104
104
|
not1mm/lib/super_check_partial.py,sha256=YFc3_o2OdKMwQMlUAcKyZaLbvbSfMcSjWAAPUjd84uk,2258
|
105
|
-
not1mm/lib/version.py,sha256=
|
105
|
+
not1mm/lib/version.py,sha256=NverN5hpmAk3Ah6yKS1qYkPZvhf-HhWdM2eEqEOMf24,48
|
106
106
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
107
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
108
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
109
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
110
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
107
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=HUZ92o-zem0tUBvRDpQP904Y5eQd1FlGp3Ky0xOhVpA,10836
|
108
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=lrIHJns5tCVfnRVaA0ygw9SdbJkRFuGhwA6LacOHBlk,10842
|
109
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=JLlH1Ry6mvA69-DVYyBc_xKWUchPgj7nCs4TF4555NE,10850
|
110
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=b1aXJ-umbSMhtGXppPtGhgE00WoXzDWgkpku0btvKG8,10853
|
111
111
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
112
|
-
not1mm/plugins/arrl_10m.py,sha256=
|
113
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
114
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256
|
115
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
112
|
+
not1mm/plugins/arrl_10m.py,sha256=iwUyELv5J2x4jq8j6vWmUh5K_SE9qZUIF9VnTr5mi4M,13645
|
113
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=Bhm82iykXpzUqFCq854d55Op_1KW5Gla3RZfU6dVvLk,13690
|
114
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=dZDRZfRKJgMFtHNsSZo44IDLU6K8GYQI-YeRboOGHjg,13693
|
115
|
+
not1mm/plugins/arrl_field_day.py,sha256=4tPFQZQirMD4YXAH1kYqnqaSsQ7jkoKROaioCZPADiE,10028
|
116
116
|
not1mm/plugins/arrl_rtty_ru.py,sha256=9v9wApmUZHAKX4t_O6hVqBnT7v5bqAGV8SjgDhfOuMs,7974
|
117
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
118
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
119
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
120
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
121
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
122
|
-
not1mm/plugins/canada_day.py,sha256=
|
123
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
124
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
125
|
-
not1mm/plugins/cq_wpx_cw.py,sha256=
|
126
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
127
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
128
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
129
|
-
not1mm/plugins/cwt.py,sha256=
|
117
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=czRrTHa6599gafekqRqSFObupt7HE18Zy4d4icj-ngw,13145
|
118
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=raYIuUp0FIMv0ihC8x3EuQ8TdMGbl72W5zaZyinNF10,13151
|
119
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=rrTYN3q4BVSO-8br-85ap15w6sTvcX6SvT0oSgPfnCU,12440
|
120
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=z2g4usOtCSp0wNDEqX39QdEBlDVvJcmdMBQBNZy0K-A,11459
|
121
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=CnWOU1rFZws--4CwMa0Qgo2J6UvPfqCL5eKz1-BzFqA,11459
|
122
|
+
not1mm/plugins/canada_day.py,sha256=xuy0bJj0o0h0oNsbtC0rS-AGCx4Od0f8PtlTPXigiE8,11871
|
123
|
+
not1mm/plugins/cq_160_cw.py,sha256=I3t1NWeaICbUeR0zIB4VLnQp5cMZeYbu6NgkBXCbu-w,14020
|
124
|
+
not1mm/plugins/cq_160_ssb.py,sha256=5pZPTHZoduBr6g4L08WTCe3vCW-xkS0Gvys58R24wiE,14063
|
125
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=bm4WyYdItE0gQjA0G6itX-uOzZmH0szniZ0f_SiTdOI,12380
|
126
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=gtsb5jcfr6bDzmYPlA7UNCtqbH22EGy1VI0ozX0DBgI,12468
|
127
|
+
not1mm/plugins/cq_ww_cw.py,sha256=Py2NfZeEWWtB6PIXPYFlkd7BrTv1fpq86x_nUTf0RbQ,11085
|
128
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=W8cb_opy1dnXQbUgMPGx1sSfBJpAcGk-tTbgZMd_330,11090
|
129
|
+
not1mm/plugins/cwt.py,sha256=8XBUOMg7Jfo_I2I6mc5QcX7q7zNtcBXMCuT7gMHrINU,11978
|
130
130
|
not1mm/plugins/general_logging.py,sha256=naz16xAfjdWRm8B-dB_UBJ0NVjBuvbu98hDR1f7UgFk,3371
|
131
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
132
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
133
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
134
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
135
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
136
|
-
not1mm/plugins/phone_weekly_test.py,sha256=
|
137
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
138
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
131
|
+
not1mm/plugins/iaru_hf.py,sha256=ED_gtrl1-HztqrOG5_A3nhHlFd0Nf0U2YH7C95gYDZU,11435
|
132
|
+
not1mm/plugins/jidx_cw.py,sha256=eu0LGX2iMbh70UCxRgr56HlVyW0DW7tLJV5zV0hJSgY,11051
|
133
|
+
not1mm/plugins/jidx_ph.py,sha256=2A0ruAMLOn0Jvp7T7dzN8znaoGAiaNpWpU3PsQXlCE8,11053
|
134
|
+
not1mm/plugins/naqp_cw.py,sha256=MwpIddEW7DtLUMHM7VqvZU4mhbzwf0mx_c-SyUBgMJA,11474
|
135
|
+
not1mm/plugins/naqp_ssb.py,sha256=x5nVoeyRJWcmH6fcYclFGQywpIAEnBMVulfdiGMpdCo,11479
|
136
|
+
not1mm/plugins/phone_weekly_test.py,sha256=eP4ChoQ7WqElOZIaiBI9XI0bnIHQb6qAHLeR1LzAplA,12280
|
137
|
+
not1mm/plugins/stew_perry_topband.py,sha256=OPkvULiJ3MSxiVXwkZZFs7Qj0NQ9DaFq5g_RqSN3Vrg,10548
|
138
|
+
not1mm/plugins/winter_field_day.py,sha256=ReA5HufYryFz9nd4Aa3V-FGKBXwdUu-rDZsLlaKt8NY,10214
|
139
139
|
not1mm/testing/fakeflrig.py,sha256=_vJHGjARpSNxSZngkHNO_kkHoVnqtf--T6gwTAYnnZQ,2083
|
140
140
|
not1mm/testing/flrigclient.py,sha256=24r_0HqpoTjyJ6Bqg_HIC8Nn9wjtnwwWQ26I7UprwgA,1658
|
141
141
|
not1mm/testing/multicast_listener.py,sha256=2CkiyZ4EQxBX68_1QzGIX9g_UB9-CQq63OH-pUY3FiU,1051
|
142
142
|
not1mm/testing/n1mm_listener.py,sha256=UD-qyKEnppQua330WEFKMvMJaNjnYKi7dDuX_RGB5lQ,1099
|
143
143
|
not1mm/testing/simulant.py,sha256=kBqCZTe3ADEuHUsh9ygY9usn-jKe4EKRh7-L6tY6iYE,10948
|
144
144
|
not1mm/testing/test.py,sha256=97xdCpTVIWx1CUMU7JBrn9PMU7DqWnz6zO96XificC4,99
|
145
|
-
testing/
|
145
|
+
testing/detectdark.py,sha256=d2oUDqLkDLMCTFjW3lSJgaf-PgLDrk71gw2Cess5itY,895
|
146
|
+
testing/test.py,sha256=VkkKwKTJ4lqB7ozS9OEqy3NH67xU-_Dq0xkixKUdjrY,312
|
146
147
|
usb_vfo_knob/code.py,sha256=h59iPPlcYbkXmRcYPQHDBP0yfLEl7fY3VkiIszdQeyI,1057
|
147
|
-
not1mm-24.3.
|
148
|
-
not1mm-24.3.
|
149
|
-
not1mm-24.3.
|
150
|
-
not1mm-24.3.
|
151
|
-
not1mm-24.3.
|
152
|
-
not1mm-24.3.
|
148
|
+
not1mm-24.3.19.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
149
|
+
not1mm-24.3.19.dist-info/METADATA,sha256=4U1PwcCWaTk9MpFeh3FJWi43udD7kUuQj80LhoF07D0,26059
|
150
|
+
not1mm-24.3.19.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
151
|
+
not1mm-24.3.19.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
152
|
+
not1mm-24.3.19.dist-info/top_level.txt,sha256=PBUZJeDgW5ta7ghk__UYh_ygOFIhe9ymJDaxEuVumFU,28
|
153
|
+
not1mm-24.3.19.dist-info/RECORD,,
|
testing/detectdark.py
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
import darkdetect
|
2
|
+
import sys
|
3
|
+
import threading
|
4
|
+
from PyQt5.QtWidgets import QApplication, QWidget
|
5
|
+
|
6
|
+
|
7
|
+
class Example(QWidget):
|
8
|
+
|
9
|
+
def __init__(self):
|
10
|
+
super().__init__()
|
11
|
+
|
12
|
+
self.init_ui()
|
13
|
+
|
14
|
+
def init_ui(self):
|
15
|
+
self.setWindowTitle("Darkdetect Listener Example")
|
16
|
+
self.setGeometry(300, 300, 300, 300)
|
17
|
+
|
18
|
+
self.show()
|
19
|
+
|
20
|
+
def on_dark_mode_changed(self, dark_mode):
|
21
|
+
if dark_mode:
|
22
|
+
self.setStyleSheet("background-color: black; color: white;")
|
23
|
+
else:
|
24
|
+
self.setStyleSheet("background-color: white; color: black;")
|
25
|
+
|
26
|
+
|
27
|
+
if __name__ == "__main__":
|
28
|
+
app = QApplication(sys.argv)
|
29
|
+
|
30
|
+
listener = darkdetect.Listener(print)
|
31
|
+
t = threading.Thread(target=listener.listen, daemon=True)
|
32
|
+
# OR: t = threading.Thread(target=darkdetect.listener, args=(print,), daemon=True)
|
33
|
+
t.start()
|
34
|
+
example = Example()
|
35
|
+
sys.exit(app.exec_())
|
testing/test.py
CHANGED
@@ -1,15 +1,17 @@
|
|
1
|
-
|
1
|
+
import sys
|
2
2
|
|
3
|
-
import
|
3
|
+
from PyQt6.QtWidgets import QApplication, QMainWindow, QPushButton
|
4
4
|
|
5
|
-
|
6
|
-
if len(proc.cmdline()) == 2:
|
7
|
-
print(proc.cmdline()[1])
|
5
|
+
import qdarktheme
|
8
6
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
print(__package__)
|
13
|
-
print(__loader__)
|
7
|
+
app = QApplication(sys.argv)
|
8
|
+
# Apply dark theme.
|
9
|
+
qdarktheme.setup_theme()
|
14
10
|
|
15
|
-
|
11
|
+
main_win = QMainWindow()
|
12
|
+
push_button = QPushButton("PyQtDarkTheme!!")
|
13
|
+
main_win.setCentralWidget(push_button)
|
14
|
+
|
15
|
+
main_win.show()
|
16
|
+
|
17
|
+
app.exec()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|