not1mm 24.9.12__py3-none-any.whl → 24.9.14__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-24.9.12.dist-info → not1mm-24.9.14.dist-info}/METADATA +5 -4
- {not1mm-24.9.12.dist-info → not1mm-24.9.14.dist-info}/RECORD +8 -8
- {not1mm-24.9.12.dist-info → not1mm-24.9.14.dist-info}/LICENSE +0 -0
- {not1mm-24.9.12.dist-info → not1mm-24.9.14.dist-info}/WHEEL +0 -0
- {not1mm-24.9.12.dist-info → not1mm-24.9.14.dist-info}/entry_points.txt +0 -0
- {not1mm-24.9.12.dist-info → not1mm-24.9.14.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."""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.9.
|
3
|
+
Version: 24.9.14
|
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,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
229
229
|
|
230
230
|
## Recent Changes
|
231
231
|
|
232
|
+
- [24-9-14] BugFix. Starting lookups fail init if no settings.
|
232
233
|
- [24-9-12] Fixed WSJT-X MFSK submodes FT4 Q65.
|
233
234
|
- [24-9-11-2] Removed all the sketchy threaded call lookups. They're now implimented as a multicast service.
|
234
235
|
- [24-9-11-1] Fixed high clock cycle usage from the FlDigiWatcher class.
|
@@ -617,9 +618,9 @@ appear. Those without will not.
|
|
617
618
|
|
618
619
|

|
619
620
|
|
620
|
-
## Logging WSJT-X FT8/FT4 and FLDIGI RTTY contacts
|
621
|
+
## Logging WSJT-X FT8/FT4/ETC and FLDIGI RTTY contacts
|
621
622
|
|
622
|
-
**
|
623
|
+
**Digital modes only working for ARRL Field Day, ARRL VHF, and Weekly RTTY**
|
623
624
|
|
624
625
|
not1mm listens for WSJT-X UDP traffic on the Multicast address 224.0.0.1:2237.
|
625
626
|
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=BOk8oAonLhl-xPV1q2O3mUJxQBFLOeukPME6hhUbDjk,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
|
@@ -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.14.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
157
|
+
not1mm-24.9.14.dist-info/METADATA,sha256=nSqE0S5eGnUfs4jluJUyAkQJ0VAVUfZPnE39s3G_naY,31153
|
158
|
+
not1mm-24.9.14.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
159
|
+
not1mm-24.9.14.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
160
|
+
not1mm-24.9.14.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
161
|
+
not1mm-24.9.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|