not1mm 24.12.14__py3-none-any.whl → 24.12.29__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 +4 -1
- not1mm/data/bandmap.ui +3 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/general_logging.py +23 -14
- {not1mm-24.12.14.dist-info → not1mm-24.12.29.dist-info}/METADATA +4 -1
- {not1mm-24.12.14.dist-info → not1mm-24.12.29.dist-info}/RECORD +10 -10
- {not1mm-24.12.14.dist-info → not1mm-24.12.29.dist-info}/LICENSE +0 -0
- {not1mm-24.12.14.dist-info → not1mm-24.12.29.dist-info}/WHEEL +0 -0
- {not1mm-24.12.14.dist-info → not1mm-24.12.29.dist-info}/entry_points.txt +0 -0
- {not1mm-24.12.14.dist-info → not1mm-24.12.29.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -1742,7 +1742,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1742
1742
|
"""
|
1743
1743
|
|
1744
1744
|
self.show_message_box(
|
1745
|
-
"[
|
1745
|
+
"[ESC]\tStops cwdaemon from sending Morse.\n"
|
1746
1746
|
"[PgUp]\tIncreases the cw sending speed.\n"
|
1747
1747
|
"[PgDown]\tDecreases the cw sending speed.\n"
|
1748
1748
|
"[Arrow-Up] Jump to the next spot above the current VFO cursor\n"
|
@@ -2731,6 +2731,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2731
2731
|
macro = macro.replace(
|
2732
2732
|
"{EXCH}", self.contest_settings.get("SentExchange", "xxx")
|
2733
2733
|
)
|
2734
|
+
if "{LOGIT}" in macro:
|
2735
|
+
macro = macro.replace("{LOGIT}", "")
|
2736
|
+
self.save_contact()
|
2734
2737
|
return macro
|
2735
2738
|
|
2736
2739
|
def ptt_on(self) -> None:
|
not1mm/data/bandmap.ui
CHANGED
not1mm/lib/version.py
CHANGED
@@ -183,14 +183,18 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
183
183
|
buttons_to_send.append(self.esm_dict["HISCALL"])
|
184
184
|
buttons_to_send.append(self.esm_dict["EXCH"])
|
185
185
|
|
186
|
+
# elif self.current_widget in ["other_1", "other_2"]:
|
187
|
+
# if self.other_2.text() == "" and self.other_1.text() == "":
|
188
|
+
# self.make_button_green(self.esm_dict["AGN"])
|
189
|
+
# buttons_to_send.append(self.esm_dict["AGN"])
|
190
|
+
# else:
|
191
|
+
# self.make_button_green(self.esm_dict["QRZ"])
|
192
|
+
# buttons_to_send.append(self.esm_dict["QRZ"])
|
193
|
+
# buttons_to_send.append("LOGIT")
|
194
|
+
|
186
195
|
elif self.current_widget in ["other_1", "other_2"]:
|
187
|
-
|
188
|
-
|
189
|
-
buttons_to_send.append(self.esm_dict["AGN"])
|
190
|
-
else:
|
191
|
-
self.make_button_green(self.esm_dict["QRZ"])
|
192
|
-
buttons_to_send.append(self.esm_dict["QRZ"])
|
193
|
-
buttons_to_send.append("LOGIT")
|
196
|
+
buttons_to_send.append("LOGIT")
|
197
|
+
|
194
198
|
|
195
199
|
if with_enter is True and bool(len(buttons_to_send)):
|
196
200
|
for button in buttons_to_send:
|
@@ -205,14 +209,19 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
205
209
|
self.make_button_green(self.esm_dict["MYCALL"])
|
206
210
|
buttons_to_send.append(self.esm_dict["MYCALL"])
|
207
211
|
|
212
|
+
# elif self.current_widget in ["other_1", "other_2"]:
|
213
|
+
# if self.other_2.text() == "" and self.other_1.text() == "":
|
214
|
+
# self.make_button_green(self.esm_dict["AGN"])
|
215
|
+
# buttons_to_send.append(self.esm_dict["AGN"])
|
216
|
+
# else:
|
217
|
+
# self.make_button_green(self.esm_dict["EXCH"])
|
218
|
+
# buttons_to_send.append(self.esm_dict["EXCH"])
|
219
|
+
# buttons_to_send.append("LOGIT")
|
220
|
+
|
208
221
|
elif self.current_widget in ["other_1", "other_2"]:
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
else:
|
213
|
-
self.make_button_green(self.esm_dict["EXCH"])
|
214
|
-
buttons_to_send.append(self.esm_dict["EXCH"])
|
215
|
-
buttons_to_send.append("LOGIT")
|
222
|
+
buttons_to_send.append("LOGIT")
|
223
|
+
|
224
|
+
|
216
225
|
if with_enter is True and bool(len(buttons_to_send)):
|
217
226
|
for button in buttons_to_send:
|
218
227
|
if button:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.12.
|
3
|
+
Version: 24.12.29
|
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
|
@@ -239,6 +239,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
239
239
|
|
240
240
|
## Recent Changes (Polishing the Turd)
|
241
241
|
|
242
|
+
- [24-12-29] Add {LOGIT} macro.
|
243
|
+
- [24-12-15] Fixed Button focus policy in the bandmap window.
|
242
244
|
- [24-12-14] Changed method of detecting fldigi QSOs. See docs.
|
243
245
|
- [24-12-12] Add a try exception for a unicode decode error.
|
244
246
|
- [24-12-11-1] Add RTC to RAC Canada Day, ARRL VHF, ARRL Field Day, ARRL SS, ARRL DX, 10 10
|
@@ -687,6 +689,7 @@ You can include a limited set of substitution instructions.
|
|
687
689
|
| {SNT} | Sends 5nn (cw) or 599 (ssb) |
|
688
690
|
| {SENTNR} | Sends whats in the SentNR field. |
|
689
691
|
| {EXCH} | Sends what's in the Sent Exchange field when contest is defined. |
|
692
|
+
| {LOGIT} | Log the contact after macro pressed. |
|
690
693
|
| '#' | Sends serial number. |
|
691
694
|
|
692
695
|
### Macro use with voice
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=mMKDAkCWN5gF4SM7-wod-njba7RDw2Zfr-pNI5q7FxY,144819
|
3
3
|
not1mm/bandmap.py,sha256=zD3aUf36NVQCy0plAcZLNxYhSEM9xZ8J1Cu9vrcFPYA,31136
|
4
4
|
not1mm/checkwindow.py,sha256=VFAcKYTcoWhmIf91chwY6tyao9FQMWPiUkgDDkkWaog,9670
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -14,7 +14,7 @@ not1mm/data/JetBrainsMono-ExtraLight.ttf,sha256=g5Hn7BPounWMGDj1a8zZcyKMz03HSqW_
|
|
14
14
|
not1mm/data/MASTER.SCP,sha256=FWKs4Xw3w7FNUt2npA6VzsLME7NAbHRugxaL6TnsvzU,364234
|
15
15
|
not1mm/data/about.ui,sha256=IzbwKQZ_Ea06qGEjJgsa7g8-oYk549f-MEpLtChiLvw,2078
|
16
16
|
not1mm/data/alpha bravo charlie delta.txt,sha256=d5QMmSWEUAe4Rj1XbNjTPLa_5Be4Se6u5LUIqAYidOQ,224
|
17
|
-
not1mm/data/bandmap.ui,sha256=
|
17
|
+
not1mm/data/bandmap.ui,sha256=rh9GHdBOIfrOmamR6zUZ15aJ4VDsX5mQoVuZs8bV8TI,8034
|
18
18
|
not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
|
19
19
|
not1mm/data/checkwindow.ui,sha256=PRD98K0julJ9EfWqoE89dT8UPuPKQzGiWBk_efAko3o,5141
|
20
20
|
not1mm/data/configuration.ui,sha256=VJv_uJp53mPK6YyVXOu0aRRtgrgFvIha_wX_7P4M9t0,72554
|
@@ -114,7 +114,7 @@ not1mm/lib/plugin_common.py,sha256=-cvXtEAUgZ7GtxaNiwVdHbZ-7wEBeoMPRZXNdCxnPyA,1
|
|
114
114
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
115
115
|
not1mm/lib/settings.py,sha256=j5lIMLHJ-eqIaVr_QhI82gkbOl17_C-5suRkWbHYET8,14717
|
116
116
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
117
|
-
not1mm/lib/version.py,sha256=
|
117
|
+
not1mm/lib/version.py,sha256=Zxj8R2RAU3f3QjwyIVhlY4RGN0LkJWYSJyWj2VVCBmk,49
|
118
118
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
119
119
|
not1mm/plugins/10_10_fall_cw.py,sha256=5QUyGMvGBC-HxcY_z9QbfuxSg3f7p6C9K4qhTxgZE7k,14719
|
120
120
|
not1mm/plugins/10_10_spring_cw.py,sha256=XjYFM263WYyG6nVQzPObW4YC7Z9L93rixSOcVsxPvH4,14722
|
@@ -143,7 +143,7 @@ not1mm/plugins/cq_ww_rtty.py,sha256=RJywVSNujM4CxxTRCGKXhjmbz6OMzGR5eHSAmQcT6Pc,
|
|
143
143
|
not1mm/plugins/cq_ww_ssb.py,sha256=uRMXaTfkIt7QJxQBaBAvc2fmT6ak26SzBBezd5k_hMc,17991
|
144
144
|
not1mm/plugins/cwt.py,sha256=7BoKVrIywlHpP4f4_mrUyWKVsK6vujreb8jDWyXrwUc,17530
|
145
145
|
not1mm/plugins/darc_xmas.py,sha256=p9JbOJlEoOsB86E5ciHdrY7L-10tnNEWuTxq9EfCNBM,18907
|
146
|
-
not1mm/plugins/general_logging.py,sha256=
|
146
|
+
not1mm/plugins/general_logging.py,sha256=gpZhoBr9fKpcTrefufmtvMHVrzlSqUsch64O8-oKhls,6915
|
147
147
|
not1mm/plugins/helvetia.py,sha256=CnAq0mXZC2tO_pEwIoDN6MHAv95NPcLRvG1gnjfAcF8,20032
|
148
148
|
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=lueTnK50yRSMqASlktrhuFOJkSBDsQw4OyT9eYwpugU,17155
|
149
149
|
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=1lYxeo4j_piiFZ_db-vHIHT5c1jSeFPBuw6yf1kur6Y,17159
|
@@ -163,9 +163,9 @@ not1mm/plugins/ref_ssb.py,sha256=vfS9-mcnbw2znRvU4jh20JqI9BXap8jV65OV5mbCkCk,209
|
|
163
163
|
not1mm/plugins/stew_perry_topband.py,sha256=D1hekmMbx-i4BhaP2uzOK3OzaVVMMdgcN3RmfweNqHo,15341
|
164
164
|
not1mm/plugins/weekly_rtty.py,sha256=huZszbZsIh4vF3cP80UyPzy3qxIoHdEiT1b6KuvwgYc,20083
|
165
165
|
not1mm/plugins/winter_field_day.py,sha256=cSCFwy1LOoDDA9Zs1LHRG3r8spDMSKDisxyPxnVrLjw,15149
|
166
|
-
not1mm-24.12.
|
167
|
-
not1mm-24.12.
|
168
|
-
not1mm-24.12.
|
169
|
-
not1mm-24.12.
|
170
|
-
not1mm-24.12.
|
171
|
-
not1mm-24.12.
|
166
|
+
not1mm-24.12.29.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
167
|
+
not1mm-24.12.29.dist-info/METADATA,sha256=qeSNlzyaIxW-VbMNR5UWfFyyxaUTSMSiOPP0i5nJzf0,36585
|
168
|
+
not1mm-24.12.29.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
169
|
+
not1mm-24.12.29.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
170
|
+
not1mm-24.12.29.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
171
|
+
not1mm-24.12.29.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|