not1mm 24.8.17__py3-none-any.whl → 24.8.20__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 +1 -1
- not1mm/data/new_contest.ui +5 -0
- not1mm/lib/plugin_common.py +19 -12
- not1mm/lib/version.py +1 -2
- not1mm/plugins/k1usn_sst.py +6 -6
- {not1mm-24.8.17.dist-info → not1mm-24.8.20.dist-info}/METADATA +4 -1
- {not1mm-24.8.17.dist-info → not1mm-24.8.20.dist-info}/RECORD +11 -11
- {not1mm-24.8.17.dist-info → not1mm-24.8.20.dist-info}/WHEEL +1 -1
- {not1mm-24.8.17.dist-info → not1mm-24.8.20.dist-info}/LICENSE +0 -0
- {not1mm-24.8.17.dist-info → not1mm-24.8.20.dist-info}/entry_points.txt +0 -0
- {not1mm-24.8.17.dist-info → not1mm-24.8.20.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -526,7 +526,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
526
526
|
self.vfo_window = VfoWindow()
|
527
527
|
self.vfo_window.setObjectName("vfo-window")
|
528
528
|
if os.environ.get("WAYLAND_DISPLAY"):
|
529
|
-
self.
|
529
|
+
self.vfo_window.setFeatures(dockfeatures)
|
530
530
|
self.addDockWidget(Qt.DockWidgetArea.RightDockWidgetArea, self.vfo_window)
|
531
531
|
self.vfo_window.hide()
|
532
532
|
|
not1mm/data/new_contest.ui
CHANGED
not1mm/lib/plugin_common.py
CHANGED
@@ -158,7 +158,9 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
|
|
158
158
|
except TypeError:
|
159
159
|
...
|
160
160
|
|
161
|
+
# SRX STRING, Contest dependent
|
161
162
|
try:
|
163
|
+
# ----------Field Days------------
|
162
164
|
if cabrillo_name in ("WFD", "ARRL-FD"):
|
163
165
|
rcv = (
|
164
166
|
f"{contact.get('Exchange1', '')} {contact.get('Sect', '')}"
|
@@ -169,18 +171,8 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
|
|
169
171
|
end="\r\n",
|
170
172
|
file=file_descriptor,
|
171
173
|
)
|
172
|
-
|
173
|
-
|
174
|
-
f"<SRX_STRING:{len(rcvnr)}>{rcvnr}",
|
175
|
-
end="\r\n",
|
176
|
-
file=file_descriptor,
|
177
|
-
)
|
178
|
-
except TypeError:
|
179
|
-
...
|
180
|
-
|
181
|
-
# cabrillo_name = "CQ-160-CW"
|
182
|
-
try:
|
183
|
-
if cabrillo_name in ("CQ-160-CW", "CQ-160-SSB"):
|
174
|
+
# ------------CQ 160---------------
|
175
|
+
elif cabrillo_name in ("CQ-160-CW", "CQ-160-SSB"):
|
184
176
|
rcv = f"{contact.get('Exchange1', '')}"
|
185
177
|
if len(rcv) > 1:
|
186
178
|
print(
|
@@ -188,6 +180,21 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
|
|
188
180
|
end="\r\n",
|
189
181
|
file=file_descriptor,
|
190
182
|
)
|
183
|
+
# --------------K1USN-SST-----------
|
184
|
+
elif cabrillo_name == "K1USN-SST":
|
185
|
+
rcv = f"{contact.get('Name', '')} {contact.get('Sect', '')}"
|
186
|
+
if len(rcv) > 1:
|
187
|
+
print(
|
188
|
+
f"<SRX_STRING:{len(rcv)}>{rcv.upper()}",
|
189
|
+
end="\r\n",
|
190
|
+
file=file_descriptor,
|
191
|
+
)
|
192
|
+
elif rcvnr != "0":
|
193
|
+
print(
|
194
|
+
f"<SRX_STRING:{len(rcvnr)}>{rcvnr}",
|
195
|
+
end="\r\n",
|
196
|
+
file=file_descriptor,
|
197
|
+
)
|
191
198
|
except TypeError:
|
192
199
|
...
|
193
200
|
|
not1mm/lib/version.py
CHANGED
not1mm/plugins/k1usn_sst.py
CHANGED
@@ -33,11 +33,11 @@ from not1mm.lib.version import __version__
|
|
33
33
|
|
34
34
|
logger = logging.getLogger(__name__)
|
35
35
|
|
36
|
-
EXCHANGE_HINT = "Name
|
36
|
+
EXCHANGE_HINT = "Name + SPC"
|
37
37
|
|
38
|
-
name = "
|
39
|
-
cabrillo_name = "
|
40
|
-
mode = "
|
38
|
+
name = "K1USN SLOW SPEED TEST"
|
39
|
+
cabrillo_name = "K1USN-SST"
|
40
|
+
mode = "CW" # CW SSB BOTH RTTY
|
41
41
|
# columns = [0, 1, 2, 3, 4, 10, 11, 14, 15]
|
42
42
|
columns = [
|
43
43
|
"YYYY-MM-DD HH:MM:SS",
|
@@ -73,8 +73,8 @@ def interface(self):
|
|
73
73
|
namefield.setText("Name")
|
74
74
|
self.field3.setAccessibleName("Name")
|
75
75
|
spc = self.field4.findChild(QtWidgets.QLabel)
|
76
|
-
spc.setText("
|
77
|
-
self.field4.setAccessibleName("
|
76
|
+
spc.setText("SPC")
|
77
|
+
self.field4.setAccessibleName("SPC")
|
78
78
|
|
79
79
|
|
80
80
|
def reset_label(self):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.8.
|
3
|
+
Version: 24.8.20
|
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
|
@@ -213,6 +213,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
213
213
|
- ICWC MST
|
214
214
|
- Japan International DX CW
|
215
215
|
- Japan International DX SSB
|
216
|
+
- K1USN Slow Speed Test
|
216
217
|
- NAQP CW
|
217
218
|
- NAQP SSB
|
218
219
|
- Phone Weekly Test
|
@@ -222,6 +223,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
222
223
|
|
223
224
|
## Recent Changes
|
224
225
|
|
226
|
+
- [24-8-20] Added K1USN Slow Speed Test
|
227
|
+
- [24-8-17-1] Did an oops. Fixed the oops.
|
225
228
|
- [24-8-17] Removed some cruft. Made dockable widgets not floatable since Wayland breaks this.
|
226
229
|
|
227
230
|
See [CHANGELOG.md](CHANGELOG.md) for prior changes.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=Y6uMGEKIF5jvovj02CXlrgr-ThBPQ1F-A5lpWBP5n5k,121455
|
3
3
|
not1mm/bandmap.py,sha256=1b5tXCfGTnpqqn6hPNt7zRA8SmuwSXzSwNHZXhCRt70,31434
|
4
4
|
not1mm/checkwindow.py,sha256=aI-nr8OF90IWV7R_XRdmitvBJ9M85evCs72HoU3Jnvc,10374
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -30,7 +30,7 @@ not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N
|
|
30
30
|
not1mm/data/logwindow.ui,sha256=vfkNdzJgFs3tTOBKLDavF2zVMvNHWOZ82fAErRi6pQY,1436
|
31
31
|
not1mm/data/logwindowx.ui,sha256=9FzDJtLRpagvAWcDjFdB9NnvNZ4bVxdTNHy1Jit2ido,1610
|
32
32
|
not1mm/data/main.ui,sha256=Y8F0gOqMTcsxBmc3QvWkJMxhYFpxUJQl-btGiM1-31w,56506
|
33
|
-
not1mm/data/new_contest.ui,sha256=
|
33
|
+
not1mm/data/new_contest.ui,sha256=ZRuQu9qYDGUTF81uOeiR9KIURPvELt8yxiyV3tt6DdU,22034
|
34
34
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
35
35
|
not1mm/data/opon.ui,sha256=mC4OhoVIfR1H9IqHAKXliPMm8VOVmxSEadpsFQ7XnS4,2247
|
36
36
|
not1mm/data/pickcontest.ui,sha256=_9JFiJw4l-bRRgNDtVg1DpxreylYd_UqEq0wfcr9gJc,1600
|
@@ -105,11 +105,11 @@ not1mm/lib/multicast.py,sha256=bnFUNHyy82GmIb3_88EPBVVssj7-HzkJPaH671cK8Qw,3249
|
|
105
105
|
not1mm/lib/n1mm.py,sha256=H54mpgJF0GAmKavM-nb5OAq2SJFWYkux4eMWWiSRxJc,6288
|
106
106
|
not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
107
107
|
not1mm/lib/playsound.py,sha256=kxkcitBFbZCXJ2wxQ1lxg4rBwfxiSpuNpJSXHOPCoXA,9241
|
108
|
-
not1mm/lib/plugin_common.py,sha256=
|
108
|
+
not1mm/lib/plugin_common.py,sha256=wuG7B0OJx9zYc5Gew3fdt_lNyan8Ul9KNlPQ7PDKGsU,9114
|
109
109
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
110
110
|
not1mm/lib/settings.py,sha256=MWiKXbasaFbzeHTjfzTaTqbCBrIijudP_-0a5jNmUAA,9265
|
111
111
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
112
|
-
not1mm/lib/version.py,sha256=
|
112
|
+
not1mm/lib/version.py,sha256=X0Ug9ODH4KaaGsn2VY3cXPVJ5MAQIn7ob4m613XrOdo,48
|
113
113
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
114
114
|
not1mm/plugins/10_10_fall_cw.py,sha256=IttjX1yy4nDdACGsiYlPteFG8eVseX_WtoFio6bqHE8,10953
|
115
115
|
not1mm/plugins/10_10_spring_cw.py,sha256=ThCptdM3dX4ywhoy2JRcOEyHSqcJolFaT7O_PYzM1Mg,10958
|
@@ -139,15 +139,15 @@ not1mm/plugins/iaru_hf.py,sha256=-ROUo2gBkw3xB89t8bd-4f7_1hROw2VXZXVHLFdB62s,115
|
|
139
139
|
not1mm/plugins/icwc_mst.py,sha256=BaUP2kzrT2D27un_WLGT4HCTTi1e7CNYC4NHcC_9r74,11842
|
140
140
|
not1mm/plugins/jidx_cw.py,sha256=9oV4hDxMiGXa9wuYUNYOCsr-mz8LYB-4WMHBN8u2dFk,12153
|
141
141
|
not1mm/plugins/jidx_ph.py,sha256=T-V7-77SIwu-Jl55VIrbVFZlsBoc97mXtgbdde0GaiQ,11183
|
142
|
-
not1mm/plugins/k1usn_sst.py,sha256=
|
142
|
+
not1mm/plugins/k1usn_sst.py,sha256=2Nu7SRiQeUG3mL9CLKReRLh8vKsNbWcizMgv9MTLkrg,11671
|
143
143
|
not1mm/plugins/naqp_cw.py,sha256=c0MuKqfkIxiYFvv2z7vqrBz3m9FSnSYkPK3f-DdkTIA,12632
|
144
144
|
not1mm/plugins/naqp_ssb.py,sha256=VLWVrSzI0UP1AhSXYn61eZ7or1rz6a_pS_xCKfgS4Jw,11595
|
145
145
|
not1mm/plugins/phone_weekly_test.py,sha256=fLpMe03WB9_KgRl6vMgQQt_aktFdqfNt2Sw81CTRAUs,12325
|
146
146
|
not1mm/plugins/stew_perry_topband.py,sha256=CKBQbYl4ETxhXJd2dma4fg_C5pag_s7Nf61SCztZtqE,10668
|
147
147
|
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
148
|
-
not1mm-24.8.
|
149
|
-
not1mm-24.8.
|
150
|
-
not1mm-24.8.
|
151
|
-
not1mm-24.8.
|
152
|
-
not1mm-24.8.
|
153
|
-
not1mm-24.8.
|
148
|
+
not1mm-24.8.20.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
149
|
+
not1mm-24.8.20.dist-info/METADATA,sha256=DrtQTSEIEKUrrEkEF66gOjp-UayWRuxPAgkjVo-Wce4,29256
|
150
|
+
not1mm-24.8.20.dist-info/WHEEL,sha256=nCVcAvsfA9TDtwGwhYaRrlPhTLV9m-Ga6mdyDtuwK18,91
|
151
|
+
not1mm-24.8.20.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
152
|
+
not1mm-24.8.20.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
153
|
+
not1mm-24.8.20.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|