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 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
@@ -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
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "25.4.10.1"
3
+ __version__ = "25.4.11"