not1mm 25.3.17__py3-none-any.whl → 25.3.19__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
@@ -249,6 +249,7 @@ class MainWindow(QtWidgets.QMainWindow):
249
249
  lambda x: self.generate_cabrillo("utf-8")
250
250
  )
251
251
  self.actionGenerate_ADIF.triggered.connect(self.generate_adif)
252
+ self. actionGenerate_EDI.triggered.connect(self.generate_edi)
252
253
 
253
254
  self.actionConfiguration_Settings.triggered.connect(
254
255
  self.edit_configuration_settings
@@ -3331,6 +3332,9 @@ class MainWindow(QtWidgets.QMainWindow):
3331
3332
  if "ARRL Sweepstakes" in self.contest.name:
3332
3333
  self.contest.parse_exchange(self)
3333
3334
  return
3335
+ if hasattr(self.contest, "call_parse_exchange_on_edit"):
3336
+ if self.contest.advance_on_space:
3337
+ self.contest.parse_exchange(self)
3334
3338
  if hasattr(self.contest, "advance_on_space"):
3335
3339
  if self.contest.advance_on_space[4]:
3336
3340
  text = self.other_2.text()
@@ -3978,6 +3982,22 @@ class MainWindow(QtWidgets.QMainWindow):
3978
3982
  logger.debug("******ADIF*****")
3979
3983
  self.contest.adif(self)
3980
3984
 
3985
+ def generate_edi(self) -> None:
3986
+ """
3987
+ Calls the contest EDI file generator.
3988
+
3989
+ Parameters
3990
+ ----------
3991
+ None
3992
+
3993
+ Returns
3994
+ -------
3995
+ None
3996
+ """
3997
+
3998
+ logger.debug("******EDI*****")
3999
+ self.contest.edi(self)
4000
+
3981
4001
  def generate_cabrillo(self, file_encoding: str) -> None:
3982
4002
  """
3983
4003
  Calls the contest Cabrillo file generator. Maybe.
not1mm/data/main.ui CHANGED
@@ -1480,6 +1480,7 @@
1480
1480
  <addaction name="actionGenerate_ADIF"/>
1481
1481
  <addaction name="actionGenerate_Cabrillo_ASCII"/>
1482
1482
  <addaction name="actionGenerate_Cabrillo_UTF8"/>
1483
+ <addaction name="actionGenerate_EDI"/>
1483
1484
  <addaction name="separator"/>
1484
1485
  <addaction name="actionEdit_Macros"/>
1485
1486
  <addaction name="separator"/>
@@ -1779,6 +1780,28 @@
1779
1780
  <property name="shortcutVisibleInContextMenu">
1780
1781
  <bool>false</bool>
1781
1782
  </property>
1783
+ </action>
1784
+ <action name="actionGenerate_EDI">
1785
+ <property name="text">
1786
+ <string>Generate EDI</string>
1787
+ </property>
1788
+ <property name="font">
1789
+ <font>
1790
+ <family>JetBrains Mono ExtraLight</family>
1791
+ </font>
1792
+ </property>
1793
+ <property name="shortcut">
1794
+ <string/>
1795
+ </property>
1796
+ <property name="autoRepeat">
1797
+ <bool>false</bool>
1798
+ </property>
1799
+ <property name="iconVisibleInMenu">
1800
+ <bool>false</bool>
1801
+ </property>
1802
+ <property name="shortcutVisibleInContextMenu">
1803
+ <bool>false</bool>
1804
+ </property>
1782
1805
  </action>
1783
1806
  <action name="actionRecalculate_Mults">
1784
1807
  <property name="text">
@@ -322,6 +322,16 @@
322
322
  <string>DARC XMAS</string>
323
323
  </property>
324
324
  </item>
325
+ <item>
326
+ <property name="text">
327
+ <string>DARC VHF</string>
328
+ </property>
329
+ </item>
330
+ <item>
331
+ <property name="text">
332
+ <string>EA MAJISTAD CW</string>
333
+ </property>
334
+ </item>
325
335
  <item>
326
336
  <property name="text">
327
337
  <string>EA RTTY</string>
not1mm/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "25.3.17"
3
+ __version__ = "25.3.19"