not1mm 24.9.12__py3-none-any.whl → 24.9.15__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/version.py +1 -1
- not1mm/lookupservice.py +20 -18
- not1mm/plugins/arrl_vhf_jan.py +2 -2
- not1mm/plugins/arrl_vhf_jun.py +2 -2
- not1mm/plugins/arrl_vhf_sep.py +2 -2
- {not1mm-24.9.12.dist-info → not1mm-24.9.15.dist-info}/METADATA +6 -4
- {not1mm-24.9.12.dist-info → not1mm-24.9.15.dist-info}/RECORD +11 -11
- {not1mm-24.9.12.dist-info → not1mm-24.9.15.dist-info}/WHEEL +1 -1
- {not1mm-24.9.12.dist-info → not1mm-24.9.15.dist-info}/LICENSE +0 -0
- {not1mm-24.9.12.dist-info → not1mm-24.9.15.dist-info}/entry_points.txt +0 -0
- {not1mm-24.9.12.dist-info → not1mm-24.9.15.dist-info}/top_level.txt +0 -0
not1mm/lib/version.py
CHANGED
not1mm/lookupservice.py
CHANGED
@@ -33,26 +33,28 @@ class LookupService(QDockWidget):
|
|
33
33
|
super().__init__()
|
34
34
|
self._udpwatch = None
|
35
35
|
|
36
|
-
self.settings = self.get_settings()
|
37
36
|
self.look_up = None
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
37
|
+
self.settings = self.get_settings()
|
38
|
+
if self.settings:
|
39
|
+
|
40
|
+
if self.settings.get("useqrz"):
|
41
|
+
self.look_up = QRZlookup(
|
42
|
+
self.settings.get("lookupusername"),
|
43
|
+
self.settings.get("lookuppassword"),
|
44
|
+
)
|
45
|
+
|
46
|
+
if self.settings.get("usehamqth"):
|
47
|
+
self.look_up = HamQTH(
|
48
|
+
self.settings.get("lookupusername"),
|
49
|
+
self.settings.get("lookuppassword"),
|
50
|
+
)
|
51
|
+
|
52
|
+
self.multicast_interface = Multicast(
|
53
|
+
self.settings.get("multicast_group", "239.1.1.1"),
|
54
|
+
self.settings.get("multicast_port", 2239),
|
55
|
+
self.settings.get("interface_ip", "0.0.0.0"),
|
48
56
|
)
|
49
|
-
|
50
|
-
self.multicast_interface = Multicast(
|
51
|
-
self.settings.get("multicast_group", "239.1.1.1"),
|
52
|
-
self.settings.get("multicast_port", 2239),
|
53
|
-
self.settings.get("interface_ip", "0.0.0.0"),
|
54
|
-
)
|
55
|
-
self.multicast_interface.ready_read_connect(self.watch_udp)
|
57
|
+
self.multicast_interface.ready_read_connect(self.watch_udp)
|
56
58
|
|
57
59
|
def get_settings(self) -> dict:
|
58
60
|
"""Get the settings."""
|
not1mm/plugins/arrl_vhf_jan.py
CHANGED
@@ -403,10 +403,10 @@ def cabrillo(self):
|
|
403
403
|
print(
|
404
404
|
f"QSO: {frequency} {themode} {loggeddate} {loggedtime} "
|
405
405
|
f"{contact.get('StationPrefix', '').ljust(13)} "
|
406
|
-
f"{str(contact.get('SNT', '')).ljust(3)} "
|
406
|
+
# f"{str(contact.get('SNT', '')).ljust(3)} "
|
407
407
|
f"{str(contact.get('SentNr', '')).ljust(6)} "
|
408
408
|
f"{contact.get('Call', '').ljust(13)} "
|
409
|
-
f"{str(contact.get('RCV', '')).ljust(3)} "
|
409
|
+
# f"{str(contact.get('RCV', '')).ljust(3)} "
|
410
410
|
f"{str(contact.get('NR', '')).ljust(6)}",
|
411
411
|
end="\r\n",
|
412
412
|
file=file_descriptor,
|
not1mm/plugins/arrl_vhf_jun.py
CHANGED
@@ -370,10 +370,10 @@ def cabrillo(self):
|
|
370
370
|
print(
|
371
371
|
f"QSO: {frequency} {themode} {loggeddate} {loggedtime} "
|
372
372
|
f"{contact.get('StationPrefix', '').ljust(13)} "
|
373
|
-
f"{str(contact.get('SNT', '')).ljust(3)} "
|
373
|
+
# f"{str(contact.get('SNT', '')).ljust(3)} "
|
374
374
|
f"{str(contact.get('SentNr', '')).ljust(6)} "
|
375
375
|
f"{contact.get('Call', '').ljust(13)} "
|
376
|
-
f"{str(contact.get('RCV', '')).ljust(3)} "
|
376
|
+
# f"{str(contact.get('RCV', '')).ljust(3)} "
|
377
377
|
f"{str(contact.get('NR', '')).ljust(6)}",
|
378
378
|
end="\r\n",
|
379
379
|
file=file_descriptor,
|
not1mm/plugins/arrl_vhf_sep.py
CHANGED
@@ -370,10 +370,10 @@ def cabrillo(self):
|
|
370
370
|
print(
|
371
371
|
f"QSO: {frequency} {themode} {loggeddate} {loggedtime} "
|
372
372
|
f"{contact.get('StationPrefix', '').ljust(13)} "
|
373
|
-
f"{str(contact.get('SNT', '')).ljust(3)} "
|
373
|
+
# f"{str(contact.get('SNT', '')).ljust(3)} "
|
374
374
|
f"{str(contact.get('SentNr', '')).ljust(6)} "
|
375
375
|
f"{contact.get('Call', '').ljust(13)} "
|
376
|
-
f"{str(contact.get('RCV', '')).ljust(3)} "
|
376
|
+
# f"{str(contact.get('RCV', '')).ljust(3)} "
|
377
377
|
f"{str(contact.get('NR', '')).ljust(6)}",
|
378
378
|
end="\r\n",
|
379
379
|
file=file_descriptor,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.9.
|
3
|
+
Version: 24.9.15
|
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
|
@@ -100,7 +100,7 @@ Requires-Dist: Levenshtein
|
|
100
100
|
- [Cluster](#cluster)
|
101
101
|
- [N1MM Packets](#n1mm-packets)
|
102
102
|
- [Bands](#bands)
|
103
|
-
- [Logging WSJT-X FT8/FT4 and FLDIGI RTTY contacts](#logging-wsjt-x-
|
103
|
+
- [Logging WSJT-X FT8/FT4/ETC and FLDIGI RTTY contacts](#logging-wsjt-x-ft8ft4etc-and-fldigi-rtty-contacts)
|
104
104
|
- [Sending CW](#sending-cw)
|
105
105
|
- [Editing macro keys](#editing-macro-keys)
|
106
106
|
- [Macro substitutions](#macro-substitutions)
|
@@ -229,6 +229,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
229
229
|
|
230
230
|
## Recent Changes
|
231
231
|
|
232
|
+
- [24-9-15] Fixing an ARRL VHF Cabrillo format error.
|
233
|
+
- [24-9-14] BugFix. Starting lookups fail init if no settings.
|
232
234
|
- [24-9-12] Fixed WSJT-X MFSK submodes FT4 Q65.
|
233
235
|
- [24-9-11-2] Removed all the sketchy threaded call lookups. They're now implimented as a multicast service.
|
234
236
|
- [24-9-11-1] Fixed high clock cycle usage from the FlDigiWatcher class.
|
@@ -617,9 +619,9 @@ appear. Those without will not.
|
|
617
619
|
|
618
620
|

|
619
621
|
|
620
|
-
## Logging WSJT-X FT8/FT4 and FLDIGI RTTY contacts
|
622
|
+
## Logging WSJT-X FT8/FT4/ETC and FLDIGI RTTY contacts
|
621
623
|
|
622
|
-
**
|
624
|
+
**Digital modes only working for ARRL Field Day, ARRL VHF, and Weekly RTTY**
|
623
625
|
|
624
626
|
not1mm listens for WSJT-X UDP traffic on the Multicast address 224.0.0.1:2237.
|
625
627
|
No setup is needed to be done on not1mm's side. That's good because I'm lazy.
|
@@ -4,7 +4,7 @@ not1mm/bandmap.py,sha256=1b5tXCfGTnpqqn6hPNt7zRA8SmuwSXzSwNHZXhCRt70,31434
|
|
4
4
|
not1mm/checkwindow.py,sha256=aI-nr8OF90IWV7R_XRdmitvBJ9M85evCs72HoU3Jnvc,10374
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
6
6
|
not1mm/logwindow.py,sha256=pwhiwolmGnW01LF4sjlu3ywLsgfxL6KuGuKuYKYmgeY,44403
|
7
|
-
not1mm/lookupservice.py,sha256=
|
7
|
+
not1mm/lookupservice.py,sha256=jsFg5tsB9cVnahLP-hI3CMwbjlEpMx944O8RLWntAy4,3342
|
8
8
|
not1mm/radio.py,sha256=eiB04LPMPBeMrBRI021Z7VXth66EOYb0Ujh11T9877c,3362
|
9
9
|
not1mm/test.py,sha256=xbGtnhdoX16C6nrqzLDydqgQtiWxYWmZ2NN74DF-VLM,1736
|
10
10
|
not1mm/vfo.py,sha256=IvmUQYMIPzLJw_BHQGis4J_IEW-vlBtdfxZLXPh7OzI,12335
|
@@ -112,7 +112,7 @@ not1mm/lib/plugin_common.py,sha256=yefvcX61fXSjs__OPssJqVlZyg1AlcV1VDkl2MQP6kk,9
|
|
112
112
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
113
113
|
not1mm/lib/settings.py,sha256=MWiKXbasaFbzeHTjfzTaTqbCBrIijudP_-0a5jNmUAA,9265
|
114
114
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
115
|
-
not1mm/lib/version.py,sha256
|
115
|
+
not1mm/lib/version.py,sha256=-aukLhnRRNWavbz4jSjIhhV8_81CY_gioTr3iUIdftY,48
|
116
116
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
117
117
|
not1mm/plugins/10_10_fall_cw.py,sha256=IttjX1yy4nDdACGsiYlPteFG8eVseX_WtoFio6bqHE8,10953
|
118
118
|
not1mm/plugins/10_10_spring_cw.py,sha256=ThCptdM3dX4ywhoy2JRcOEyHSqcJolFaT7O_PYzM1Mg,10958
|
@@ -126,9 +126,9 @@ not1mm/plugins/arrl_field_day.py,sha256=pivtEK5j9sLpta12_wuUQYvs7MuiP3JfhlO-AOID
|
|
126
126
|
not1mm/plugins/arrl_rtty_ru.py,sha256=hKUS4isjdXo3EYxQrsqsDupPp2chW8fpoWj0T1pTgJ4,7994
|
127
127
|
not1mm/plugins/arrl_ss_cw.py,sha256=4yN68xZMuJRaSUfdiY4hafC07A3lifl5q6DEUZ-oYPQ,13080
|
128
128
|
not1mm/plugins/arrl_ss_phone.py,sha256=Yzc5sNjrY8TlnozbYF6k8hbEamyDuUAD_3-BNqHgXqY,13068
|
129
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
130
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
131
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
129
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=St_QvYS5AKFUNxtvpU-KlJ3C-xGQi1idFHggmIjnwVc,15717
|
130
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=9KPILzUD9NYVuXwazhQLCYnGKnoiJDf16omKR5UVflE,14809
|
131
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=3f5mmXuoe7jt6A8FXFBwentO3lyGMCHSgtkiDcX4Uu4,14809
|
132
132
|
not1mm/plugins/canada_day.py,sha256=OVpcCl1Chse_zLHf6PayTrgawWM4W-pmrTw40Al-o9s,11998
|
133
133
|
not1mm/plugins/cq_160_cw.py,sha256=5s6rIZdJEnmWe1SI06BEyz7p5vP0N2n9mI4l_mZ0icw,14139
|
134
134
|
not1mm/plugins/cq_160_ssb.py,sha256=zIwSMAjHSt6W2edrDzVbyTf860JowHoFkU9BKO8Enag,14182
|
@@ -153,9 +153,9 @@ not1mm/plugins/ref_cw.py,sha256=aWjHHkqIKutjRUtzh09y5haFfnZK9poRQDWRQMDRxxU,1632
|
|
153
153
|
not1mm/plugins/stew_perry_topband.py,sha256=CKBQbYl4ETxhXJd2dma4fg_C5pag_s7Nf61SCztZtqE,10668
|
154
154
|
not1mm/plugins/weekly_rtty.py,sha256=DQcy3SY0Zn56EdlYGf3NxrRhTnkNa5IqRQPRQdKDSPs,14255
|
155
155
|
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
156
|
-
not1mm-24.9.
|
157
|
-
not1mm-24.9.
|
158
|
-
not1mm-24.9.
|
159
|
-
not1mm-24.9.
|
160
|
-
not1mm-24.9.
|
161
|
-
not1mm-24.9.
|
156
|
+
not1mm-24.9.15.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
157
|
+
not1mm-24.9.15.dist-info/METADATA,sha256=JbPbYy4NHrZdrJq0ZkFyX3g9NnUHjn-ZsgdbQMHI7QU,31207
|
158
|
+
not1mm-24.9.15.dist-info/WHEEL,sha256=5Mi1sN9lKoFv_gxcPtisEVrJZihrm_beibeg5R6xb4I,91
|
159
|
+
not1mm-24.9.15.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
160
|
+
not1mm-24.9.15.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
161
|
+
not1mm-24.9.15.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|