not1mm 25.4.11__py3-none-any.whl → 25.4.11.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 +3 -0
- not1mm/lib/cwinterface.py +18 -0
- not1mm/lib/version.py +1 -1
- {not1mm-25.4.11.dist-info → not1mm-25.4.11.1.dist-info}/METADATA +2 -1
- {not1mm-25.4.11.dist-info → not1mm-25.4.11.1.dist-info}/RECORD +9 -9
- {not1mm-25.4.11.dist-info → not1mm-25.4.11.1.dist-info}/WHEEL +0 -0
- {not1mm-25.4.11.dist-info → not1mm-25.4.11.1.dist-info}/entry_points.txt +0 -0
- {not1mm-25.4.11.dist-info → not1mm-25.4.11.1.dist-info}/licenses/LICENSE +0 -0
- {not1mm-25.4.11.dist-info → not1mm-25.4.11.1.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -2111,6 +2111,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2111
2111
|
if self.cw.servertype == 1:
|
2112
2112
|
self.cw.sendcw("\x1b4")
|
2113
2113
|
return
|
2114
|
+
if self.cw.servertype == 2:
|
2115
|
+
self.cw.winkeyer_stop()
|
2116
|
+
return
|
2114
2117
|
if self.rig_control:
|
2115
2118
|
if self.rig_control.online:
|
2116
2119
|
if self.pref.get("cwtype") == 3 and self.rig_control is not None:
|
not1mm/lib/cwinterface.py
CHANGED
@@ -130,3 +130,21 @@ class CW:
|
|
130
130
|
logger.info(
|
131
131
|
"http://%s:%s, xmlrpc Connection Refused", self.host, self.port
|
132
132
|
)
|
133
|
+
|
134
|
+
def winkeyer_stop(self):
|
135
|
+
"""doc"""
|
136
|
+
if not self.__check_sane_ip(self.host):
|
137
|
+
logger.critical(f"Bad IP: {self.host}")
|
138
|
+
return
|
139
|
+
with ServerProxy(f"http://{self.host}:{self.port}") as proxy:
|
140
|
+
try:
|
141
|
+
if "clearbuffer" in self.winkeyer_functions:
|
142
|
+
proxy.clearbuffer()
|
143
|
+
except Error as exception:
|
144
|
+
logger.info(
|
145
|
+
"http://%s:%s, xmlrpc error: %s", self.host, self.port, exception
|
146
|
+
)
|
147
|
+
except ConnectionRefusedError:
|
148
|
+
logger.info(
|
149
|
+
"http://%s:%s, xmlrpc Connection Refused", self.host, self.port
|
150
|
+
)
|
not1mm/lib/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: not1mm
|
3
|
-
Version: 25.4.11
|
3
|
+
Version: 25.4.11.1
|
4
4
|
Summary: NOT1MM Logger
|
5
5
|
Author-email: Michael Bridak <michael.bridak@gmail.com>
|
6
6
|
License: GPL-3.0-or-later
|
@@ -251,6 +251,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
251
251
|
|
252
252
|
## Recent Changes
|
253
253
|
|
254
|
+
- [25-4-11-1] Add clear buffer to winkeyer interface to stop sending.
|
254
255
|
- [25-4-11] Add Scandinavian Activity Contest
|
255
256
|
- [25-4-10-1] Add ARI 40/80 contest. Add Auto CQ visual indicator. Add CTRL-R to toggle Run state.
|
256
257
|
- [25-4-10] Add Auto CQ visual indicator.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=eP0yrfsip0sSPvEHvF4b0eKfNAUFvYef9vstqh3qKiQ,152789
|
3
3
|
not1mm/bandmap.py,sha256=-zu5slsuAm2GmeW8g3yvURzsuQxemwIQfw1HEq8xKHM,29920
|
4
4
|
not1mm/checkwindow.py,sha256=zEHlw40j6Wr3rvKbCQf2lcezCoiZqaBqEvBjQU5aKW0,7630
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -101,7 +101,7 @@ not1mm/data/phonetics/z.wav,sha256=arafCi7fwmBLdVDI-PRyaL4U-03PIQDhffwY5noJ_2c,5
|
|
101
101
|
not1mm/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
102
|
not1mm/lib/about.py,sha256=sWycfGcruN3SaEe4JmaJ61K6D8Itq0WxpUYT-lEcmYM,416
|
103
103
|
not1mm/lib/cat_interface.py,sha256=BJvy-34ZyiN73kKNQcCzE4w6ll2O6Ue0uz01T_3sf1E,25204
|
104
|
-
not1mm/lib/cwinterface.py,sha256=
|
104
|
+
not1mm/lib/cwinterface.py,sha256=o9u46THFzyx_e16oQ03nh9cHoeBiha9xSAB7-vx1Xqc,5173
|
105
105
|
not1mm/lib/database.py,sha256=-9iAPTXDGVUc3OfnZNZCaWRxg3u-qdJyO5jvSvrJQSk,49203
|
106
106
|
not1mm/lib/edit_contact.py,sha256=Ki9bGPpqyQQBB1cU8VIBDCal3lbXeQ6qxhzklmhE2_w,353
|
107
107
|
not1mm/lib/edit_macro.py,sha256=raKWBwsHInj5EUKmvyLQ6gqc3ZFDlstsD3xqoM4PC8E,517
|
@@ -118,7 +118,7 @@ not1mm/lib/plugin_common.py,sha256=D1OBjyLmX7zuSPqgTCmHwXzAKA12J_zTQItvyIem-4Y,1
|
|
118
118
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
119
119
|
not1mm/lib/settings.py,sha256=mXffn8Xaj5KATPQinNBR0V5DbHWQPsRfh24_axWGYuk,15254
|
120
120
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
121
|
-
not1mm/lib/version.py,sha256=
|
121
|
+
not1mm/lib/version.py,sha256=IpJP28rTUkAEBUh68onDcgSWUqk6hY5cdgklwpTe2oM,50
|
122
122
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
123
123
|
not1mm/plugins/10_10_fall_cw.py,sha256=oJh3JKqjOpnWElSlZpiQ631UnaOd8qra5s9bl_QoInk,14783
|
124
124
|
not1mm/plugins/10_10_spring_cw.py,sha256=p7dSDtbFK0e6Xouw2V6swYn3VFVgHKyx4IfRWyBjMZY,14786
|
@@ -178,9 +178,9 @@ not1mm/plugins/stew_perry_topband.py,sha256=3U-Dr28haBTqTaZWLiC1qHQBmLsLENDL-ihy
|
|
178
178
|
not1mm/plugins/ukeidx.py,sha256=0ABGW7_9Ui0Rgr8mkPBxOJokAIerM1a4-HWnl6VsnV8,19105
|
179
179
|
not1mm/plugins/weekly_rtty.py,sha256=C8Xs3Q5UgSYx-mFFar8BVARWtmqlyrbeC98Ubzb4UN8,20128
|
180
180
|
not1mm/plugins/winter_field_day.py,sha256=hmAMgkdqIXtnCNyUp8J9Bb8liN8wj10wps6ROuG-Bok,15284
|
181
|
-
not1mm-25.4.11.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
182
|
-
not1mm-25.4.11.dist-info/METADATA,sha256=
|
183
|
-
not1mm-25.4.11.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
184
|
-
not1mm-25.4.11.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
185
|
-
not1mm-25.4.11.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
186
|
-
not1mm-25.4.11.dist-info/RECORD,,
|
181
|
+
not1mm-25.4.11.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
182
|
+
not1mm-25.4.11.1.dist-info/METADATA,sha256=cj3cHAImRQkRVL1_cAvUePRFGXLQ6WYBo1Jd4LpP4f8,38112
|
183
|
+
not1mm-25.4.11.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
184
|
+
not1mm-25.4.11.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
185
|
+
not1mm-25.4.11.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
186
|
+
not1mm-25.4.11.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|