not1mm 24.9.28.1__py3-none-any.whl → 24.9.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/lib/plugin_common.py +2 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/cq_ww_rtty.py +17 -2
- {not1mm-24.9.28.1.dist-info → not1mm-24.9.29.dist-info}/METADATA +12 -21
- {not1mm-24.9.28.1.dist-info → not1mm-24.9.29.dist-info}/RECORD +9 -9
- {not1mm-24.9.28.1.dist-info → not1mm-24.9.29.dist-info}/LICENSE +0 -0
- {not1mm-24.9.28.1.dist-info → not1mm-24.9.29.dist-info}/WHEEL +0 -0
- {not1mm-24.9.28.1.dist-info → not1mm-24.9.29.dist-info}/entry_points.txt +0 -0
- {not1mm-24.9.28.1.dist-info → not1mm-24.9.29.dist-info}/top_level.txt +0 -0
not1mm/lib/plugin_common.py
CHANGED
@@ -38,6 +38,8 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
|
|
38
38
|
themode = contact.get("Mode", "")
|
39
39
|
if themode == "CWR":
|
40
40
|
themode = "CW"
|
41
|
+
if cabrillo_name in ("CQ-WW-RTTY", "WEEKLY-RTTY"):
|
42
|
+
themode = "RTTY"
|
41
43
|
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
42
44
|
band = get_adif_band(Decimal(str(contact.get("Freq", 0))) / 1000)
|
43
45
|
sentrst = contact.get("SNT", "")
|
not1mm/lib/version.py
CHANGED
not1mm/plugins/cq_ww_rtty.py
CHANGED
@@ -365,8 +365,23 @@ def cabrillo(self):
|
|
365
365
|
themode = contact.get("Mode", "")
|
366
366
|
if themode == "LSB" or themode == "USB":
|
367
367
|
themode = "PH"
|
368
|
-
if themode.strip()
|
368
|
+
if themode.strip() in (
|
369
|
+
"RTTY",
|
370
|
+
"RTTY-R",
|
371
|
+
"LSB-D",
|
372
|
+
"USB-D",
|
373
|
+
"AM-D",
|
374
|
+
"FM-D",
|
375
|
+
"DIGI-U",
|
376
|
+
"DIGI-L",
|
377
|
+
"RTTYR",
|
378
|
+
"PKTLSB",
|
379
|
+
"PKTUSB",
|
380
|
+
):
|
369
381
|
themode = "RY"
|
382
|
+
exchange1 = contact.get('Exchange1', '')
|
383
|
+
if exchange1 == '':
|
384
|
+
exchange1 = "DX"
|
370
385
|
frequency = str(int(contact.get("Freq", "0"))).rjust(5)
|
371
386
|
|
372
387
|
loggeddate = the_date_and_time[:10]
|
@@ -379,7 +394,7 @@ def cabrillo(self):
|
|
379
394
|
f"{contact.get('Call', '').ljust(13)} "
|
380
395
|
f"{str(contact.get('RCV', '')).ljust(3)} "
|
381
396
|
f"{str(contact.get('ZN', '')).zfill(2)}",
|
382
|
-
f"{str(
|
397
|
+
f"{str(exchange1).ljust(2)}",
|
383
398
|
end="\r\n",
|
384
399
|
file=file_descriptor,
|
385
400
|
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.9.
|
3
|
+
Version: 24.9.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
|
@@ -196,32 +196,21 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
196
196
|
- 10 10 Summer Phone
|
197
197
|
- 10 10 Winter Phone
|
198
198
|
- ARRL 10M
|
199
|
-
- ARRL DX CW
|
200
|
-
- ARRL DX SSB
|
199
|
+
- ARRL DX CW, SSB
|
201
200
|
- ARRL Field Day
|
202
|
-
- ARRL Sweepstakes CW
|
203
|
-
- ARRL
|
204
|
-
-
|
205
|
-
-
|
206
|
-
-
|
207
|
-
- CQ 160 CW
|
208
|
-
- CQ 160 SSB
|
209
|
-
- CQ WPX CW
|
210
|
-
- CQ WPX SSB
|
211
|
-
- CQ World Wide CW
|
212
|
-
- CQ World Wide RTTY
|
213
|
-
- CQ World Wide SSB
|
201
|
+
- ARRL Sweepstakes CW, SSB
|
202
|
+
- ARRL VHF January, June, September
|
203
|
+
- CQ 160 CW, SSB
|
204
|
+
- CQ WPX CW, SSB
|
205
|
+
- CQ World Wide CW, RTTY, SSB
|
214
206
|
- CWOps CWT
|
215
207
|
- Helvetia
|
216
|
-
- IARU Fieldday R1 CW
|
217
|
-
- IARU Fieldday R1 SSB
|
208
|
+
- IARU Fieldday R1 CW, SSB
|
218
209
|
- IARU HF
|
219
210
|
- ICWC MST
|
220
|
-
- Japan International DX CW
|
221
|
-
- Japan International DX SSB
|
211
|
+
- Japan International DX CW, SSB
|
222
212
|
- K1USN Slow Speed Test
|
223
|
-
- NAQP CW
|
224
|
-
- NAQP SSB
|
213
|
+
- NAQP CW, SSB
|
225
214
|
- Phone Weekly Test
|
226
215
|
- RAC Canada Day
|
227
216
|
- Stew Perry Topband
|
@@ -230,6 +219,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
230
219
|
|
231
220
|
## Recent Changes
|
232
221
|
|
222
|
+
- [24-9-29] Corrected Cabrillo generation for CQWWRTTY.
|
223
|
+
- [24-9-28-2] Fix Cabrillo and ADIF export for cqwwrtty.
|
233
224
|
- [24-9-28-1] Add RTTY-R, LSB-D, USB-D, AM-D, FM-D, DIGI-U, DIGI-L, RTTYR, PKTLSB, PKTUSB to list of modes that will load in the RTTY/DG Macros.
|
234
225
|
- [24-9-28] Fixed crash with CAT None, Display tweek. Refactored a couple conditionals.
|
235
226
|
- [24-9-25-1] Added WARC and 4M bands.
|
@@ -110,11 +110,11 @@ not1mm/lib/multicast.py,sha256=bnFUNHyy82GmIb3_88EPBVVssj7-HzkJPaH671cK8Qw,3249
|
|
110
110
|
not1mm/lib/n1mm.py,sha256=H54mpgJF0GAmKavM-nb5OAq2SJFWYkux4eMWWiSRxJc,6288
|
111
111
|
not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
112
112
|
not1mm/lib/playsound.py,sha256=kxkcitBFbZCXJ2wxQ1lxg4rBwfxiSpuNpJSXHOPCoXA,9241
|
113
|
-
not1mm/lib/plugin_common.py,sha256=
|
113
|
+
not1mm/lib/plugin_common.py,sha256=TbFUbftjELFt4QRdsjSHbqnXSngZOlSwlCTClqosDXA,9727
|
114
114
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
115
115
|
not1mm/lib/settings.py,sha256=0Su8BQM4haVhc_P74q8UhzRZxtgWhM40UmVtQdMJQeM,10022
|
116
116
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
117
|
-
not1mm/lib/version.py,sha256=
|
117
|
+
not1mm/lib/version.py,sha256=ZPNrAgbRlG8-HZmvqmi3sszmYq_VGWR5V3rNltvB47M,48
|
118
118
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
119
119
|
not1mm/plugins/10_10_fall_cw.py,sha256=IttjX1yy4nDdACGsiYlPteFG8eVseX_WtoFio6bqHE8,10953
|
120
120
|
not1mm/plugins/10_10_spring_cw.py,sha256=ThCptdM3dX4ywhoy2JRcOEyHSqcJolFaT7O_PYzM1Mg,10958
|
@@ -137,7 +137,7 @@ not1mm/plugins/cq_160_ssb.py,sha256=zIwSMAjHSt6W2edrDzVbyTf860JowHoFkU9BKO8Enag,
|
|
137
137
|
not1mm/plugins/cq_wpx_cw.py,sha256=9aNzAR-KhznIwUlxUFjAi_hbiw_6RrCMwUBk9I2f6Hs,14037
|
138
138
|
not1mm/plugins/cq_wpx_ssb.py,sha256=-hGRovqHR9rfOUnG4LPOoABTb4heH8VAX6rYdJbCqsw,12687
|
139
139
|
not1mm/plugins/cq_ww_cw.py,sha256=m4Xkqb_qFyXWEgkxqbanvtiCTvI8NNPKNXzHgFZzhnE,12340
|
140
|
-
not1mm/plugins/cq_ww_rtty.py,sha256=
|
140
|
+
not1mm/plugins/cq_ww_rtty.py,sha256=N0togQbMSpRyRpGoYvnlGC3mpduR82g-D39Swtp5wjI,16772
|
141
141
|
not1mm/plugins/cq_ww_ssb.py,sha256=hZwG88-hPLmwIGXHX_S_ty8Nhn1kIuPjSuTRpCWoN9g,12631
|
142
142
|
not1mm/plugins/cwt.py,sha256=k5yX_2Ma_arVxzDP2E9mwA08LUVFLOk8vUpHwHt2aGA,12777
|
143
143
|
not1mm/plugins/general_logging.py,sha256=n-2es7erqK1ptwq_wwIKIwktptKN7ra2eWjAQlpXUac,3479
|
@@ -156,9 +156,9 @@ not1mm/plugins/ref_cw.py,sha256=aWjHHkqIKutjRUtzh09y5haFfnZK9poRQDWRQMDRxxU,1632
|
|
156
156
|
not1mm/plugins/stew_perry_topband.py,sha256=CKBQbYl4ETxhXJd2dma4fg_C5pag_s7Nf61SCztZtqE,10668
|
157
157
|
not1mm/plugins/weekly_rtty.py,sha256=DQcy3SY0Zn56EdlYGf3NxrRhTnkNa5IqRQPRQdKDSPs,14255
|
158
158
|
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
159
|
-
not1mm-24.9.
|
160
|
-
not1mm-24.9.
|
161
|
-
not1mm-24.9.
|
162
|
-
not1mm-24.9.
|
163
|
-
not1mm-24.9.
|
164
|
-
not1mm-24.9.
|
159
|
+
not1mm-24.9.29.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
160
|
+
not1mm-24.9.29.dist-info/METADATA,sha256=WiIawgfdxqGoUNJBk7CK6a9y9Ygv7qi-FQE3IHrjDAo,31756
|
161
|
+
not1mm-24.9.29.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
162
|
+
not1mm-24.9.29.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
163
|
+
not1mm-24.9.29.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
164
|
+
not1mm-24.9.29.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|