not1mm 24.9.28__py3-none-any.whl → 24.9.28.2__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 +26 -2
- not1mm/lib/plugin_common.py +2 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/cq_ww_rtty.py +13 -1
- {not1mm-24.9.28.dist-info → not1mm-24.9.28.2.dist-info}/METADATA +3 -1
- {not1mm-24.9.28.dist-info → not1mm-24.9.28.2.dist-info}/RECORD +10 -10
- {not1mm-24.9.28.dist-info → not1mm-24.9.28.2.dist-info}/LICENSE +0 -0
- {not1mm-24.9.28.dist-info → not1mm-24.9.28.2.dist-info}/WHEEL +0 -0
- {not1mm-24.9.28.dist-info → not1mm-24.9.28.2.dist-info}/entry_points.txt +0 -0
- {not1mm-24.9.28.dist-info → not1mm-24.9.28.2.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -3347,7 +3347,19 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3347
3347
|
"""
|
3348
3348
|
if self.radio_state.get("mode") == "CW":
|
3349
3349
|
macro_file = "cwmacros.txt"
|
3350
|
-
elif self.radio_state.get("mode")
|
3350
|
+
elif self.radio_state.get("mode") in (
|
3351
|
+
"RTTY",
|
3352
|
+
"RTTY-R",
|
3353
|
+
"LSB-D",
|
3354
|
+
"USB-D",
|
3355
|
+
"AM-D",
|
3356
|
+
"FM-D",
|
3357
|
+
"DIGI-U",
|
3358
|
+
"DIGI-L",
|
3359
|
+
"RTTYR",
|
3360
|
+
"PKTLSB",
|
3361
|
+
"PKTUSB",
|
3362
|
+
):
|
3351
3363
|
macro_file = "rttymacros.txt"
|
3352
3364
|
else:
|
3353
3365
|
macro_file = "ssbmacros.txt"
|
@@ -3377,7 +3389,19 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3377
3389
|
|
3378
3390
|
if self.radio_state.get("mode") == "CW":
|
3379
3391
|
macro_file = "cwmacros.txt"
|
3380
|
-
elif self.radio_state.get("mode")
|
3392
|
+
elif self.radio_state.get("mode") in (
|
3393
|
+
"RTTY",
|
3394
|
+
"RTTY-R",
|
3395
|
+
"LSB-D",
|
3396
|
+
"USB-D",
|
3397
|
+
"AM-D",
|
3398
|
+
"FM-D",
|
3399
|
+
"DIGI-U",
|
3400
|
+
"DIGI-L",
|
3401
|
+
"RTTYR",
|
3402
|
+
"PKTLSB",
|
3403
|
+
"PKTUSB",
|
3404
|
+
):
|
3381
3405
|
macro_file = "rttymacros.txt"
|
3382
3406
|
else:
|
3383
3407
|
macro_file = "ssbmacros.txt"
|
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,7 +365,19 @@ 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"
|
370
382
|
frequency = str(int(contact.get("Freq", "0"))).rjust(5)
|
371
383
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.9.28
|
3
|
+
Version: 24.9.28.2
|
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
|
@@ -230,6 +230,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
230
230
|
|
231
231
|
## Recent Changes
|
232
232
|
|
233
|
+
- [24-9-28-2] Fix Cabrillo and ADIF export for cqwwrtty.
|
234
|
+
- [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.
|
233
235
|
- [24-9-28] Fixed crash with CAT None, Display tweek. Refactored a couple conditionals.
|
234
236
|
- [24-9-25-1] Added WARC and 4M bands.
|
235
237
|
- [24-9-25] Fix QRZ lookup crash on non-existant call.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=d_h2z7gmEdDwZ1nX1nyxPQvCMqmnKRyPF4PJ34J6CY4,129707
|
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
|
@@ -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=JoQ3r9zY8ZwbmQB7QirxofNNSOuaqXZwzy4bZJ22VU8,50
|
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=W65FsKCKnot1yxc7OPbJ4Al-ELmkz8Z4km04KPKZyDA,16661
|
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.28.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
160
|
-
not1mm-24.9.28.dist-info/METADATA,sha256=
|
161
|
-
not1mm-24.9.28.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
162
|
-
not1mm-24.9.28.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
163
|
-
not1mm-24.9.28.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
164
|
-
not1mm-24.9.28.dist-info/RECORD,,
|
159
|
+
not1mm-24.9.28.2.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
160
|
+
not1mm-24.9.28.2.dist-info/METADATA,sha256=KR58cXMUdoVUlbhk3JowvDpPZNzu6kscnkfXwOwOvMk,31843
|
161
|
+
not1mm-24.9.28.2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
162
|
+
not1mm-24.9.28.2.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
163
|
+
not1mm-24.9.28.2.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
164
|
+
not1mm-24.9.28.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|