not1mm 24.12.9__py3-none-any.whl → 24.12.11.1__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/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "24.12.9"
3
+ __version__ = "24.12.11.1"
@@ -8,7 +8,7 @@ from pathlib import Path
8
8
 
9
9
  from PyQt6 import QtWidgets
10
10
 
11
- from not1mm.lib.plugin_common import gen_adif, get_points
11
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
12
12
  from not1mm.lib.version import __version__
13
13
 
14
14
  logger = logging.getLogger(__name__)
@@ -16,7 +16,7 @@ logger = logging.getLogger(__name__)
16
16
  EXCHANGE_HINT = "Name + 10-10# + SPC"
17
17
 
18
18
  name = "10 10 FALL CW"
19
- cabrillo_name = "10-10-FALL-CW"
19
+ cabrillo_name = "10-10"
20
20
  mode = "CW" # CW SSB BOTH RTTY
21
21
  # columns = [0, 1, 2, 3, 4, 5, 6, 15]
22
22
  columns = [
@@ -453,3 +453,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
453
453
  self.save_contact()
454
454
  continue
455
455
  self.process_function_key(button)
456
+
457
+
458
+ def get_mults(self):
459
+ """"""
460
+
461
+ mults = {}
462
+ return mults
463
+
464
+
465
+ def just_points(self):
466
+ """"""
467
+ return get_points(self)
@@ -7,7 +7,7 @@ import logging
7
7
  from pathlib import Path
8
8
 
9
9
  from PyQt6 import QtWidgets
10
- from not1mm.lib.plugin_common import gen_adif, get_points
10
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
11
11
  from not1mm.lib.version import __version__
12
12
 
13
13
  logger = logging.getLogger(__name__)
@@ -15,7 +15,7 @@ logger = logging.getLogger(__name__)
15
15
  EXCHANGE_HINT = "Name + 10-10# + SPC"
16
16
 
17
17
  name = "10 10 SPRING CW"
18
- cabrillo_name = "10-10-SPRING-CW"
18
+ cabrillo_name = "10-10"
19
19
  mode = "CW" # CW SSB BOTH RTTY
20
20
  # columns = [0, 1, 2, 3, 4, 5, 6, 15]
21
21
  columns = [
@@ -452,3 +452,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
452
452
  self.save_contact()
453
453
  continue
454
454
  self.process_function_key(button)
455
+
456
+
457
+ def get_mults(self):
458
+ """"""
459
+
460
+ mults = {}
461
+ return mults
462
+
463
+
464
+ def just_points(self):
465
+ """"""
466
+ return get_points(self)
@@ -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__)
@@ -17,7 +17,7 @@ logger = logging.getLogger(__name__)
17
17
  EXCHANGE_HINT = "Name + 10-10# + SPC"
18
18
 
19
19
  name = "10 10 SUMMER PHONE"
20
- cabrillo_name = "10-10-SUMMER-PHONE"
20
+ cabrillo_name = "10-10"
21
21
  mode = "SSB" # CW SSB BOTH RTTY
22
22
  # columns = [0, 1, 2, 3, 4, 5, 6, 15]
23
23
  columns = [
@@ -456,3 +456,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
456
456
  self.save_contact()
457
457
  continue
458
458
  self.process_function_key(button)
459
+
460
+
461
+ def get_mults(self):
462
+ """"""
463
+
464
+ mults = {}
465
+ return mults
466
+
467
+
468
+ def just_points(self):
469
+ """"""
470
+ return get_points(self)
@@ -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__)
@@ -17,7 +17,7 @@ logger = logging.getLogger(__name__)
17
17
  EXCHANGE_HINT = "Name + 10-10# + SPC"
18
18
 
19
19
  name = "10 10 WINTER PHONE"
20
- cabrillo_name = "10-10-WINTER-PHONE"
20
+ cabrillo_name = "10-10"
21
21
  mode = "SSB" # CW SSB BOTH RTTY
22
22
  # columns = [0, 1, 2, 3, 4, 5, 6, 15]
23
23
  columns = [
@@ -454,3 +454,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
454
454
  self.save_contact()
455
455
  continue
456
456
  self.process_function_key(button)
457
+
458
+
459
+ def get_mults(self):
460
+ """"""
461
+
462
+ mults = {}
463
+ return mults
464
+
465
+
466
+ def just_points(self):
467
+ """"""
468
+ 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__)
@@ -140,21 +140,24 @@ def points(self):
140
140
  return 0
141
141
 
142
142
 
143
- def show_mults(self):
143
+ def show_mults(self, rtc=None):
144
144
  """Return display string for mults"""
145
145
  location = self.cty_lookup(self.station.get("Call", ""))
146
+ _country, _state = 0, 0
146
147
  if location:
147
148
  for item in location.items():
148
149
  mycountry = item[1].get("primary_pfx", "")
149
150
  if mycountry in ["K", "VE"]:
150
151
  result = self.database.fetch_arrldx_country_band_count()
151
152
  if result:
152
- return int(result.get("cb_count", 0))
153
+ _country = int(result.get("cb_count", 0))
153
154
  else:
154
155
  result = self.database.fetch_arrldx_state_prov_count()
155
156
  if result:
156
- return int(result.get("cb_count", 0))
157
- return 0
157
+ _state = int(result.get("cb_count", 0))
158
+ if rtc is not None:
159
+ return (_country, _state)
160
+ return _country + _state
158
161
 
159
162
 
160
163
  def show_qso(self):
@@ -511,3 +514,22 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
511
514
  self.save_contact()
512
515
  continue
513
516
  self.process_function_key(button)
517
+
518
+
519
+ def get_mults(self):
520
+ """"""
521
+
522
+ mults = {}
523
+ mults["country"], mults["state"] = show_mults(self, rtc=True)
524
+ return mults
525
+
526
+
527
+ def just_points(self):
528
+ """"""
529
+ result = self.database.fetch_points()
530
+ if result is not None:
531
+ score = result.get("Points", "0")
532
+ if score is None:
533
+ score = "0"
534
+ return int(score)
535
+ return 0
@@ -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__)
@@ -140,21 +140,24 @@ def points(self):
140
140
  return 0
141
141
 
142
142
 
143
- def show_mults(self):
143
+ def show_mults(self, rtc=None):
144
144
  """Return display string for mults"""
145
145
  location = self.cty_lookup(self.station.get("Call", ""))
146
+ _country, _state = 0, 0
146
147
  if location:
147
148
  for item in location.items():
148
149
  mycountry = item[1].get("primary_pfx", "")
149
150
  if mycountry in ["K", "VE"]:
150
151
  result = self.database.fetch_arrldx_country_band_count()
151
152
  if result:
152
- return int(result.get("cb_count", 0))
153
+ _country = int(result.get("cb_count", 0))
153
154
  else:
154
155
  result = self.database.fetch_arrldx_state_prov_count()
155
156
  if result:
156
- return int(result.get("cb_count", 0))
157
- return 0
157
+ _state = int(result.get("cb_count", 0))
158
+ if rtc is not None:
159
+ return (_country, _state)
160
+ return _country + _state
158
161
 
159
162
 
160
163
  def show_qso(self):
@@ -510,3 +513,22 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
510
513
  self.save_contact()
511
514
  continue
512
515
  self.process_function_key(button)
516
+
517
+
518
+ def get_mults(self):
519
+ """"""
520
+
521
+ mults = {}
522
+ mults["country"], mults["state"] = show_mults(self, rtc=True)
523
+ return mults
524
+
525
+
526
+ def just_points(self):
527
+ """"""
528
+ result = self.database.fetch_points()
529
+ if result is not None:
530
+ score = result.get("Points", "0")
531
+ if score is None:
532
+ score = "0"
533
+ return int(score)
534
+ return 0
@@ -9,7 +9,7 @@ from pathlib import Path
9
9
  from PyQt6 import QtWidgets
10
10
 
11
11
  from not1mm.lib.ham_utility import get_logged_band
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__)
@@ -20,7 +20,7 @@ EXCHANGE_HINT = "1D ORG"
20
20
 
21
21
  name = "ARRL Field Day"
22
22
  mode = "BOTH" # CW SSB BOTH RTTY
23
- cabrillo_name = "ARRL-FD"
23
+ cabrillo_name = "ARRL-FIELD-DAY"
24
24
 
25
25
  columns = [
26
26
  "YYYY-MM-DD HH:MM:SS",
@@ -514,3 +514,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
514
514
  self.save_contact()
515
515
  continue
516
516
  self.process_function_key(button)
517
+
518
+
519
+ def get_mults(self):
520
+ """"""
521
+
522
+ mults = {}
523
+ return mults
524
+
525
+
526
+ def just_points(self):
527
+ """"""
528
+ return get_points(self)
@@ -7,6 +7,7 @@ from decimal import Decimal
7
7
  from pathlib import Path
8
8
 
9
9
  from PyQt6 import QtWidgets
10
+ from not1mm.lib.plugin_common import online_score_xml
10
11
 
11
12
  EXCHANGE_HINT = ""
12
13
 
@@ -93,7 +94,7 @@ def points(self):
93
94
  """Calc point"""
94
95
 
95
96
 
96
- def show_mults(self):
97
+ def show_mults(self, rtc=None):
97
98
  """Return display string for mults"""
98
99
 
99
100
 
@@ -272,3 +273,19 @@ def cabrillo(self):
272
273
 
273
274
  def recalculate_mults(self):
274
275
  """Recalculates multipliers after change in logged qso."""
276
+
277
+
278
+ # States/Prov. DXCC state country
279
+
280
+
281
+ def get_mults(self):
282
+ """"""
283
+
284
+ mults = {}
285
+ mults["state"], mults["country"] = show_mults(self, rtc=True)
286
+ return mults
287
+
288
+
289
+ def just_points(self):
290
+ """"""
291
+ return get_points(self)
@@ -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
12
+ from not1mm.lib.plugin_common import gen_adif, online_score_xml
13
13
  from not1mm.lib.version import __version__
14
14
 
15
15
  logger = logging.getLogger(__name__)
@@ -541,3 +541,16 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
541
541
  self.save_contact()
542
542
  continue
543
543
  self.process_function_key(button)
544
+
545
+
546
+ def get_mults(self):
547
+ """"""
548
+
549
+ mults = {}
550
+ mults["state"] = show_mults(self)
551
+ return mults
552
+
553
+
554
+ def just_points(self):
555
+ """"""
556
+ return get_points(self)
@@ -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
12
+ from not1mm.lib.plugin_common import gen_adif, online_score_xml
13
13
  from not1mm.lib.version import __version__
14
14
 
15
15
  logger = logging.getLogger(__name__)
@@ -522,3 +522,16 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
522
522
  self.save_contact()
523
523
  continue
524
524
  self.process_function_key(button)
525
+
526
+
527
+ def get_mults(self):
528
+ """"""
529
+
530
+ mults = {}
531
+ mults["state"] = show_mults(self)
532
+ return mults
533
+
534
+
535
+ def just_points(self):
536
+ """"""
537
+ return get_points(self)
@@ -44,7 +44,7 @@ from pathlib import Path
44
44
  from PyQt6 import QtWidgets
45
45
 
46
46
  from not1mm.lib.ham_utility import get_logged_band
47
- from not1mm.lib.plugin_common import gen_adif, get_points
47
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
48
48
  from not1mm.lib.version import __version__
49
49
 
50
50
  logger = logging.getLogger(__name__)
@@ -633,3 +633,23 @@ def check_call_history(self):
633
633
  self.history_info.setText(f"{result.get('UserText','')}")
634
634
  if self.other_2.text() == "":
635
635
  self.other_2.setText(f"{result.get('Loc1', '')}")
636
+
637
+
638
+ # gridsquare
639
+ def get_mults(self):
640
+ """"""
641
+
642
+ mults = {}
643
+ mults["gridsquare"] = show_mults(self)
644
+ return mults
645
+
646
+
647
+ def just_points(self):
648
+ """"""
649
+ result = self.database.fetch_points()
650
+ if result is not None:
651
+ score = result.get("Points", "0")
652
+ if score is None:
653
+ score = "0"
654
+ return int(score)
655
+ return 0
@@ -12,7 +12,7 @@ from pathlib import Path
12
12
  from PyQt6 import QtWidgets
13
13
 
14
14
  from not1mm.lib.ham_utility import get_logged_band
15
- from not1mm.lib.plugin_common import gen_adif, get_points
15
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
16
16
  from not1mm.lib.version import __version__
17
17
 
18
18
  logger = logging.getLogger(__name__)
@@ -601,3 +601,23 @@ def check_call_history(self):
601
601
  self.history_info.setText(f"{result.get('UserText','')}")
602
602
  if self.other_2.text() == "":
603
603
  self.other_2.setText(f"{result.get('Loc1', '')}")
604
+
605
+
606
+ # gridsquare
607
+ def get_mults(self):
608
+ """"""
609
+
610
+ mults = {}
611
+ mults["gridsquare"] = show_mults(self)
612
+ return mults
613
+
614
+
615
+ def just_points(self):
616
+ """"""
617
+ result = self.database.fetch_points()
618
+ if result is not None:
619
+ score = result.get("Points", "0")
620
+ if score is None:
621
+ score = "0"
622
+ return int(score)
623
+ return 0
@@ -12,7 +12,7 @@ from pathlib import Path
12
12
  from PyQt6 import QtWidgets
13
13
 
14
14
  from not1mm.lib.ham_utility import get_logged_band
15
- from not1mm.lib.plugin_common import gen_adif, get_points
15
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
16
16
  from not1mm.lib.version import __version__
17
17
 
18
18
  logger = logging.getLogger(__name__)
@@ -22,7 +22,7 @@ EXCHANGE_HINT = "4-character grid square"
22
22
 
23
23
  name = "ARRL VHF SEP"
24
24
  mode = "BOTH" # CW SSB BOTH RTTY
25
- cabrillo_name = "ARRL-VHF-SEP"
25
+ cabrillo_name = "ARRL-VHF"
26
26
 
27
27
  columns = [
28
28
  "YYYY-MM-DD HH:MM:SS",
@@ -604,3 +604,21 @@ def check_call_history(self):
604
604
 
605
605
 
606
606
  # !!Order!!,Call,Name,Loc1,UserText,
607
+ # gridsquare
608
+ def get_mults(self):
609
+ """"""
610
+
611
+ mults = {}
612
+ mults["gridsquare"] = show_mults(self)
613
+ return mults
614
+
615
+
616
+ def just_points(self):
617
+ """"""
618
+ result = self.database.fetch_points()
619
+ if result is not None:
620
+ score = result.get("Points", "0")
621
+ if score is None:
622
+ score = "0"
623
+ return int(score)
624
+ return 0
@@ -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__)
@@ -17,7 +17,7 @@ logger = logging.getLogger(__name__)
17
17
  EXCHANGE_HINT = "Province/Territory"
18
18
 
19
19
  name = "CANADA DAY"
20
- cabrillo_name = "CANADA-DAY"
20
+ cabrillo_name = "RAC"
21
21
  mode = "BOTH" # CW SSB BOTH RTTY
22
22
 
23
23
  columns = [
@@ -501,3 +501,22 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
501
501
  self.save_contact()
502
502
  continue
503
503
  self.process_function_key(button)
504
+
505
+
506
+ def get_mults(self):
507
+ """"""
508
+
509
+ mults = {}
510
+ mults["state"] = show_mults(self)
511
+ return mults
512
+
513
+
514
+ def just_points(self):
515
+ """"""
516
+ result = self.database.fetch_points()
517
+ if result is not None:
518
+ score = result.get("Points", "0")
519
+ if score is None:
520
+ score = "0"
521
+ return int(score)
522
+ return 0
@@ -46,7 +46,7 @@ from pathlib import Path
46
46
 
47
47
  from PyQt6 import QtWidgets
48
48
 
49
- from not1mm.lib.plugin_common import gen_adif, get_points
49
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
50
50
  from not1mm.lib.version import __version__
51
51
 
52
52
  logger = logging.getLogger(__name__)
@@ -547,3 +547,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
547
547
  self.save_contact()
548
548
  continue
549
549
  self.process_function_key(button)
550
+
551
+
552
+ def get_mults(self):
553
+ """Get mults for RTC XML"""
554
+ mults = {}
555
+ mults["wpxprefix"] = show_mults(self)
556
+ return mults
557
+
558
+
559
+ def just_points(self):
560
+ """Get points for RTC XML"""
561
+ return get_points(self)
@@ -46,7 +46,7 @@ from pathlib import Path
46
46
  from PyQt6 import QtWidgets
47
47
 
48
48
  from not1mm.lib.ham_utility import get_logged_band
49
- from not1mm.lib.plugin_common import gen_adif, get_points
49
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
50
50
  from not1mm.lib.version import __version__
51
51
 
52
52
  logger = logging.getLogger(__name__)
@@ -628,3 +628,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
628
628
  continue
629
629
  sendstring = f"{sendstring}{self.process_macro(button.toolTip())} "
630
630
  self.fldigi_util.send_string(sendstring)
631
+
632
+
633
+ def get_mults(self):
634
+ """Get mults for RTC XML"""
635
+ mults = {}
636
+ mults["wpxprefix"] = show_mults(self)
637
+ return mults
638
+
639
+
640
+ def just_points(self):
641
+ """Get points for RTC XML"""
642
+ return get_points(self)
@@ -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__)
@@ -508,3 +508,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
508
508
  self.save_contact()
509
509
  continue
510
510
  self.process_function_key(button)
511
+
512
+
513
+ def get_mults(self):
514
+ """Get mults for RTC XML"""
515
+ mults = {}
516
+ mults["wpxprefix"] = show_mults(self)
517
+ return mults
518
+
519
+
520
+ def just_points(self):
521
+ """Get points for RTC XML"""
522
+ return get_points(self)
@@ -177,26 +177,19 @@ def points(self):
177
177
  return 0
178
178
 
179
179
 
180
- def get_mults(self):
181
- """"""
182
- mults = {}
183
- mults["zone"] = self.database.fetch_zn_band_count().get("zb_count", 0)
184
- mults["country"] = self.database.fetch_country_band_count().get("cb_count", 0)
185
- return mults
186
-
187
-
188
- def just_points(self):
189
- """"""
190
- return self.database.fetch_points().get("Points", "0")
191
-
192
-
193
- def show_mults(self):
180
+ def show_mults(self, rtc=None):
194
181
  """Return display string for mults"""
182
+ _zone = 0
183
+ _country = 0
195
184
  result1 = self.database.fetch_zn_band_count()
196
185
  result2 = self.database.fetch_country_band_count()
197
- if result1 and result2:
198
- return int(result1.get("zb_count", 0)) + int(result2.get("cb_count", 0))
199
- return 0
186
+ if result1:
187
+ _zone = int(result1.get("zb_count", 0))
188
+ if result2:
189
+ _country = int(result2.get("cb_count", 0))
190
+ if rtc is not None:
191
+ return (_country, _zone)
192
+ return _country + _zone
200
193
 
201
194
 
202
195
  def show_qso(self):
@@ -551,3 +544,15 @@ def check_call_history(self):
551
544
  self.history_info.setText(f"{result.get('UserText','')}")
552
545
  if self.other_2.text() == "":
553
546
  self.other_2.setText(f"{result.get('CQZone', '')}")
547
+
548
+
549
+ def get_mults(self):
550
+ """Get mults for RTC XML"""
551
+ mults = {}
552
+ mults["country"], mults["zone"] = show_mults(self, rtc=True)
553
+ return mults
554
+
555
+
556
+ def just_points(self):
557
+ """Get points for RTC XML"""
558
+ return get_points(self)
@@ -46,7 +46,7 @@ from pathlib import Path
46
46
  from PyQt6 import QtWidgets
47
47
 
48
48
  from not1mm.lib.ham_utility import get_logged_band
49
- from not1mm.lib.plugin_common import gen_adif, get_points
49
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
50
50
  from not1mm.lib.version import __version__
51
51
 
52
52
  logger = logging.getLogger(__name__)
@@ -169,24 +169,30 @@ def points(self):
169
169
  return 0
170
170
 
171
171
 
172
- def show_mults(self):
172
+ def show_mults(self, rtc=None):
173
173
  """Return display string for mults"""
174
174
 
175
175
  # Multipliers: W/VE Stations: Each US state/VE area once per band
176
176
  # Each DXCC/WAE country once per band
177
177
  # Each CQ zone once per band
178
178
 
179
+ _zone, _country, _spc_count = 0, 0, 0
179
180
  result1 = self.database.fetch_zn_band_count()
180
181
  result2 = self.database.fetch_country_band_count()
181
182
  res3_query = f"select count(DISTINCT(Exchange1 || ':' || Band)) as spc_count from dxlog where ContestNR = {self.database.current_contest};"
182
183
  result3 = self.database.exec_sql(res3_query)
183
- if result1 and result2 and result3:
184
- return (
185
- int(result1.get("zb_count", 0))
186
- + int(result2.get("cb_count", 0))
187
- + int(result3.get("spc_count", 0))
188
- )
189
- return 0
184
+
185
+ if result1:
186
+ _zone = int(result1.get("zb_count", 0))
187
+ if result2:
188
+ _country = int(result2.get("cb_count", 0))
189
+ if result3:
190
+ _spc_count = int(result3.get("spc_count", 0))
191
+
192
+ if rtc is not None:
193
+ return (_country + _spc_count, _zone)
194
+
195
+ return _country + _spc_count + _zone
190
196
 
191
197
 
192
198
  def show_qso(self):
@@ -647,3 +653,15 @@ def check_call_history(self):
647
653
  self.other_1.setText(f"{result.get('CQZone', '')}")
648
654
  if self.other_2.text() == "":
649
655
  self.other_2.setText(f"{result.get('State', '')}")
656
+
657
+
658
+ def get_mults(self):
659
+ """Get mults for RTC XML"""
660
+ mults = {}
661
+ mults["country"], mults["zone"] = show_mults(self, rtc=True)
662
+ return mults
663
+
664
+
665
+ def just_points(self):
666
+ """Get points for RTC XML"""
667
+ return get_points(self)
@@ -43,7 +43,7 @@ from pathlib import Path
43
43
 
44
44
  from PyQt6 import QtWidgets
45
45
 
46
- from not1mm.lib.plugin_common import gen_adif, get_points
46
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
47
47
  from not1mm.lib.version import __version__
48
48
 
49
49
  logger = logging.getLogger(__name__)
@@ -167,13 +167,19 @@ def points(self):
167
167
  return 0
168
168
 
169
169
 
170
- def show_mults(self):
170
+ def show_mults(self, rtc=None):
171
171
  """Return display string for mults"""
172
+ _zone = 0
173
+ _country = 0
172
174
  result1 = self.database.fetch_zn_band_count()
173
175
  result2 = self.database.fetch_country_band_count()
174
- if result1 and result2:
175
- return int(result1.get("zb_count", 0)) + int(result2.get("cb_count", 0))
176
- return 0
176
+ if result1:
177
+ _zone = int(result1.get("zb_count", 0))
178
+ if result2:
179
+ _country = int(result2.get("cb_count", 0))
180
+ if rtc is not None:
181
+ return (_country, _zone)
182
+ return _country + _zone
177
183
 
178
184
 
179
185
  def show_qso(self):
@@ -525,3 +531,15 @@ def check_call_history(self):
525
531
  self.history_info.setText(f"{result.get('UserText','')}")
526
532
  if self.other_2.text() == "":
527
533
  self.other_2.setText(f"{result.get('CQZone', '')}")
534
+
535
+
536
+ def get_mults(self):
537
+ """Get mults for RTC XML"""
538
+ mults = {}
539
+ mults["country"], mults["zone"] = show_mults(self, rtc=True)
540
+ return mults
541
+
542
+
543
+ def just_points(self):
544
+ """Get points for RTC XML"""
545
+ return get_points(self)
@@ -32,7 +32,7 @@ from pathlib import Path
32
32
 
33
33
  from PyQt6 import QtWidgets
34
34
 
35
- from not1mm.lib.plugin_common import gen_adif, get_points
35
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
36
36
  from not1mm.lib.version import __version__
37
37
 
38
38
  logger = logging.getLogger(__name__)
@@ -176,11 +176,14 @@ def points(self):
176
176
  return 1
177
177
 
178
178
 
179
- def show_mults(self):
179
+ def show_mults(self, rtc=None):
180
180
  """Return display string for mults"""
181
- return int(self.database.fetch_mult_count(1).get("count", 0)) + int(
182
- self.database.fetch_mult_count(2).get("count", 0)
183
- )
181
+ _wpx = int(self.database.fetch_mult_count(1).get("count", 0))
182
+ _dok = int(self.database.fetch_mult_count(2).get("count", 0))
183
+ if rtc is not None:
184
+ return (_dok, _wpx)
185
+
186
+ return _wpx + _dok
184
187
 
185
188
 
186
189
  def show_qso(self):
@@ -561,3 +564,15 @@ def check_call_history(self):
561
564
  self.history_info.setText(f"{result.get('UserText','')}")
562
565
  if self.other_1.text() == "":
563
566
  self.other_1.setText(f"{result.get('Exch1', '')}")
567
+
568
+
569
+ def get_mults(self):
570
+ """Get mults for RTC XML"""
571
+ mults = {}
572
+ mults["state"], mults["wpxprefix"] = show_mults(self, rtc=True)
573
+ return mults
574
+
575
+
576
+ def just_points(self):
577
+ """Get points for RTC XML"""
578
+ return get_points(self)
@@ -237,11 +237,14 @@ def points(self):
237
237
  return 0
238
238
 
239
239
 
240
- def show_mults(self):
240
+ def show_mults(self, rtc=None):
241
241
  """Return display string for mults"""
242
- return int(self.database.fetch_mult_count(1).get("count", 0)) + int(
243
- self.database.fetch_mult_count(2).get("count", 0)
244
- )
242
+ one = int(self.database.fetch_mult_count(1).get("count", 0))
243
+ two = int(self.database.fetch_mult_count(2).get("count", 0))
244
+ if rtc is not None:
245
+ return (two, one)
246
+
247
+ return one + two
245
248
 
246
249
 
247
250
  def show_qso(self):
@@ -625,3 +628,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
625
628
  self.save_contact()
626
629
  continue
627
630
  self.process_function_key(button)
631
+
632
+
633
+ def get_mults(self):
634
+ """Get mults for RTC XML"""
635
+ mults = {}
636
+ mults["country"], mults["state"] = show_mults(self, rtc=True)
637
+ return mults
638
+
639
+
640
+ def just_points(self):
641
+ """Get points for RTC XML"""
642
+ return get_points(self)
@@ -39,7 +39,7 @@ from pathlib import Path
39
39
 
40
40
  from PyQt6 import QtWidgets
41
41
 
42
- from not1mm.lib.plugin_common import gen_adif, get_points
42
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
43
43
  from not1mm.lib.version import __version__
44
44
 
45
45
  logger = logging.getLogger(__name__)
@@ -47,7 +47,7 @@ logger = logging.getLogger(__name__)
47
47
  EXCHANGE_HINT = "#"
48
48
 
49
49
  name = "IARU FIELDDAY R1 DARC CW"
50
- cabrillo_name = "IARU-FD-R1-DARC-CW"
50
+ cabrillo_name = "FIELDDAY-REGION-1"
51
51
  mode = "CW" # CW SSB BOTH RTTY
52
52
  # columns = [0, 1, 2, 3, 4, 5, 6, 9, 11, 15]
53
53
  columns = [
@@ -527,3 +527,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
527
527
  self.save_contact()
528
528
  continue
529
529
  self.process_function_key(button)
530
+
531
+
532
+ def get_mults(self):
533
+ """Get mults for RTC XML"""
534
+ mults = {}
535
+ mults["country"] = show_mults(self)
536
+ return mults
537
+
538
+
539
+ def just_points(self):
540
+ """Get points for RTC XML"""
541
+ return get_points(self)
@@ -39,7 +39,7 @@ from pathlib import Path
39
39
 
40
40
  from PyQt6 import QtWidgets
41
41
 
42
- from not1mm.lib.plugin_common import gen_adif, get_points
42
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
43
43
  from not1mm.lib.version import __version__
44
44
 
45
45
  logger = logging.getLogger(__name__)
@@ -47,7 +47,7 @@ logger = logging.getLogger(__name__)
47
47
  EXCHANGE_HINT = "#"
48
48
 
49
49
  name = "IARU FIELDDAY R1 DARC SSB"
50
- cabrillo_name = "IARU-FD-R1-DARC-SSB"
50
+ cabrillo_name = "FIELDDAY-REGION-1"
51
51
  mode = "SSB" # CW SSB BOTH RTTY
52
52
  # columns = [0, 1, 2, 3, 4, 5, 6, 9, 11, 15]
53
53
  columns = [
@@ -527,3 +527,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
527
527
  self.save_contact()
528
528
  continue
529
529
  self.process_function_key(button)
530
+
531
+
532
+ def get_mults(self):
533
+ """Get mults for RTC XML"""
534
+ mults = {}
535
+ mults["country"] = show_mults(self)
536
+ return mults
537
+
538
+
539
+ def just_points(self):
540
+ """Get points for RTC XML"""
541
+ return get_points(self)
not1mm/plugins/iaru_hf.py CHANGED
@@ -22,7 +22,7 @@ from pathlib import Path
22
22
 
23
23
  from PyQt6 import QtWidgets
24
24
 
25
- from not1mm.lib.plugin_common import gen_adif, get_points
25
+ from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
26
26
  from not1mm.lib.version import __version__
27
27
 
28
28
  logger = logging.getLogger(__name__)
@@ -143,12 +143,28 @@ def points(self):
143
143
  return 5
144
144
 
145
145
 
146
- def show_mults(self):
146
+ def show_mults(self, rtc=None):
147
147
  """Return display string for mults"""
148
+ # select count(DISTINCT(ZN || ':' || Band || ':' || Mode)) as zbm_count from dxlog where ContestNR = 14 and typeof(ZN)!="integer";
149
+ total_mults = 0
148
150
  result1 = self.database.fetch_zn_band_mode_count()
149
151
  if result1:
150
- return int(result1.get("zbm_count", 0))
151
- return 0
152
+ total_mults = int(result1.get("zbm_count", 0))
153
+
154
+ query = (
155
+ f"select count(DISTINCT(ZN || ':' || Band || ':' || Mode)) "
156
+ f"as zbm_count from dxlog where ContestNR = {self.pref.get('contest', '1')} "
157
+ f"and typeof(ZN)!='integer';"
158
+ )
159
+ result = self.database.exec_sql(query)
160
+ hq_count = int(result.get("zbm_count", 0))
161
+
162
+ zones = total_mults - hq_count
163
+
164
+ if rtc is not None:
165
+ return (hq_count, zones)
166
+
167
+ return total_mults
152
168
 
153
169
 
154
170
  def show_qso(self):
@@ -479,7 +495,7 @@ def populate_history_info_line(self):
479
495
  result = self.database.fetch_call_history(self.callsign.text())
480
496
  if result:
481
497
  self.history_info.setText(
482
- f"{result.get('Call', '')}, {result.get('Exch1', '')}, {result.get('UserText','...')}"
498
+ f"{result.get('Call', '')}, {result.get('Sect', '')}, {result.get('UserText','...')}"
483
499
  )
484
500
  else:
485
501
  self.history_info.setText("")
@@ -491,4 +507,17 @@ def check_call_history(self):
491
507
  if result:
492
508
  self.history_info.setText(f"{result.get('UserText','')}")
493
509
  if self.other_2.text() == "":
494
- self.other_2.setText(f"{result.get('Exch1', '')}")
510
+ self.other_2.setText(f"{result.get('Sect', '')}")
511
+
512
+
513
+ def get_mults(self):
514
+ """Get mults for RTC XML"""
515
+
516
+ mults = {}
517
+ mults["state"], mults["zone"] = show_mults(self, rtc=True)
518
+ return mults
519
+
520
+
521
+ def just_points(self):
522
+ """Get points for RTC XML"""
523
+ return get_points(self)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: not1mm
3
- Version: 24.12.9
3
+ Version: 24.12.11.1
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-11-1] Add RTC to RAC Canada Day, ARRL VHF, ARRL Field Day, ARRL SS, ARRL DX, 10 10
243
+ - [24-12-11] Add RTC to IARU HF, IARU Field Day, DARC XMAS, CQ WW, CQ WPX
242
244
  - [24-12-9] Add RTC to Winter Field Day, Stew Perry, REF, RAEM, NAQP, LZ-DX, JIDX
243
245
  - [24-12-8-2] Add RTC to ARRL 10M, Tweaked cabrillo file output.
244
246
  - [24-12-8-1] Changed cabrillo names for Weekly RTTY, CW Ops CWT and K1USN SST.
@@ -115,40 +115,40 @@ not1mm/lib/plugin_common.py,sha256=-cvXtEAUgZ7GtxaNiwVdHbZ-7wEBeoMPRZXNdCxnPyA,1
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=kW55e9c7_3zPa1m5mdA-ztXMdCwYpa9CSVJDZmKiq2c,48
118
+ not1mm/lib/version.py,sha256=EaaO76hhYOzheZe2yYhIbnhLOsBZ5g20OOXN_3kiB6A,51
119
119
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
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
120
+ not1mm/plugins/10_10_fall_cw.py,sha256=5QUyGMvGBC-HxcY_z9QbfuxSg3f7p6C9K4qhTxgZE7k,14719
121
+ not1mm/plugins/10_10_spring_cw.py,sha256=XjYFM263WYyG6nVQzPObW4YC7Z9L93rixSOcVsxPvH4,14722
122
+ not1mm/plugins/10_10_summer_phone.py,sha256=ry2HPL3W_59lXhg9eglPBucwtGVfsNIi36llGH9Ano0,14832
123
+ not1mm/plugins/10_10_winter_phone.py,sha256=k4aTQAKqy9SNIKxyueIgRmS5kWwisi-VDg4EhS81-dU,14731
124
124
  not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
125
  not1mm/plugins/arrl_10m.py,sha256=EzVBMdyVtm4LWH-5YR_s--Z7dA8xXLOVTcnAW4ZmLFQ,18325
126
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
- not1mm/plugins/arrl_rtty_ru.py,sha256=npOuf7OxcF0BbvpXJuPOLwf0-wONbDlGW7_B_-BSFz0,7370
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
127
+ not1mm/plugins/arrl_dx_cw.py,sha256=4UMN1HWPNbkz2T6K33GJ0wUkE7yq46C57C6BUwbu5cs,18014
128
+ not1mm/plugins/arrl_dx_ssb.py,sha256=X2C0hPY45_CvA2_97O0NAw3HF4QGgs5o0WVTlwMMme8,18017
129
+ not1mm/plugins/arrl_field_day.py,sha256=X7BLs87ikQEm1xuh2sSj-8KcFA9pqnut6uFGM2xJe7c,16743
130
+ not1mm/plugins/arrl_rtty_ru.py,sha256=Cov4_0AQEWSmj8hjiuW_lgpqRZHuxqufbXBbKjPYLH4,7667
131
+ not1mm/plugins/arrl_ss_cw.py,sha256=uv71xstpmBiDTyU5zF8pe6UIS-5v6hi0aMBksbPvCzc,17458
132
+ not1mm/plugins/arrl_ss_phone.py,sha256=V3dgBXoLb3mWMbb1s-ovx-SoUBL5IxE8omkQbP7siwk,16794
133
+ not1mm/plugins/arrl_vhf_jan.py,sha256=SDk0gGg00XPuCpl6DsyozAnEoOBgiS1wMUhDPPB5RsM,20267
134
+ not1mm/plugins/arrl_vhf_jun.py,sha256=q-g5IK29pXrT1Pn_cY4LeCO2sd8YaaE1Cn8KBG3Vwrk,19359
135
+ not1mm/plugins/arrl_vhf_sep.py,sha256=yj-NaUVjMEYzt-1UN8f2xDDTwJS2foBzjnDr-cvTmcs,19392
136
+ not1mm/plugins/canada_day.py,sha256=23xicRglQbuHu4Qx9BsMpbjKzmhLpKGL-TxwDCLCwZo,15706
137
137
  not1mm/plugins/cq_160_cw.py,sha256=Ks41--f-p46rpDeOlzJmLgg7Coj0nyVLuTNWFr7eVHw,18664
138
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
139
+ not1mm/plugins/cq_wpx_cw.py,sha256=7ZWO9iqNVKjCZXG_5bUEtpahTgRHLc7ebQhvsQTATh0,18185
140
+ not1mm/plugins/cq_wpx_rtty.py,sha256=2QoZzGg01wMIPRLxVUmS-Pke0iJvakr_prBzPnekHpc,21004
141
+ not1mm/plugins/cq_wpx_ssb.py,sha256=WeUQoXbGDxzg603Ai6vmtw-Lc9LVXwwreamqXu--unY,16752
142
+ not1mm/plugins/cq_ww_cw.py,sha256=qWtKnzrm5Ifi7VxExFWidyX1aEGid5I1XExYXsWEGs0,18393
143
+ not1mm/plugins/cq_ww_rtty.py,sha256=RJywVSNujM4CxxTRCGKXhjmbz6OMzGR5eHSAmQcT6Pc,22486
144
+ not1mm/plugins/cq_ww_ssb.py,sha256=uRMXaTfkIt7QJxQBaBAvc2fmT6ak26SzBBezd5k_hMc,17991
145
145
  not1mm/plugins/cwt.py,sha256=7BoKVrIywlHpP4f4_mrUyWKVsK6vujreb8jDWyXrwUc,17530
146
- not1mm/plugins/darc_xmas.py,sha256=SYP35XbR-zyyLmmGb_xCqeNJRqtiuNAja7ufmipt7Ls,18567
146
+ not1mm/plugins/darc_xmas.py,sha256=p9JbOJlEoOsB86E5ciHdrY7L-10tnNEWuTxq9EfCNBM,18907
147
147
  not1mm/plugins/general_logging.py,sha256=NV_FCgpAEEQrVRxMDD7nQ2krJgPrhtopizxrGndtUNk,6686
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
148
+ not1mm/plugins/helvetia.py,sha256=CnAq0mXZC2tO_pEwIoDN6MHAv95NPcLRvG1gnjfAcF8,20032
149
+ not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=lueTnK50yRSMqASlktrhuFOJkSBDsQw4OyT9eYwpugU,17155
150
+ not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=1lYxeo4j_piiFZ_db-vHIHT5c1jSeFPBuw6yf1kur6Y,17159
151
+ not1mm/plugins/iaru_hf.py,sha256=kbiKqg7leyGnULe4BEk0gaZ4uvqR2ya9MOe_Er4mN8U,16658
152
152
  not1mm/plugins/icwc_mst.py,sha256=XfaIRIj0BxWvpWk2nmy_dMseVuKVOh-_m3UcIGOy6wI,16475
153
153
  not1mm/plugins/jidx_cw.py,sha256=gSScw21ac2Rpdd7jspgh5gnH9JdiR8h3YOa-41B_T94,15881
154
154
  not1mm/plugins/jidx_ph.py,sha256=0E5xHs0WXh-x2Z6UC2PGqmLdIkn-jWbENOeLopr7rys,14830
@@ -164,9 +164,9 @@ not1mm/plugins/ref_ssb.py,sha256=vfS9-mcnbw2znRvU4jh20JqI9BXap8jV65OV5mbCkCk,209
164
164
  not1mm/plugins/stew_perry_topband.py,sha256=D1hekmMbx-i4BhaP2uzOK3OzaVVMMdgcN3RmfweNqHo,15341
165
165
  not1mm/plugins/weekly_rtty.py,sha256=huZszbZsIh4vF3cP80UyPzy3qxIoHdEiT1b6KuvwgYc,20083
166
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,,
167
+ not1mm-24.12.11.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
168
+ not1mm-24.12.11.1.dist-info/METADATA,sha256=4v4v9i_hZUKUDdonATSSte33Xx03ONaCaU-WX3bJzPs,36109
169
+ not1mm-24.12.11.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
170
+ not1mm-24.12.11.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
171
+ not1mm-24.12.11.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
172
+ not1mm-24.12.11.1.dist-info/RECORD,,