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.
Files changed (40) hide show
  1. not1mm/__main__.py +0 -2
  2. not1mm/lib/plugin_common.py +5 -2
  3. not1mm/lib/version.py +1 -1
  4. not1mm/plugins/10_10_fall_cw.py +2 -0
  5. not1mm/plugins/10_10_spring_cw.py +2 -0
  6. not1mm/plugins/10_10_summer_phone.py +2 -0
  7. not1mm/plugins/10_10_winter_phone.py +2 -0
  8. not1mm/plugins/arrl_10m.py +2 -0
  9. not1mm/plugins/arrl_dx_cw.py +2 -0
  10. not1mm/plugins/arrl_dx_ssb.py +2 -0
  11. not1mm/plugins/arrl_field_day.py +2 -0
  12. not1mm/plugins/arrl_ss_cw.py +2 -0
  13. not1mm/plugins/arrl_ss_phone.py +2 -0
  14. not1mm/plugins/arrl_vhf_jan.py +2 -0
  15. not1mm/plugins/arrl_vhf_jun.py +2 -0
  16. not1mm/plugins/arrl_vhf_sep.py +2 -0
  17. not1mm/plugins/canada_day.py +2 -0
  18. not1mm/plugins/cq_160_cw.py +3 -1
  19. not1mm/plugins/cq_160_ssb.py +3 -1
  20. not1mm/plugins/cq_wpx_cw.py +2 -0
  21. not1mm/plugins/cq_wpx_ssb.py +2 -0
  22. not1mm/plugins/cq_ww_cw.py +2 -0
  23. not1mm/plugins/cq_ww_ssb.py +2 -0
  24. not1mm/plugins/cwt.py +2 -0
  25. not1mm/plugins/iaru_hf.py +2 -0
  26. not1mm/plugins/jidx_cw.py +2 -0
  27. not1mm/plugins/jidx_ph.py +2 -0
  28. not1mm/plugins/naqp_cw.py +2 -0
  29. not1mm/plugins/naqp_ssb.py +2 -0
  30. not1mm/plugins/phone_weekly_test.py +2 -0
  31. not1mm/plugins/stew_perry_topband.py +2 -0
  32. not1mm/plugins/winter_field_day.py +2 -0
  33. {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/METADATA +4 -1
  34. {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/RECORD +40 -39
  35. testing/detectdark.py +35 -0
  36. testing/test.py +13 -11
  37. {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/LICENSE +0 -0
  38. {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/WHEEL +0 -0
  39. {not1mm-24.3.13.dist-info → not1mm-24.3.19.dist-info}/entry_points.txt +0 -0
  40. {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":
@@ -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
- except IOError:
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
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "24.3.13"
3
+ __version__ = "24.3.19"
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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.13
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=DtSm7QSnt4rkwigRVvRKjNTLrq7KNkXKD9NqnNHhbI4,108514
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=crN0tCpwCLsvzLn49FwQZ796doFHHnAi8wu6G3e8xM0,8406
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=GlG6cHP4uqCJsRPq4NogUfc5TCzeygZGRKt24RaZA24,48
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=8cN7QmGKWzz_jgu48DzWwy5VbbY3-ntT2Q1DSVbgkwE,10692
108
- not1mm/plugins/10_10_spring_cw.py,sha256=cgCLyGw-w8SjKooDxY6PjJFUjVKgI48bzrOsyasOapY,10698
109
- not1mm/plugins/10_10_summer_phone.py,sha256=WR7bMPY11vLleT8VuyMBElyjDq_KlfRL5g4tHA0JldY,10706
110
- not1mm/plugins/10_10_winter_phone.py,sha256=ZXoUCXC-RhgirI-VHA7-s76LgS5mHcOaT29Jg_9zD_s,10709
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=Cp3COORlROvfLvRi5R5fA1yCmbDCrl2KOTu7t_Yt6u8,13501
113
- not1mm/plugins/arrl_dx_cw.py,sha256=WcbNo0PJ6xbC6oYZLN-YCC00AwbXF6JRH8hN2hfGWrQ,13546
114
- not1mm/plugins/arrl_dx_ssb.py,sha256=-zTxktlLOqNoVxuW0qmhl2C8W9OZPG61RiQJdMufcsk,13549
115
- not1mm/plugins/arrl_field_day.py,sha256=aiQjnWsorjMk1kFHQZMFI6pBc1Z6q2-nx0hhSXN45pI,9884
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=kmQ-DZnNCyivVmnRtW5H1z3b6tFFXXUljwfao5uLVnI,13001
118
- not1mm/plugins/arrl_ss_phone.py,sha256=T2EPgADFQ7Fjk00PeOvzc46ncN4-Vw4C1ZJsQC615jQ,13007
119
- not1mm/plugins/arrl_vhf_jan.py,sha256=oLnWh7Ue3y_TwRHMML4uxqJQP0MrRuSPJavRKdTwQXM,12296
120
- not1mm/plugins/arrl_vhf_jun.py,sha256=mVRCYXHdMFS64xzptJhj9eRxhbDWrA1hAWqhSWuGjJ4,11315
121
- not1mm/plugins/arrl_vhf_sep.py,sha256=s_NIUWiOgzzrLYU0QVpotvRYv1BjMawUXdCT1xOQjKc,11315
122
- not1mm/plugins/canada_day.py,sha256=e_cNbn0D3lVdq40gMxmdvU4uAIijqqx6o90xvtgZQCM,11727
123
- not1mm/plugins/cq_160_cw.py,sha256=RWvadRgFP6n4znhbo0TxkichtZPIReg-6MDipQ_8E_c,13861
124
- not1mm/plugins/cq_160_ssb.py,sha256=JH_cgO6TGy4ntjC8tneJKcgzxk0emnFyeL_Y0ckyw_4,13865
125
- not1mm/plugins/cq_wpx_cw.py,sha256=UHXw9pkprJ_AxB9aKLRjAfucLA5ZMihbs6vERiLzt0M,12236
126
- not1mm/plugins/cq_wpx_ssb.py,sha256=bWrqVUK-jX3_47AUt5n9JglPmHTAh6nus2W_ngzXjSA,12324
127
- not1mm/plugins/cq_ww_cw.py,sha256=O0kcMd9izzoOpWOI4Pi5AMXRXJgS8b7valY5IYVLQY4,10941
128
- not1mm/plugins/cq_ww_ssb.py,sha256=Wq9o0g97KgmwVwDKWGt75oRsJ_ri6linpeR-ERz-b0E,10946
129
- not1mm/plugins/cwt.py,sha256=R6BqQr5-Jxb4r0c6INbPlMTUMVC_PcQh0QMEnXSVv-M,11834
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=huaTl3XiCCdoSZaXVPz4UEr9fctHXlHzKmAmzTblPJs,11291
132
- not1mm/plugins/jidx_cw.py,sha256=xpdJ0Fb-VZH_CFuQxGnHA7WGRzh3WCuH7mXqX8PS8GM,10907
133
- not1mm/plugins/jidx_ph.py,sha256=zQOUnj50D_6Mr1l2GqCHOJyRLih_Q7dcTY5ICBCDpe4,10909
134
- not1mm/plugins/naqp_cw.py,sha256=mmApyN16MOaWPixQpauPa5kgMLatd1eVDn3KB_8oW2Q,11330
135
- not1mm/plugins/naqp_ssb.py,sha256=3q8Qz73IknsE-ccN34WzXCqGuAs6JdV6q8uCSEtGnSE,11335
136
- not1mm/plugins/phone_weekly_test.py,sha256=nELl0oFEdi9pJBGLsXoj1zirvUu_EQkhdDM4JlVjGVQ,12136
137
- not1mm/plugins/stew_perry_topband.py,sha256=TWbjdsIuTF8yTUb7NGPVWj_jHZqMc8ZixDLxdClNyJE,10404
138
- not1mm/plugins/winter_field_day.py,sha256=CvaA2H9y0ud6PyHXuGzRkCAeK4xUFmDvFHXv7ViP3Xc,10070
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/test.py,sha256=q7socQaMu46q-I-1fYgmQhnygrrC5NjAUM5yuySo4fA,249
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.13.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
148
- not1mm-24.3.13.dist-info/METADATA,sha256=ZoAZnKsArDIVnUtlfkhgyJN2qw_bTDfCubPOGW7hr1k,25826
149
- not1mm-24.3.13.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
150
- not1mm-24.3.13.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
151
- not1mm-24.3.13.dist-info/top_level.txt,sha256=PBUZJeDgW5ta7ghk__UYh_ygOFIhe9ymJDaxEuVumFU,28
152
- not1mm-24.3.13.dist-info/RECORD,,
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
- """doc"""
1
+ import sys
2
2
 
3
- import psutil
3
+ from PyQt6.QtWidgets import QApplication, QMainWindow, QPushButton
4
4
 
5
- for proc in psutil.process_iter():
6
- if len(proc.cmdline()) == 2:
7
- print(proc.cmdline()[1])
5
+ import qdarktheme
8
6
 
9
- print(__name__)
10
- print(__file__)
11
- print(__cached__)
12
- print(__package__)
13
- print(__loader__)
7
+ app = QApplication(sys.argv)
8
+ # Apply dark theme.
9
+ qdarktheme.setup_theme()
14
10
 
15
- print(__loader__.get_filename())
11
+ main_win = QMainWindow()
12
+ push_button = QPushButton("PyQtDarkTheme!!")
13
+ main_win.setCentralWidget(push_button)
14
+
15
+ main_win.show()
16
+
17
+ app.exec()