not1mm 25.2.22__py3-none-any.whl → 25.3.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 CHANGED
@@ -2270,6 +2270,8 @@ class MainWindow(QtWidgets.QMainWindow):
2270
2270
  return
2271
2271
  if event.key() == Qt.Key.Key_F1:
2272
2272
  if event.modifiers() == Qt.KeyboardModifier.ShiftModifier:
2273
+ self.radioButton_run.setChecked(True)
2274
+ self.run_sp_buttons_clicked()
2273
2275
  self.auto_cq = True
2274
2276
  self.auto_cq_time = datetime.datetime.now() + datetime.timedelta(
2275
2277
  milliseconds=self.auto_cq_delay
@@ -2771,6 +2773,8 @@ class MainWindow(QtWidgets.QMainWindow):
2771
2773
  macro = macro.replace("#", next_serial)
2772
2774
  macro = macro.replace("{MYCALL}", self.station.get("Call", ""))
2773
2775
  macro = macro.replace("{HISCALL}", self.callsign.text())
2776
+ macro = macro.replace("{OTHER1}", self.other_1.text())
2777
+ macro = macro.replace("{OTHER2}", self.other_2.text())
2774
2778
  if self.radio_state.get("mode") == "CW":
2775
2779
  macro = macro.replace("{SNT}", self.sent.text().replace("9", "n"))
2776
2780
  else:
@@ -3713,12 +3717,16 @@ class MainWindow(QtWidgets.QMainWindow):
3713
3717
  Passing in a dictionary object with the
3714
3718
  vfo freq, mode, bandwidth, and online state of the radio.
3715
3719
  """
3720
+ # This section has nothing to do with polling the radio
3721
+ # It's here because it gets called often enough to be useful.
3716
3722
  if self.auto_cq is True:
3717
3723
  if datetime.datetime.now() > self.auto_cq_time:
3718
3724
  self.auto_cq_time = datetime.datetime.now() + datetime.timedelta(
3719
3725
  milliseconds=self.auto_cq_delay
3720
3726
  )
3721
3727
  self.process_function_key(self.F1)
3728
+
3729
+ # The following pertains to radio polling.
3722
3730
  logger.debug(f"{the_dict=}")
3723
3731
  self.set_radio_icon(0)
3724
3732
  info_dirty = False
not1mm/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "25.2.22"
3
+ __version__ = "25.3.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: not1mm
3
- Version: 25.2.22
3
+ Version: 25.3.1
4
4
  Summary: NOT1MM Logger
5
5
  Author-email: Michael Bridak <michael.bridak@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/mbridak/not1mm
@@ -240,6 +240,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
240
240
 
241
241
  ## Recent Changes
242
242
 
243
+ - [25-3-1] Add {OTHER1} and {OTHER2} macros.
244
+ - [25-2-26] Switch to a Run state if engaging auto_cq.
243
245
  - [25-2-22] Add Auto CQ.
244
246
  - [25-2-12] Merged PR from @alduhoo Adding RandomGram event.
245
247
  - [25-2-6] Trimmed out newer tags from UI files, 'cause stuff be old sometimes.
@@ -679,6 +681,8 @@ You can include a limited set of substitution instructions.
679
681
  | {SNT} | Sends 5nn (cw) or 599 (ssb) |
680
682
  | {SENTNR} | Sends whats in the SentNR field. |
681
683
  | {EXCH} | Sends what's in the Sent Exchange field when contest is defined. |
684
+ | {OTHER1} | Sends whats in the SentNR/Name field without altering it. |
685
+ | {OTHER2} | Sends whats in the Comment field without altering it. |
682
686
  | {LOGIT} | Log the contact after macro pressed. |
683
687
  | {MARK} | Mark the current call in the bandmap. |
684
688
  | {SPOT} | Spot the current call to the cluster. |
@@ -1,5 +1,5 @@
1
1
  not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- not1mm/__main__.py,sha256=4Jv9ksSCUlh92_wpUW3eGRPAYwv5jN_7WzE_ayW_33A,147950
2
+ not1mm/__main__.py,sha256=tg3pyejQnZILEIPLvjEjMWHsLmNDtOgEMVwk_G-hGgI,148362
3
3
  not1mm/bandmap.py,sha256=vaOeqv_gW0-K0P3xA9JYcuiFILiKw601tjHQCwuoV-s,31260
4
4
  not1mm/checkwindow.py,sha256=VFAcKYTcoWhmIf91chwY6tyao9FQMWPiUkgDDkkWaog,9670
5
5
  not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
@@ -116,7 +116,7 @@ not1mm/lib/plugin_common.py,sha256=M5reDYM-v5IjAa2yTROvZTeTDkXYHb3U52W9mc9GxwA,1
116
116
  not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
117
117
  not1mm/lib/settings.py,sha256=mXffn8Xaj5KATPQinNBR0V5DbHWQPsRfh24_axWGYuk,15254
118
118
  not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
119
- not1mm/lib/version.py,sha256=YyHhlv86HqZt-y6-w0bTg49_FZBc1moC-gosWfGb0HA,48
119
+ not1mm/lib/version.py,sha256=OvlBILyYnJGDq4IZybylK34pDF1TpFCot_87JqSHCug,47
120
120
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
121
121
  not1mm/plugins/10_10_fall_cw.py,sha256=5QUyGMvGBC-HxcY_z9QbfuxSg3f7p6C9K4qhTxgZE7k,14719
122
122
  not1mm/plugins/10_10_spring_cw.py,sha256=XjYFM263WYyG6nVQzPObW4YC7Z9L93rixSOcVsxPvH4,14722
@@ -167,9 +167,9 @@ not1mm/plugins/ref_ssb.py,sha256=Z_XmMpYKcI5dZh4TQqvQDcz-cLpMzpDEKBnb5iHeBLQ,215
167
167
  not1mm/plugins/stew_perry_topband.py,sha256=D1hekmMbx-i4BhaP2uzOK3OzaVVMMdgcN3RmfweNqHo,15341
168
168
  not1mm/plugins/weekly_rtty.py,sha256=rdlIrsxBeuj-RQc5OStVNF7sGCtBK5t6inN5Z7DI4tw,20066
169
169
  not1mm/plugins/winter_field_day.py,sha256=JK4r1vfxs7aADR7ZYbjZniz3f5s3_ipSQDZ0GRNWC7I,15222
170
- not1mm-25.2.22.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
171
- not1mm-25.2.22.dist-info/METADATA,sha256=SRA1jtgHVpebHddRFUlRAP8Vdbg70-TS3glCQIFqCA4,36125
172
- not1mm-25.2.22.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
173
- not1mm-25.2.22.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
174
- not1mm-25.2.22.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
175
- not1mm-25.2.22.dist-info/RECORD,,
170
+ not1mm-25.3.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
171
+ not1mm-25.3.1.dist-info/METADATA,sha256=aPf3ypwLgLUfVkeQLt_71AFfp-rPAjCqKhVDyOW4Y1s,36366
172
+ not1mm-25.3.1.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
173
+ not1mm-25.3.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
174
+ not1mm-25.3.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
175
+ not1mm-25.3.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.8.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5