not1mm 25.3.18__py3-none-any.whl → 25.3.19.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/__main__.py +20 -0
- not1mm/data/main.ui +23 -0
- not1mm/data/new_contest.ui +10 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/darc_vhf.py +848 -0
- not1mm/plugins/ea_majistad_cw.py +3 -3
- not1mm/plugins/ea_majistad_ssb.py +727 -0
- {not1mm-25.3.18.dist-info → not1mm-25.3.19.1.dist-info}/METADATA +5 -1
- {not1mm-25.3.18.dist-info → not1mm-25.3.19.1.dist-info}/RECORD +13 -11
- {not1mm-25.3.18.dist-info → not1mm-25.3.19.1.dist-info}/LICENSE +0 -0
- {not1mm-25.3.18.dist-info → not1mm-25.3.19.1.dist-info}/WHEEL +0 -0
- {not1mm-25.3.18.dist-info → not1mm-25.3.19.1.dist-info}/entry_points.txt +0 -0
- {not1mm-25.3.18.dist-info → not1mm-25.3.19.1.dist-info}/top_level.txt +0 -0
not1mm/plugins/ea_majistad_cw.py
CHANGED
@@ -272,7 +272,7 @@ def calc_score(self) -> int:
|
|
272
272
|
|
273
273
|
def adif(self) -> None:
|
274
274
|
"""Call the generate ADIF function"""
|
275
|
-
gen_adif(self, cabrillo_name)
|
275
|
+
gen_adif(self, cabrillo_name, contest_id=cabrillo_name)
|
276
276
|
|
277
277
|
|
278
278
|
def output_cabrillo_line(line_to_output, ending, file_descriptor, file_encoding):
|
@@ -582,7 +582,7 @@ def populate_history_info_line(self):
|
|
582
582
|
result = self.database.fetch_call_history(self.callsign.text())
|
583
583
|
if result:
|
584
584
|
self.history_info.setText(
|
585
|
-
f"{result.get('Call', '')}, {result.get('Name', '')}, {result.get('
|
585
|
+
f"{result.get('Call', '')}, {result.get('Name', '')}, {result.get('Exch1', '')}, {result.get('UserText','...')}"
|
586
586
|
)
|
587
587
|
else:
|
588
588
|
self.history_info.setText("")
|
@@ -594,7 +594,7 @@ def check_call_history(self):
|
|
594
594
|
if result:
|
595
595
|
self.history_info.setText(f"{result.get('UserText','')}")
|
596
596
|
if self.other_2.text() == "":
|
597
|
-
self.other_2.setText(f"{result.get('
|
597
|
+
self.other_2.setText(f"{result.get('Exch1', '')}")
|
598
598
|
|
599
599
|
|
600
600
|
def get_mults(self):
|