not1mm 24.12.8.1__py3-none-any.whl → 24.12.9__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 (53) hide show
  1. not1mm/__main__.py +1 -1
  2. not1mm/lib/plugin_common.py +3 -1
  3. not1mm/lib/version.py +1 -1
  4. not1mm/plugins/10_10_fall_cw.py +4 -1
  5. not1mm/plugins/10_10_spring_cw.py +4 -1
  6. not1mm/plugins/10_10_summer_phone.py +4 -1
  7. not1mm/plugins/10_10_winter_phone.py +4 -1
  8. not1mm/plugins/arrl_10m.py +22 -4
  9. not1mm/plugins/arrl_160m.py +4 -1
  10. not1mm/plugins/arrl_dx_cw.py +4 -1
  11. not1mm/plugins/arrl_dx_ssb.py +4 -1
  12. not1mm/plugins/arrl_field_day.py +4 -1
  13. not1mm/plugins/arrl_ss_cw.py +4 -1
  14. not1mm/plugins/arrl_ss_phone.py +4 -1
  15. not1mm/plugins/arrl_vhf_jan.py +4 -1
  16. not1mm/plugins/arrl_vhf_jun.py +4 -1
  17. not1mm/plugins/arrl_vhf_sep.py +4 -1
  18. not1mm/plugins/canada_day.py +4 -1
  19. not1mm/plugins/cq_160_cw.py +4 -1
  20. not1mm/plugins/cq_160_ssb.py +4 -1
  21. not1mm/plugins/cq_wpx_cw.py +4 -1
  22. not1mm/plugins/cq_wpx_rtty.py +4 -1
  23. not1mm/plugins/cq_wpx_ssb.py +4 -1
  24. not1mm/plugins/cq_ww_cw.py +4 -1
  25. not1mm/plugins/cq_ww_rtty.py +4 -1
  26. not1mm/plugins/cq_ww_ssb.py +4 -1
  27. not1mm/plugins/cwt.py +4 -1
  28. not1mm/plugins/darc_xmas.py +4 -1
  29. not1mm/plugins/helvetia.py +4 -1
  30. not1mm/plugins/iaru_fieldday_r1_cw.py +4 -1
  31. not1mm/plugins/iaru_fieldday_r1_ssb.py +4 -1
  32. not1mm/plugins/iaru_hf.py +4 -1
  33. not1mm/plugins/icwc_mst.py +4 -1
  34. not1mm/plugins/jidx_cw.py +13 -1
  35. not1mm/plugins/jidx_ph.py +13 -1
  36. not1mm/plugins/k1usn_sst.py +4 -1
  37. not1mm/plugins/lz-dx.py +17 -2
  38. not1mm/plugins/naqp_cw.py +17 -2
  39. not1mm/plugins/naqp_rtty.py +21 -6
  40. not1mm/plugins/naqp_ssb.py +17 -2
  41. not1mm/plugins/phone_weekly_test.py +4 -1
  42. not1mm/plugins/raem.py +16 -2
  43. not1mm/plugins/ref_cw.py +24 -6
  44. not1mm/plugins/ref_ssb.py +24 -6
  45. not1mm/plugins/stew_perry_topband.py +16 -2
  46. not1mm/plugins/weekly_rtty.py +4 -1
  47. not1mm/plugins/winter_field_day.py +18 -3
  48. {not1mm-24.12.8.1.dist-info → not1mm-24.12.9.dist-info}/METADATA +3 -1
  49. {not1mm-24.12.8.1.dist-info → not1mm-24.12.9.dist-info}/RECORD +53 -53
  50. {not1mm-24.12.8.1.dist-info → not1mm-24.12.9.dist-info}/LICENSE +0 -0
  51. {not1mm-24.12.8.1.dist-info → not1mm-24.12.9.dist-info}/WHEEL +0 -0
  52. {not1mm-24.12.8.1.dist-info → not1mm-24.12.9.dist-info}/entry_points.txt +0 -0
  53. {not1mm-24.12.8.1.dist-info → not1mm-24.12.9.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().title()
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()
@@ -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', '').upper()}</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
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "24.12.8.1"
3
+ __version__ = "24.12.9"
@@ -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: {self.contest_settings.get('ModeCategory','')}",
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: {self.contest_settings.get('ModeCategory','')}",
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: {self.contest_settings.get('ModeCategory','')}",
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: {self.contest_settings.get('ModeCategory','')}",
246
+ f"CATEGORY-MODE: {mode}",
244
247
  "\r\n",
245
248
  file_descriptor,
246
249
  file_encoding,
@@ -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', '').upper()}",
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: {self.contest_settings.get('ModeCategory','')}",
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)
@@ -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: {self.contest_settings.get('ModeCategory','')}",
338
+ f"CATEGORY-MODE: {mode}",
336
339
  "\r\n",
337
340
  file_descriptor,
338
341
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
271
+ f"CATEGORY-MODE: {mode}",
269
272
  "\r\n",
270
273
  file_descriptor,
271
274
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
271
+ f"CATEGORY-MODE: {mode}",
269
272
  "\r\n",
270
273
  file_descriptor,
271
274
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
228
+ f"CATEGORY-MODE: {mode}",
226
229
  "\r\n",
227
230
  file_descriptor,
228
231
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
273
+ f"CATEGORY-MODE: {mode}",
271
274
  "\r\n",
272
275
  file_descriptor,
273
276
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
254
+ f"CATEGORY-MODE: {mode}",
252
255
  "\r\n",
253
256
  file_descriptor,
254
257
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
304
+ f"CATEGORY-MODE: {mode}",
302
305
  "\r\n",
303
306
  file_descriptor,
304
307
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
272
+ f"CATEGORY-MODE: {mode}",
270
273
  "\r\n",
271
274
  file_descriptor,
272
275
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
272
+ f"CATEGORY-MODE: {mode}",
270
273
  "\r\n",
271
274
  file_descriptor,
272
275
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
295
+ f"CATEGORY-MODE: {mode}",
293
296
  "\r\n",
294
297
  file_descriptor,
295
298
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
283
+ f"CATEGORY-MODE: {mode}",
281
284
  "\r\n",
282
285
  file_descriptor,
283
286
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
283
+ f"CATEGORY-MODE: {mode}",
281
284
  "\r\n",
282
285
  file_descriptor,
283
286
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
316
+ f"CATEGORY-MODE: {mode}",
314
317
  "\r\n",
315
318
  file_descriptor,
316
319
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
315
+ f"CATEGORY-MODE: {mode}",
313
316
  "\r\n",
314
317
  file_descriptor,
315
318
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
279
+ f"CATEGORY-MODE: {mode}",
277
280
  "\r\n",
278
281
  file_descriptor,
279
282
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
313
+ f"CATEGORY-MODE: {mode}",
311
314
  "\r\n",
312
315
  file_descriptor,
313
316
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
303
+ f"CATEGORY-MODE: {mode}",
301
304
  "\r\n",
302
305
  file_descriptor,
303
306
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
290
+ f"CATEGORY-MODE: {mode}",
288
291
  "\r\n",
289
292
  file_descriptor,
290
293
  file_encoding,
not1mm/plugins/cwt.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: {self.contest_settings.get('ModeCategory','')}",
273
+ f"CATEGORY-MODE: {mode}",
271
274
  "\r\n",
272
275
  file_descriptor,
273
276
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
297
+ f"CATEGORY-MODE: {mode}",
295
298
  "\r\n",
296
299
  file_descriptor,
297
300
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
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: {self.contest_settings.get('ModeCategory','')}",
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: {self.contest_settings.get('ModeCategory','')}",
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: {self.contest_settings.get('ModeCategory','')}",
265
+ f"CATEGORY-MODE: {mode}",
263
266
  "\r\n",
264
267
  file_descriptor,
265
268
  file_encoding,
@@ -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: {self.contest_settings.get('ModeCategory','')}",
258
+ f"CATEGORY-MODE: {mode}",
256
259
  "\r\n",
257
260
  file_descriptor,
258
261
  file_encoding,
not1mm/plugins/jidx_cw.py CHANGED
@@ -38,7 +38,7 @@ from pathlib import Path
38
38
 
39
39
  from PyQt6 import QtWidgets
40
40
 
41
- from not1mm.lib.plugin_common import gen_adif, get_points
41
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
42
42
  from not1mm.lib.version import __version__
43
43
 
44
44
  logger = logging.getLogger(__name__)
@@ -488,3 +488,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
488
488
  self.save_contact()
489
489
  continue
490
490
  self.process_function_key(button)
491
+
492
+
493
+ def get_mults(self):
494
+ """Get mults for RTC XML"""
495
+ mults = {}
496
+ mults["country"] = show_mults(self)
497
+ return mults
498
+
499
+
500
+ def just_points(self):
501
+ """Get points for RTC XML"""
502
+ return get_points(self)
not1mm/plugins/jidx_ph.py CHANGED
@@ -9,7 +9,7 @@ from pathlib import Path
9
9
 
10
10
  from PyQt6 import QtWidgets
11
11
 
12
- from not1mm.lib.plugin_common import gen_adif, get_points
12
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
13
13
  from not1mm.lib.version import __version__
14
14
 
15
15
  logger = logging.getLogger(__name__)
@@ -457,3 +457,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
457
457
  self.save_contact()
458
458
  continue
459
459
  self.process_function_key(button)
460
+
461
+
462
+ def get_mults(self):
463
+ """Get mults for RTC XML"""
464
+ mults = {}
465
+ mults["country"] = show_mults(self)
466
+ return mults
467
+
468
+
469
+ def just_points(self):
470
+ """Get points for RTC XML"""
471
+ return get_points(self)
@@ -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: {self.contest_settings.get('ModeCategory','')}",
250
+ f"CATEGORY-MODE: {mode}",
248
251
  "\r\n",
249
252
  file_descriptor,
250
253
  file_encoding,
not1mm/plugins/lz-dx.py CHANGED
@@ -40,7 +40,7 @@ from pathlib import Path
40
40
 
41
41
  from PyQt6 import QtWidgets
42
42
 
43
- from not1mm.lib.plugin_common import gen_adif, get_points
43
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
44
44
 
45
45
  from not1mm.lib.version import __version__
46
46
 
@@ -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: {self.contest_settings.get('ModeCategory','')}",
311
+ f"CATEGORY-MODE: {mode}",
309
312
  "\r\n",
310
313
  file_descriptor,
311
314
  file_encoding,
@@ -621,3 +624,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
621
624
  self.save_contact()
622
625
  continue
623
626
  self.process_function_key(button)
627
+
628
+
629
+ def get_mults(self):
630
+ """Get mults for RTC XML"""
631
+ mults = {}
632
+ mults["state"] = show_mults(self)
633
+ return mults
634
+
635
+
636
+ def just_points(self):
637
+ """Get points for RTC XML"""
638
+ return get_points(self)
not1mm/plugins/naqp_cw.py CHANGED
@@ -40,7 +40,7 @@ from pathlib import Path
40
40
 
41
41
  from PyQt6 import QtWidgets
42
42
 
43
- from not1mm.lib.plugin_common import gen_adif, get_points
43
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
44
44
  from not1mm.lib.version import __version__
45
45
 
46
46
  logger = logging.getLogger(__name__)
@@ -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: {self.contest_settings.get('ModeCategory','')}",
276
+ f"CATEGORY-MODE: {mode}",
274
277
  "\r\n",
275
278
  file_descriptor,
276
279
  file_encoding,
@@ -556,3 +559,15 @@ def check_call_history(self):
556
559
  self.other_1.setText(f"{result.get('Name', '')}")
557
560
  if self.other_2.text() == "":
558
561
  self.other_2.setText(f"{result.get('State', '')}")
562
+
563
+
564
+ def get_mults(self):
565
+ """Get mults for RTC XML"""
566
+ mults = {}
567
+ mults["state"] = show_mults(self)
568
+ return mults
569
+
570
+
571
+ def just_points(self):
572
+ """Get points for RTC XML"""
573
+ return get_points(self)
@@ -20,11 +20,11 @@
20
20
  # Exchange: NA: Name + (state/DC/province/country)
21
21
  # non-NA: Name
22
22
  # Work stations: Once per band
23
- # QSO Points: NA station: 1 point per QSO
24
- # non-NA station: 1 point per QSO with an NA station
23
+ # QSO Points: NA station: 1 point per QSO
24
+ # non-NA station: 1 point per QSO with an NA station
25
25
  # Multipliers: Each US state and DC (including KH6/KL7) once per band
26
- # Each VE province/territory once per band
27
- # Each North American country (except W/VE) once per band
26
+ # Each VE province/territory once per band
27
+ # Each North American country (except W/VE) once per band
28
28
  # Score Calculation: Total score = total QSO points x total mults
29
29
  # E-mail logs to: (none)
30
30
  # Upload log at: http://www.ncjweb.com/naqplogsubmit/
@@ -41,7 +41,7 @@ from pathlib import Path
41
41
  from PyQt6 import QtWidgets
42
42
 
43
43
  from not1mm.lib.ham_utility import get_logged_band
44
- from not1mm.lib.plugin_common import gen_adif, get_points
44
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
45
45
  from not1mm.lib.version import __version__
46
46
 
47
47
  logger = logging.getLogger(__name__)
@@ -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: {self.contest_settings.get('ModeCategory','')}",
279
+ f"CATEGORY-MODE: {mode}",
277
280
  "\r\n",
278
281
  file_descriptor,
279
282
  file_encoding,
@@ -663,3 +666,15 @@ def check_call_history(self):
663
666
  self.other_1.setText(f"{result.get('Name', '')}")
664
667
  if self.other_2.text() == "":
665
668
  self.other_2.setText(f"{result.get('State', '')}")
669
+
670
+
671
+ def get_mults(self):
672
+ """Get mults for RTC XML"""
673
+ mults = {}
674
+ mults["state"] = show_mults(self)
675
+ return mults
676
+
677
+
678
+ def just_points(self):
679
+ """Get points for RTC XML"""
680
+ return get_points(self)
@@ -10,7 +10,7 @@ from pathlib import Path
10
10
 
11
11
  from PyQt6 import QtWidgets
12
12
 
13
- from not1mm.lib.plugin_common import gen_adif, get_points
13
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
14
14
  from not1mm.lib.version import __version__
15
15
 
16
16
  logger = logging.getLogger(__name__)
@@ -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: {self.contest_settings.get('ModeCategory','')}",
246
+ f"CATEGORY-MODE: {mode}",
244
247
  "\r\n",
245
248
  file_descriptor,
246
249
  file_encoding,
@@ -526,3 +529,15 @@ def check_call_history(self):
526
529
  self.other_1.setText(f"{result.get('Name', '')}")
527
530
  if self.other_2.text() == "":
528
531
  self.other_2.setText(f"{result.get('State', '')}")
532
+
533
+
534
+ def get_mults(self):
535
+ """Get mults for RTC XML"""
536
+ mults = {}
537
+ mults["state"] = show_mults(self)
538
+ return mults
539
+
540
+
541
+ def just_points(self):
542
+ """Get points for RTC XML"""
543
+ return get_points(self)
@@ -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: {self.contest_settings.get('ModeCategory','')}",
266
+ f"CATEGORY-MODE: {mode}",
264
267
  "\r\n",
265
268
  file_descriptor,
266
269
  file_encoding,
not1mm/plugins/raem.py CHANGED
@@ -50,7 +50,7 @@ from pathlib import Path
50
50
 
51
51
  from PyQt6 import QtWidgets
52
52
 
53
- from not1mm.lib.plugin_common import gen_adif, get_points
53
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
54
54
  from not1mm.lib.version import __version__
55
55
 
56
56
  logger = logging.getLogger(__name__)
@@ -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: {self.contest_settings.get('ModeCategory','')}",
365
+ f"CATEGORY-MODE: {mode}",
363
366
  "\r\n",
364
367
  file_descriptor,
365
368
  file_encoding,
@@ -600,3 +603,14 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
600
603
  self.save_contact()
601
604
  continue
602
605
  self.process_function_key(button)
606
+
607
+
608
+ def get_mults(self):
609
+ """Get mults for RTC XML"""
610
+ mults = {}
611
+ return mults
612
+
613
+
614
+ def just_points(self):
615
+ """Get points for RTC XML"""
616
+ return get_points(self)
not1mm/plugins/ref_cw.py CHANGED
@@ -47,7 +47,7 @@ from pathlib import Path
47
47
 
48
48
  from PyQt6 import QtWidgets
49
49
 
50
- from not1mm.lib.plugin_common import gen_adif, get_points
50
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
51
51
 
52
52
  from not1mm.lib.version import __version__
53
53
 
@@ -242,11 +242,14 @@ def points(self):
242
242
  return 0
243
243
 
244
244
 
245
- def show_mults(self):
245
+ def show_mults(self, rtc=None):
246
246
  """Return display string for mults"""
247
- return int(self.database.fetch_mult_count(1).get("count", 0)) + int(
248
- self.database.fetch_mult_count(2).get("count", 0)
249
- )
247
+ one = int(self.database.fetch_mult_count(1).get("count", 0))
248
+ two = int(self.database.fetch_mult_count(2).get("count", 0))
249
+ if rtc is not None:
250
+ return (two, one)
251
+
252
+ return one + two
250
253
 
251
254
 
252
255
  def show_qso(self):
@@ -399,8 +402,11 @@ def cabrillo(self, file_encoding):
399
402
  file_descriptor,
400
403
  file_encoding,
401
404
  )
405
+ mode = self.contest_settings.get("ModeCategory", "")
406
+ if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
407
+ mode = "MIXED"
402
408
  output_cabrillo_line(
403
- f"CATEGORY-MODE: {self.contest_settings.get('ModeCategory','')}",
409
+ f"CATEGORY-MODE: {mode}",
404
410
  "\r\n",
405
411
  file_descriptor,
406
412
  file_encoding,
@@ -613,3 +619,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
613
619
  self.save_contact()
614
620
  continue
615
621
  self.process_function_key(button)
622
+
623
+
624
+ def get_mults(self):
625
+ """Get mults for RTC XML"""
626
+ mults = {}
627
+ mults["country"], mults["state"] = show_mults(self, rtc=True)
628
+ return mults
629
+
630
+
631
+ def just_points(self):
632
+ """Get points for RTC XML"""
633
+ return get_points(self)
not1mm/plugins/ref_ssb.py CHANGED
@@ -62,7 +62,7 @@ from pathlib import Path
62
62
 
63
63
  from PyQt6 import QtWidgets
64
64
 
65
- from not1mm.lib.plugin_common import gen_adif, get_points
65
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
66
66
 
67
67
  from not1mm.lib.version import __version__
68
68
 
@@ -257,11 +257,14 @@ def points(self):
257
257
  return 0
258
258
 
259
259
 
260
- def show_mults(self):
260
+ def show_mults(self, rtc=None):
261
261
  """Return display string for mults"""
262
- return int(self.database.fetch_mult_count(1).get("count", 0)) + int(
263
- self.database.fetch_mult_count(2).get("count", 0)
264
- )
262
+ one = int(self.database.fetch_mult_count(1).get("count", 0))
263
+ two = int(self.database.fetch_mult_count(2).get("count", 0))
264
+ if rtc is not None:
265
+ return (two, one)
266
+
267
+ return one + two
265
268
 
266
269
 
267
270
  def show_qso(self):
@@ -414,8 +417,11 @@ def cabrillo(self, file_encoding):
414
417
  file_descriptor,
415
418
  file_encoding,
416
419
  )
420
+ mode = self.contest_settings.get("ModeCategory", "")
421
+ if mode in ["SSB+CW", "SSB+CW+DIGITAL"]:
422
+ mode = "MIXED"
417
423
  output_cabrillo_line(
418
- f"CATEGORY-MODE: {self.contest_settings.get('ModeCategory','')}",
424
+ f"CATEGORY-MODE: {mode}",
419
425
  "\r\n",
420
426
  file_descriptor,
421
427
  file_encoding,
@@ -628,3 +634,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
628
634
  self.save_contact()
629
635
  continue
630
636
  self.process_function_key(button)
637
+
638
+
639
+ def get_mults(self):
640
+ """Get mults for RTC XML"""
641
+ mults = {}
642
+ mults["country"], mults["state"] = show_mults(self, rtc=True)
643
+ return mults
644
+
645
+
646
+ def just_points(self):
647
+ """Get points for RTC XML"""
648
+ return get_points(self)
@@ -33,7 +33,7 @@ import logging
33
33
 
34
34
  from pathlib import Path
35
35
  from PyQt6 import QtWidgets
36
- from not1mm.lib.plugin_common import gen_adif, get_points
36
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
37
37
  from not1mm.lib.version import __version__
38
38
  from not1mm.lib.ham_utility import distance
39
39
 
@@ -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: {self.contest_settings.get('ModeCategory','')}",
246
+ f"CATEGORY-MODE: {mode}",
244
247
  "\r\n",
245
248
  file_descriptor,
246
249
  file_encoding,
@@ -469,3 +472,14 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
469
472
  self.save_contact()
470
473
  continue
471
474
  self.process_function_key(button)
475
+
476
+
477
+ def get_mults(self):
478
+ """"""
479
+ mults = {}
480
+ return mults
481
+
482
+
483
+ def just_points(self):
484
+ """"""
485
+ return get_points(self)
@@ -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: {self.contest_settings.get('ModeCategory','')}",
258
+ f"CATEGORY-MODE: {mode}",
256
259
  "\r\n",
257
260
  file_descriptor,
258
261
  file_encoding,
@@ -21,14 +21,14 @@ import logging
21
21
 
22
22
  from pathlib import Path
23
23
  from PyQt6 import QtWidgets
24
- from not1mm.lib.plugin_common import gen_adif, get_points
24
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
25
25
  from not1mm.lib.version import __version__
26
26
 
27
27
  logger = logging.getLogger(__name__)
28
28
 
29
29
  EXCHANGE_HINT = "1O ORG"
30
30
 
31
- cabrillo_name = "WFD"
31
+ cabrillo_name = "WFDA-CONTEST"
32
32
  name = "Winter Field Day"
33
33
  # 1 once per contest, 2 work each band, 3 each band/mode, 4 no dupe checking
34
34
  mode = "BOTH" # CW SSB BOTH RTTY
@@ -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: {self.contest_settings.get('ModeCategory','')}",
239
+ f"CATEGORY-MODE: {mode}",
237
240
  "\r\n",
238
241
  file_descriptor,
239
242
  file_encoding,
@@ -464,3 +467,15 @@ def check_call_history(self):
464
467
  self.other_1.setText(f"{result.get('Exch1', '')}")
465
468
  if self.other_2.text() == "":
466
469
  self.other_2.setText(f"{result.get('Sect', '')}")
470
+
471
+
472
+ def get_mults(self):
473
+ """"""
474
+ mults = {}
475
+ mults["wpxprefix"] = show_mults(self)
476
+ return mults
477
+
478
+
479
+ def just_points(self):
480
+ """"""
481
+ return get_points(self)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: not1mm
3
- Version: 24.12.8.1
3
+ Version: 24.12.9
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-9] Add RTC to Winter Field Day, Stew Perry, REF, RAEM, NAQP, LZ-DX, JIDX
243
+ - [24-12-8-2] Add RTC to ARRL 10M, Tweaked cabrillo file output.
242
244
  - [24-12-8-1] Changed cabrillo names for Weekly RTTY, CW Ops CWT and K1USN SST.
243
245
  - [24-12-8] Fix: Weekly RTTY mults. Add RTC to Weekly RTTY.
244
246
  - [24-12-6] Add RTC to K1USN.
@@ -1,5 +1,5 @@
1
1
  not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- not1mm/__main__.py,sha256=NhY8RJUM533ou_u-YjuZSV9AWCkQ1jf-MKjM0ghWgW0,144696
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=gpYDYRu_-w8QiLNXPLjKzE47Fhgv-q7yrLu0-BwEpVY,13141
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=xJ6EpxLkRd4hKd7UOSFTfR6EQ2qu4KX1UKqanh1fXiQ,50
118
+ not1mm/lib/version.py,sha256=kW55e9c7_3zPa1m5mdA-ztXMdCwYpa9CSVJDZmKiq2c,48
119
119
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
120
- not1mm/plugins/10_10_fall_cw.py,sha256=AsvB2VUd6Qb2_FzZkSBkSd1_qeP8Dt-B-exF1Pzb9tk,14469
121
- not1mm/plugins/10_10_spring_cw.py,sha256=nA4v0oqlp-ivvKqNPakb19I-wE_ElhvH5bCzDRx00JU,14474
122
- not1mm/plugins/10_10_summer_phone.py,sha256=FNcTQoyZCeAW2i3SKYYDZWuJS1vmk1CO4XO1MAZe8rQ,14587
123
- not1mm/plugins/10_10_winter_phone.py,sha256=NRAKgu4oYzrpUtjUKWgCfZQf3b85sdVe9oyl-yD6kJo,14486
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=-stuBD3DCdlWctxE9bWEeznZrgIfNw7VcMIE1ZmsfMo,17942
126
- not1mm/plugins/arrl_160m.py,sha256=idirBXY1XmzxdEyuodGUBsDwLN7JaNtpdix9f3lceRQ,20127
127
- not1mm/plugins/arrl_dx_cw.py,sha256=1epTIf9TjeUCjYlpRDU54Ig3lJdXa2e5JZI9SCGE080,17400
128
- not1mm/plugins/arrl_dx_ssb.py,sha256=IEZ6tlP9stW3Mdr5_qTBS77hjAUU43IpagyPjr0eqaQ,17403
129
- not1mm/plugins/arrl_field_day.py,sha256=YEyXr1Ytllq12sCj54erOba0wrblwb0_bq51gj75OIQ,16478
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=HlUsDqyPAZh9VuatcGJ7EDst4qfS6f35yv_nPPzYW7M,17162
132
- not1mm/plugins/arrl_ss_phone.py,sha256=_QWnat0y2LLoKTP9RF-sZBqxWxHNrKiPYopBpq8kKTs,16498
133
- not1mm/plugins/arrl_vhf_jan.py,sha256=tNBrm8Zi_-FgRvu16sySVVnKVpHBYkqdbTlTCWmnOhc,19781
134
- not1mm/plugins/arrl_vhf_jun.py,sha256=2F1L19A6FKFN6w3Xt5U_ueXoUdtEAqToIyy4n0vQ_h0,18873
135
- not1mm/plugins/arrl_vhf_sep.py,sha256=bjZNHIAYMaPnhCJ31O5pso-4yHcoURo3DAkL8Y_ZTto,18912
136
- not1mm/plugins/canada_day.py,sha256=WxtIm0xl8vd8XUDHX3VQnjDzRhPXM1UR92Qjg99NLMY,15245
137
- not1mm/plugins/cq_160_cw.py,sha256=1oEI6lH-LUZSY-BSlbWsXnc4F5dmIF8bVBewy10k4Jc,18555
138
- not1mm/plugins/cq_160_ssb.py,sha256=_0bkvq0KvSdyTBhkqJ35VqXuaWIaDNmBGE1aQ-cxQz8,18598
139
- not1mm/plugins/cq_wpx_cw.py,sha256=H1H4xL-hx0sqU_8fSQYnNzO0ZcOLV-KSOQT9wPvIva0,17843
140
- not1mm/plugins/cq_wpx_rtty.py,sha256=nT2lMdAM1pRu2jNKI4FpkGei9kEGX0XcF_24FkL0lnY,20662
141
- not1mm/plugins/cq_wpx_ssb.py,sha256=Zjga12w_ISh4aZjCYZbpwN0x0032Prc8p7aIGI7HJFQ,16410
142
- not1mm/plugins/cq_ww_cw.py,sha256=53N-q1mTKF4-GH-cyh-a43b4BQ2TP_PNsWWpZchxieI,18230
143
- not1mm/plugins/cq_ww_rtty.py,sha256=Pfpr8xWJwp2NOci-WQMTUZaMpAtsUGq1jrIIUv6lQ2Y,21971
144
- not1mm/plugins/cq_ww_ssb.py,sha256=IyPmEImq_eb5YSFuhHxiJU4EFAPB4D5dg2xED6Nu97k,17491
145
- not1mm/plugins/cwt.py,sha256=3Gd5fQ2UCy0Gel2cNBOoX20qEwSGL-6kufslwl3Ha8M,17421
146
- not1mm/plugins/darc_xmas.py,sha256=GdtAQVCLogKGzZaexJfzsZms5SbLLlO1YweFPjgvYWw,18458
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=SRKn7jflfYPUNrvmErDM44af5YWUe57h7JkIwFSbT0Q,19609
149
- not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=oWeFuKxvY15vRiUh2vW3z3o7mxJMae7vfpKx4OFU_yA,16816
150
- not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=HylTAcNs0DSii5EDzMQlocjs4k7rQ579YvLrwn6sqIQ,16821
151
- not1mm/plugins/iaru_hf.py,sha256=RcVf0UFaHX0eSpUZMMGHC0HTsOy_SwTH9Yi9SeJNQUA,15715
152
- not1mm/plugins/icwc_mst.py,sha256=iFV7iHdI8BLnag-gkQ2q0S4h9n7jXoZ0oTJxtTG14OU,16366
153
- not1mm/plugins/jidx_cw.py,sha256=KJOE3fU0KVMqD5IqvnN3YDHPEwrMx3yJZBmCtAIP7WQ,15650
154
- not1mm/plugins/jidx_ph.py,sha256=1l92EmDZJFRGZjR1VrISgFc8KoHVfmJvLsaVsuufIMs,14599
155
- not1mm/plugins/k1usn_sst.py,sha256=U51i3wquqBp3_USvTZwLiDu099yV6L4E3EAZ5C0wbm8,17042
156
- not1mm/plugins/lz-dx.py,sha256=I9k67Q9ifSfbrd0ptfr6nOsp6PGfzLifQlVLJYJeOBk,19505
157
- not1mm/plugins/naqp_cw.py,sha256=oe0Ytx185hUGvebSc0vzFwdBOpNkIFRgGabGSmaV7H8,18576
158
- not1mm/plugins/naqp_rtty.py,sha256=7bGe33TP4VSVgwv3-pPa8Xfkx0SXbe8sV-0LmTlOugo,22260
159
- not1mm/plugins/naqp_ssb.py,sha256=j8XERJcwLsLi4Ts0Ol1lyk3JKP0_DStvHvd1jWI8M14,17493
160
- not1mm/plugins/phone_weekly_test.py,sha256=zJfeczM3U5KcrK0KqSx_ABjNy6hldjiq_J9Q1rcKk9g,16216
161
- not1mm/plugins/raem.py,sha256=pTL9fdpw9rXxyoIqWY0ptjkDoqmc7NxNyF4O_sBuW5o,19262
162
- not1mm/plugins/ref_cw.py,sha256=yTWg6-MosGX-UyxO0N03GEsP46r0vOp1f00ZL9LGVmQ,20287
163
- not1mm/plugins/ref_ssb.py,sha256=G2Gz4kApchmOZQVnBexEokSEvdb-mZWJAfyJ1D6JDGY,20498
164
- not1mm/plugins/stew_perry_topband.py,sha256=Gy_vv6tgkR-3vmvsUVO0pVfHMkUJSxpt7G4secn0RH8,15084
165
- not1mm/plugins/weekly_rtty.py,sha256=jYEr8rNRYAE-KhPSpOWOrUGOyfGB-CWpQbFUtP_mwFs,19974
166
- not1mm/plugins/winter_field_day.py,sha256=9w3tDL9ZWiENSTERc3vzDbBktvI7pnyNvlH6fDjAi08,14841
167
- not1mm-24.12.8.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
168
- not1mm-24.12.8.1.dist-info/METADATA,sha256=XtpB48ym37RbKz7J_RXo7Od6X_2_HXyOcopDJBZnwE4,35795
169
- not1mm-24.12.8.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
170
- not1mm-24.12.8.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
171
- not1mm-24.12.8.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
172
- not1mm-24.12.8.1.dist-info/RECORD,,
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
+ not1mm/plugins/jidx_cw.py,sha256=gSScw21ac2Rpdd7jspgh5gnH9JdiR8h3YOa-41B_T94,15881
154
+ not1mm/plugins/jidx_ph.py,sha256=0E5xHs0WXh-x2Z6UC2PGqmLdIkn-jWbENOeLopr7rys,14830
155
+ not1mm/plugins/k1usn_sst.py,sha256=X9shd8_nLVLaoEonBDfgFfbaWDXcpz9pCmg6nNuQSi0,17151
156
+ not1mm/plugins/lz-dx.py,sha256=w7YNerI1QAGkL_QffOosKvLcqjdWgEHhDd3ZInANcFU,19843
157
+ not1mm/plugins/naqp_cw.py,sha256=7Q5m8cv1mdFilXn2NFU3Uqc4rSW3Di1r_1_jBceYoOA,18914
158
+ not1mm/plugins/naqp_rtty.py,sha256=AzzMutcczXH7wTQVRLF7DxEo3HKq6IZWSFf3Lpy9UBM,22656
159
+ not1mm/plugins/naqp_ssb.py,sha256=C8aAvICTTXyOuvp4fqlr0tQYtmCX-mNSwUZJs-N_pNE,17831
160
+ not1mm/plugins/phone_weekly_test.py,sha256=xocHg61tZ5nL5n9zYzKS8ibrfwmQYa2nnEjWEgVvKdw,16325
161
+ not1mm/plugins/raem.py,sha256=yF4WK-T8aPDxSI3pxVwYW-Q7eW9n5gvuaslEBoTYcsI,19562
162
+ not1mm/plugins/ref_cw.py,sha256=sj69Jjtm1gA9juQTRVSe3BdcCqcQXMaJMD5D1kr5QOs,20728
163
+ not1mm/plugins/ref_ssb.py,sha256=vfS9-mcnbw2znRvU4jh20JqI9BXap8jV65OV5mbCkCk,20939
164
+ not1mm/plugins/stew_perry_topband.py,sha256=D1hekmMbx-i4BhaP2uzOK3OzaVVMMdgcN3RmfweNqHo,15341
165
+ not1mm/plugins/weekly_rtty.py,sha256=huZszbZsIh4vF3cP80UyPzy3qxIoHdEiT1b6KuvwgYc,20083
166
+ not1mm/plugins/winter_field_day.py,sha256=cSCFwy1LOoDDA9Zs1LHRG3r8spDMSKDisxyPxnVrLjw,15149
167
+ not1mm-24.12.9.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
168
+ not1mm-24.12.9.dist-info/METADATA,sha256=8dJeJDeZdvtTPTgdO2gloxsWgtgc2aTNzlvmxluaIDg,35940
169
+ not1mm-24.12.9.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
170
+ not1mm-24.12.9.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
171
+ not1mm-24.12.9.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
172
+ not1mm-24.12.9.dist-info/RECORD,,