not1mm 24.12.11__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 +1 -1
- not1mm/plugins/10_10_fall_cw.py +14 -2
- not1mm/plugins/10_10_spring_cw.py +14 -2
- not1mm/plugins/10_10_summer_phone.py +14 -2
- not1mm/plugins/10_10_winter_phone.py +14 -2
- not1mm/plugins/arrl_dx_cw.py +27 -5
- not1mm/plugins/arrl_dx_ssb.py +27 -5
- not1mm/plugins/arrl_field_day.py +14 -2
- not1mm/plugins/arrl_rtty_ru.py +18 -1
- not1mm/plugins/arrl_ss_cw.py +14 -1
- not1mm/plugins/arrl_ss_phone.py +14 -1
- not1mm/plugins/arrl_vhf_jan.py +21 -1
- not1mm/plugins/arrl_vhf_jun.py +21 -1
- not1mm/plugins/arrl_vhf_sep.py +20 -2
- not1mm/plugins/canada_day.py +21 -2
- {not1mm-24.12.11.dist-info → not1mm-24.12.11.1.dist-info}/METADATA +2 -1
- {not1mm-24.12.11.dist-info → not1mm-24.12.11.1.dist-info}/RECORD +21 -21
- {not1mm-24.12.11.dist-info → not1mm-24.12.11.1.dist-info}/LICENSE +0 -0
- {not1mm-24.12.11.dist-info → not1mm-24.12.11.1.dist-info}/WHEEL +0 -0
- {not1mm-24.12.11.dist-info → not1mm-24.12.11.1.dist-info}/entry_points.txt +0 -0
- {not1mm-24.12.11.dist-info → not1mm-24.12.11.1.dist-info}/top_level.txt +0 -0
not1mm/lib/version.py
CHANGED
not1mm/plugins/10_10_fall_cw.py
CHANGED
@@ -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
|
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
|
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
|
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
|
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)
|
not1mm/plugins/arrl_dx_cw.py
CHANGED
@@ -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
|
-
|
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
|
-
|
157
|
-
|
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
|
not1mm/plugins/arrl_dx_ssb.py
CHANGED
@@ -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
|
-
|
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
|
-
|
157
|
-
|
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
|
not1mm/plugins/arrl_field_day.py
CHANGED
@@ -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-
|
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)
|
not1mm/plugins/arrl_rtty_ru.py
CHANGED
@@ -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)
|
not1mm/plugins/arrl_ss_cw.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
|
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)
|
not1mm/plugins/arrl_ss_phone.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
|
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)
|
not1mm/plugins/arrl_vhf_jan.py
CHANGED
@@ -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
|
not1mm/plugins/arrl_vhf_jun.py
CHANGED
@@ -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
|
not1mm/plugins/arrl_vhf_sep.py
CHANGED
@@ -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
|
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
|
not1mm/plugins/canada_day.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__)
|
@@ -17,7 +17,7 @@ logger = logging.getLogger(__name__)
|
|
17
17
|
EXCHANGE_HINT = "Province/Territory"
|
18
18
|
|
19
19
|
name = "CANADA DAY"
|
20
|
-
cabrillo_name = "
|
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
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.12.11
|
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,7 @@ 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
|
242
243
|
- [24-12-11] Add RTC to IARU HF, IARU Field Day, DARC XMAS, CQ WW, CQ WPX
|
243
244
|
- [24-12-9] Add RTC to Winter Field Day, Stew Perry, REF, RAEM, NAQP, LZ-DX, JIDX
|
244
245
|
- [24-12-8-2] Add RTC to ARRL 10M, Tweaked cabrillo file output.
|
@@ -115,25 +115,25 @@ 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=
|
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=
|
121
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
122
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
123
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
120
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=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=
|
128
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
129
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
130
|
-
not1mm/plugins/arrl_rtty_ru.py,sha256=
|
131
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
132
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
133
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
134
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
135
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
136
|
-
not1mm/plugins/canada_day.py,sha256=
|
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
139
|
not1mm/plugins/cq_wpx_cw.py,sha256=7ZWO9iqNVKjCZXG_5bUEtpahTgRHLc7ebQhvsQTATh0,18185
|
@@ -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.11.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
168
|
-
not1mm-24.12.11.dist-info/METADATA,sha256=
|
169
|
-
not1mm-24.12.11.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
170
|
-
not1mm-24.12.11.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
171
|
-
not1mm-24.12.11.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
172
|
-
not1mm-24.12.11.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,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|