not1mm 25.5.31__py3-none-any.whl → 25.6.2__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 +2 -2
- not1mm/data/cty.json +1 -1
- not1mm/lib/plugin_common.py +21 -0
- not1mm/lib/version.py +1 -1
- not1mm/logwindow.py +4 -0
- not1mm/plugins/es_field_day.py +7 -20
- not1mm/statistics.py +1 -0
- {not1mm-25.5.31.dist-info → not1mm-25.6.2.dist-info}/METADATA +5 -13
- {not1mm-25.5.31.dist-info → not1mm-25.6.2.dist-info}/RECORD +13 -13
- {not1mm-25.5.31.dist-info → not1mm-25.6.2.dist-info}/WHEEL +0 -0
- {not1mm-25.5.31.dist-info → not1mm-25.6.2.dist-info}/entry_points.txt +0 -0
- {not1mm-25.5.31.dist-info → not1mm-25.6.2.dist-info}/licenses/LICENSE +0 -0
- {not1mm-25.5.31.dist-info → not1mm-25.6.2.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -144,7 +144,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
144
144
|
contest = None
|
145
145
|
contest_settings = {}
|
146
146
|
contact_is_dupe = False
|
147
|
-
pref =
|
147
|
+
pref = {}
|
148
148
|
station = {}
|
149
149
|
current_op = ""
|
150
150
|
current_mode = ""
|
@@ -3839,7 +3839,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3839
3839
|
self.check_window.msg_from_main(cmd)
|
3840
3840
|
if len(stripped_text) >= 3:
|
3841
3841
|
self.check_callsign(stripped_text)
|
3842
|
-
|
3842
|
+
# self.check_callsign(stripped_text)
|
3843
3843
|
if self.check_dupe(stripped_text):
|
3844
3844
|
self.dupe_indicator.show()
|
3845
3845
|
else:
|