not1mm 25.4.10.1__py3-none-any.whl → 25.4.11__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 +8 -0
- not1mm/data/new_contest.ui +10 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/sac_cw.py +668 -0
- not1mm/plugins/sac_ssb.py +668 -0
- {not1mm-25.4.10.1.dist-info → not1mm-25.4.11.dist-info}/METADATA +3 -1
- {not1mm-25.4.10.1.dist-info → not1mm-25.4.11.dist-info}/RECORD +11 -9
- {not1mm-25.4.10.1.dist-info → not1mm-25.4.11.dist-info}/WHEEL +0 -0
- {not1mm-25.4.10.1.dist-info → not1mm-25.4.11.dist-info}/entry_points.txt +0 -0
- {not1mm-25.4.10.1.dist-info → not1mm-25.4.11.dist-info}/licenses/LICENSE +0 -0
- {not1mm-25.4.10.1.dist-info → not1mm-25.4.11.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -2219,6 +2219,14 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2219
2219
|
): # pylint: disable=no-member
|
2220
2220
|
self.toggle_run_sp()
|
2221
2221
|
return
|
2222
|
+
if (
|
2223
|
+
event.key() == Qt.Key.Key_T
|
2224
|
+
and modifier == Qt.KeyboardModifier.ControlModifier
|
2225
|
+
): # pylint: disable=no-member
|
2226
|
+
if hasattr(self.contest, "add_test_data"):
|
2227
|
+
self.contest.add_test_data(self)
|
2228
|
+
return
|
2229
|
+
|
2222
2230
|
if (
|
2223
2231
|
event.key() == Qt.Key.Key_W
|
2224
2232
|
and modifier == Qt.KeyboardModifier.ControlModifier
|
not1mm/data/new_contest.ui
CHANGED
@@ -437,6 +437,16 @@
|
|
437
437
|
<string>REF SSB</string>
|
438
438
|
</property>
|
439
439
|
</item>
|
440
|
+
<item>
|
441
|
+
<property name="text">
|
442
|
+
<string>SAC CW</string>
|
443
|
+
</property>
|
444
|
+
</item>
|
445
|
+
<item>
|
446
|
+
<property name="text">
|
447
|
+
<string>SAC SSB</string>
|
448
|
+
</property>
|
449
|
+
</item>
|
440
450
|
<item>
|
441
451
|
<property name="text">
|
442
452
|
<string>SPDX</string>
|
not1mm/lib/version.py
CHANGED