not1mm 23.5.26.2__py3-none-any.whl → 23.5.27__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 +5 -5
- not1mm/bandmap.py +1 -1
- not1mm/lib/version.py +1 -1
- not1mm/logwindow.py +1 -0
- not1mm/plugins/10_10_fall_cw.py +3 -1
- not1mm/plugins/10_10_spring_cw.py +2 -1
- not1mm/plugins/10_10_summer_phone.py +2 -1
- not1mm/plugins/10_10_winter_phone.py +3 -2
- not1mm/plugins/arrl_dx_cw.py +2 -2
- not1mm/plugins/arrl_dx_ssb.py +2 -2
- not1mm/plugins/arrl_field_day.py +2 -2
- not1mm/plugins/arrl_ss_cw.py +2 -1
- not1mm/plugins/arrl_ss_phone.py +2 -1
- not1mm/plugins/cq_wpx_cw.py +4 -1
- not1mm/plugins/cq_wpx_ssb.py +2 -1
- not1mm/plugins/cq_ww_cw.py +2 -1
- not1mm/plugins/cq_ww_ssb.py +2 -1
- not1mm/plugins/cwt.py +3 -1
- {not1mm-23.5.26.2.dist-info → not1mm-23.5.27.dist-info}/METADATA +2 -1
- {not1mm-23.5.26.2.dist-info → not1mm-23.5.27.dist-info}/RECORD +24 -24
- {not1mm-23.5.26.2.dist-info → not1mm-23.5.27.dist-info}/LICENSE +0 -0
- {not1mm-23.5.26.2.dist-info → not1mm-23.5.27.dist-info}/WHEEL +0 -0
- {not1mm-23.5.26.2.dist-info → not1mm-23.5.27.dist-info}/entry_points.txt +0 -0
- {not1mm-23.5.26.2.dist-info → not1mm-23.5.27.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -63,10 +63,10 @@ from not1mm.lib.versiontest import VersionTest
|
|
63
63
|
|
64
64
|
# gsettings get org.gnome.desktop.interface color-scheme
|
65
65
|
# os.environ["QT_QPA_PLATFORM"] = "wayland"
|
66
|
-
|
67
|
-
if
|
68
|
-
|
69
|
-
|
66
|
+
# cd = os.environ.get("XDG_CURRENT_DESKTOP", False)
|
67
|
+
# if "GNOME" in cd or "Unity" in cd:
|
68
|
+
# os.environ["QT_QPA_PLATFORMTHEME"] = "gnome"
|
69
|
+
# os.environ["QT_STYLE_OVERRIDE"] = "Adwaita-Dark"
|
70
70
|
|
71
71
|
loader = pkgutil.get_loader("not1mm")
|
72
72
|
WORKING_PATH = os.path.dirname(loader.get_filename())
|
@@ -2125,7 +2125,7 @@ else:
|
|
2125
2125
|
logger.warning("debugging off")
|
2126
2126
|
|
2127
2127
|
app = QtWidgets.QApplication(sys.argv)
|
2128
|
-
|
2128
|
+
app.setStyle("Adwaita-Dark")
|
2129
2129
|
font_path = WORKING_PATH + "/data"
|
2130
2130
|
families = load_fonts_from_dir(os.fspath(font_path))
|
2131
2131
|
logger.info(families)
|
not1mm/bandmap.py
CHANGED
not1mm/lib/version.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
"""It's the version"""
|
2
|
-
__version__ = "23.5.
|
2
|
+
__version__ = "23.5.27"
|
not1mm/logwindow.py
CHANGED
not1mm/plugins/10_10_fall_cw.py
CHANGED
@@ -8,6 +8,8 @@ from pathlib import Path
|
|
8
8
|
from PyQt5 import QtWidgets
|
9
9
|
from not1mm.lib.version import __version__
|
10
10
|
|
11
|
+
from decimal import Decimal
|
12
|
+
|
11
13
|
logger = logging.getLogger("__main__")
|
12
14
|
|
13
15
|
name = "10 10 FALL CW"
|
@@ -183,7 +185,7 @@ def adif(self):
|
|
183
185
|
the_date_and_time = contact.get("TS")
|
184
186
|
# band = contact.get("Band")
|
185
187
|
themode = contact.get("Mode")
|
186
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
188
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
187
189
|
sentrst = contact.get("SNT", "")
|
188
190
|
rcvrst = contact.get("RCV", "")
|
189
191
|
sentnr = str(contact.get("SentNr", ""))
|
@@ -7,6 +7,7 @@ from pathlib import Path
|
|
7
7
|
|
8
8
|
from PyQt5 import QtWidgets
|
9
9
|
from not1mm.lib.version import __version__
|
10
|
+
from decimal import Decimal
|
10
11
|
|
11
12
|
logger = logging.getLogger("__main__")
|
12
13
|
|
@@ -183,7 +184,7 @@ def adif(self):
|
|
183
184
|
the_date_and_time = contact.get("TS")
|
184
185
|
# band = contact.get("Band")
|
185
186
|
themode = contact.get("Mode")
|
186
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
187
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
187
188
|
sentrst = contact.get("SNT", "")
|
188
189
|
rcvrst = contact.get("RCV", "")
|
189
190
|
sentnr = str(contact.get("SentNr", ""))
|
@@ -7,6 +7,7 @@ from pathlib import Path
|
|
7
7
|
|
8
8
|
from PyQt5 import QtWidgets
|
9
9
|
from not1mm.lib.version import __version__
|
10
|
+
from decimal import Decimal
|
10
11
|
|
11
12
|
logger = logging.getLogger("__main__")
|
12
13
|
|
@@ -183,7 +184,7 @@ def adif(self):
|
|
183
184
|
the_date_and_time = contact.get("TS")
|
184
185
|
# band = contact.get("Band")
|
185
186
|
themode = contact.get("Mode")
|
186
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
187
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
187
188
|
sentrst = contact.get("SNT", "")
|
188
189
|
rcvrst = contact.get("RCV", "")
|
189
190
|
sentnr = str(contact.get("SentNr", ""))
|
@@ -4,10 +4,11 @@
|
|
4
4
|
|
5
5
|
import logging
|
6
6
|
from pathlib import Path
|
7
|
-
|
7
|
+
from decimal import Decimal
|
8
8
|
from PyQt5 import QtWidgets
|
9
9
|
from not1mm.lib.version import __version__
|
10
10
|
|
11
|
+
|
11
12
|
logger = logging.getLogger("__main__")
|
12
13
|
|
13
14
|
name = "10 10 WINTER PHONE"
|
@@ -183,7 +184,7 @@ def adif(self):
|
|
183
184
|
the_date_and_time = contact.get("TS")
|
184
185
|
# band = contact.get("Band")
|
185
186
|
themode = contact.get("Mode")
|
186
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
187
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
187
188
|
sentrst = contact.get("SNT", "")
|
188
189
|
rcvrst = contact.get("RCV", "")
|
189
190
|
sentnr = str(contact.get("SentNr", ""))
|
not1mm/plugins/arrl_dx_cw.py
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
import logging
|
6
6
|
from pathlib import Path
|
7
|
-
|
7
|
+
from decimal import Decimal
|
8
8
|
from PyQt5 import QtWidgets
|
9
9
|
from not1mm.lib.version import __version__
|
10
10
|
|
@@ -182,7 +182,7 @@ def adif(self):
|
|
182
182
|
the_date_and_time = contact.get("TS")
|
183
183
|
# band = contact.get("Band")
|
184
184
|
themode = contact.get("Mode")
|
185
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
185
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
186
186
|
sentrst = contact.get("SNT", "")
|
187
187
|
rcvrst = contact.get("RCV", "")
|
188
188
|
sentnr = str(contact.get("SentNr", ""))
|
not1mm/plugins/arrl_dx_ssb.py
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
import logging
|
6
6
|
from pathlib import Path
|
7
|
-
|
7
|
+
from decimal import Decimal
|
8
8
|
from PyQt5 import QtWidgets
|
9
9
|
from not1mm.lib.version import __version__
|
10
10
|
|
@@ -182,7 +182,7 @@ def adif(self):
|
|
182
182
|
the_date_and_time = contact.get("TS")
|
183
183
|
# band = contact.get("Band")
|
184
184
|
themode = contact.get("Mode")
|
185
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
185
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
186
186
|
sentrst = contact.get("SNT", "")
|
187
187
|
rcvrst = contact.get("RCV", "")
|
188
188
|
sentnr = str(contact.get("SentNr", ""))
|
not1mm/plugins/arrl_field_day.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# pylint: disable=invalid-name, unused-argument, unused-variable
|
4
4
|
|
5
5
|
import logging
|
6
|
-
|
6
|
+
from decimal import Decimal
|
7
7
|
from pathlib import Path
|
8
8
|
from PyQt5 import QtWidgets
|
9
9
|
|
@@ -172,7 +172,7 @@ def adif(self):
|
|
172
172
|
the_date_and_time = contact.get("TS")
|
173
173
|
# band = contact.get("Band")
|
174
174
|
themode = contact.get("Mode")
|
175
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
175
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
176
176
|
sentrst = contact.get("SNT", "")
|
177
177
|
rcvrst = contact.get("RCV", "")
|
178
178
|
sentnr = self.contest_settings.get("SentExchange", "")
|
not1mm/plugins/arrl_ss_cw.py
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
# pylint: disable=invalid-name, unused-argument, unused-variable
|
4
4
|
|
5
5
|
import logging
|
6
|
+
from decimal import Decimal
|
6
7
|
from pathlib import Path
|
7
8
|
from PyQt5 import QtWidgets
|
8
9
|
from not1mm.lib.version import __version__
|
@@ -181,7 +182,7 @@ def adif(self):
|
|
181
182
|
the_date_and_time = contact.get("TS")
|
182
183
|
# band = contact.get("Band")
|
183
184
|
themode = contact.get("Mode")
|
184
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
185
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
185
186
|
sentrst = contact.get("SNT", "")
|
186
187
|
rcvrst = contact.get("RCV", "")
|
187
188
|
sentnr = f'{contact.get("SentNr", "")} {self.contest_settings.get("SentExchange","")}'
|
not1mm/plugins/arrl_ss_phone.py
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
# pylint: disable=invalid-name, unused-argument, unused-variable
|
4
4
|
|
5
5
|
import logging
|
6
|
+
from decimal import Decimal
|
6
7
|
from pathlib import Path
|
7
8
|
from PyQt5 import QtWidgets
|
8
9
|
from not1mm.lib.version import __version__
|
@@ -181,7 +182,7 @@ def adif(self):
|
|
181
182
|
the_date_and_time = contact.get("TS")
|
182
183
|
# band = contact.get("Band")
|
183
184
|
themode = contact.get("Mode")
|
184
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
185
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
185
186
|
sentrst = contact.get("SNT", "")
|
186
187
|
rcvrst = contact.get("RCV", "")
|
187
188
|
sentnr = f'{contact.get("SentNr", "")} {self.contest_settings.get("SentExchange","")}'
|
not1mm/plugins/cq_wpx_cw.py
CHANGED
@@ -8,6 +8,8 @@ from PyQt5 import QtWidgets
|
|
8
8
|
|
9
9
|
from not1mm.lib.version import __version__
|
10
10
|
|
11
|
+
from decimal import Decimal
|
12
|
+
|
11
13
|
logger = logging.getLogger("__main__")
|
12
14
|
|
13
15
|
name = "CQ WPX CW"
|
@@ -202,7 +204,8 @@ def adif(self):
|
|
202
204
|
the_date_and_time = contact.get("TS")
|
203
205
|
# band = contact.get("Band")
|
204
206
|
themode = contact.get("Mode")
|
205
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
207
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
208
|
+
# frequency = str(contact.get("Freq", 0) / 1000)
|
206
209
|
sentrst = contact.get("SNT", "")
|
207
210
|
rcvrst = contact.get("RCV", "")
|
208
211
|
sentnr = str(contact.get("SentNr", "59"))
|
not1mm/plugins/cq_wpx_ssb.py
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
# pylint: disable=invalid-name
|
4
4
|
import logging
|
5
|
+
from decimal import Decimal
|
5
6
|
from pathlib import Path
|
6
7
|
|
7
8
|
from PyQt5 import QtWidgets
|
@@ -204,7 +205,7 @@ def adif(self):
|
|
204
205
|
the_date_and_time = contact.get("TS")
|
205
206
|
# band = contact.get("Band")
|
206
207
|
themode = contact.get("Mode")
|
207
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
208
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
208
209
|
sentrst = contact.get("SNT", "")
|
209
210
|
rcvrst = contact.get("RCV", "")
|
210
211
|
sentnr = str(contact.get("SentNr", "59"))
|
not1mm/plugins/cq_ww_cw.py
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
# pylint: disable=invalid-name, unused-argument, unused-variable
|
4
4
|
|
5
5
|
import logging
|
6
|
+
from decimal import Decimal
|
6
7
|
from pathlib import Path
|
7
8
|
|
8
9
|
from PyQt5 import QtWidgets
|
@@ -182,7 +183,7 @@ def adif(self):
|
|
182
183
|
the_date_and_time = contact.get("TS")
|
183
184
|
# band = contact.get("Band")
|
184
185
|
themode = contact.get("Mode")
|
185
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
186
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
186
187
|
sentrst = contact.get("SNT", "")
|
187
188
|
rcvrst = contact.get("RCV", "")
|
188
189
|
sentnr = str(contact.get("SentNr", ""))
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
# pylint: disable=invalid-name, unused-argument, unused-variable
|
4
4
|
|
5
5
|
import logging
|
6
|
+
from decimal import Decimal
|
6
7
|
from pathlib import Path
|
7
8
|
|
8
9
|
from PyQt5 import QtWidgets
|
@@ -182,7 +183,7 @@ def adif(self):
|
|
182
183
|
the_date_and_time = contact.get("TS")
|
183
184
|
# band = contact.get("Band")
|
184
185
|
themode = contact.get("Mode")
|
185
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
186
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
186
187
|
sentrst = contact.get("SNT", "")
|
187
188
|
rcvrst = contact.get("RCV", "")
|
188
189
|
sentnr = str(contact.get("SentNr", ""))
|
not1mm/plugins/cwt.py
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
# pylint: disable=invalid-name, unused-argument, unused-variable
|
4
4
|
|
5
5
|
import logging
|
6
|
+
|
7
|
+
from decimal import Decimal
|
6
8
|
from pathlib import Path
|
7
9
|
|
8
10
|
from PyQt5 import QtWidgets
|
@@ -184,7 +186,7 @@ def adif(self):
|
|
184
186
|
the_date_and_time = contact.get("TS")
|
185
187
|
# band = contact.get("Band")
|
186
188
|
themode = contact.get("Mode")
|
187
|
-
frequency = str(contact.get("Freq", 0) / 1000)
|
189
|
+
frequency = str(Decimal(str(contact.get("Freq", 0))) / 1000)
|
188
190
|
sentrst = contact.get("SNT", "")
|
189
191
|
rcvrst = contact.get("RCV", "")
|
190
192
|
sentnr = str(contact.get("SentNr", "").upper())
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 23.5.
|
3
|
+
Version: 23.5.27
|
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
|
@@ -133,6 +133,7 @@ The current state is "**BETA**". I've used it for A few contests, and was able t
|
|
133
133
|
|
134
134
|
## Changes of note
|
135
135
|
|
136
|
+
- [23-5-27] Fixed frequency in the ADIF output.
|
136
137
|
- [23-5-26] Fixed Dark Mode on Ubuntu. Removed the crappy dark css theme and the code to load it. OOPS. Fixed some stuff.
|
137
138
|
- [23-5-24] Added contact delete and change n1mm packets.
|
138
139
|
- [23-5-23] Reworked N1MM packets. Can now specify multiple destinations for the packets.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
3
|
-
not1mm/bandmap.py,sha256=
|
4
|
-
not1mm/logwindow.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=XHy-QKQ6OlMZi3m0a4gl5a8elmc1WrZqUKZOEA88KzU,87711
|
3
|
+
not1mm/bandmap.py,sha256=BJp3C0yOTrecC3uGcTqXJyVkuQ-G6DduYlbnXgvEGhA,25235
|
4
|
+
not1mm/logwindow.py,sha256=MX-rRcWiNzGWoE0EWZhSTQwelRcwm_ejVkj8ahtg-NE,33732
|
5
5
|
not1mm/data/JetBrainsMono-Regular.ttf,sha256=UOHctAKY_PzCGh7zy-6f6egnCcSK0wzmF0csBqO9lDY,203952
|
6
6
|
not1mm/data/MASTER.SCP,sha256=oqUB3Fvy40vU-ra-R3-cvTeBnZWW04Da1Et011UITbI,542666
|
7
7
|
not1mm/data/about.ui,sha256=7TqvtXFFm0Rmcu0bmLupwpO1CsK8MekfZ09_xn6kZrQ,2067
|
@@ -92,24 +92,24 @@ not1mm/lib/n1mm.py,sha256=O3U2dhOX-_5nBomyuiyfx-_GQk6rj067lwrcC9GtDpQ,5713
|
|
92
92
|
not1mm/lib/new_contest.py,sha256=mHKNCS3iKOKN-bT9d8ZK3JemThOZFQ0ikfUSS0-ZTpY,354
|
93
93
|
not1mm/lib/select_contest.py,sha256=XQdRUkPAIHIMVsilm82M54b_v9yWpYrZ1nfInJrtZoo,363
|
94
94
|
not1mm/lib/settings.py,sha256=tkCWgJ3CpNkGR_IyCTOCIlO6PEPZCShHO9FL-9Wono8,6885
|
95
|
-
not1mm/lib/version.py,sha256=
|
95
|
+
not1mm/lib/version.py,sha256=UMXumrtThTBnUyQI6AcTYGcV78YTdzUAPYqzYxIgRFs,47
|
96
96
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
97
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
98
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
99
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
100
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
97
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=G6DdH7f3Nat9liy5evURJnwnCZefUq4cay-P5-KbuoU,13789
|
98
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=vqHTg7oNVHxNFul_idQZt1-EOrCUodCB42WLbDB1oRA,13794
|
99
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=r-7O4s05PpquTJ-a9wvs0hE4thD8U6q7y20RyQzNp8A,13801
|
100
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=iILOjqbXMkJx-QBLRH5JUF-hxh7pd6GYh3a7H2cdusw,13804
|
101
101
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
103
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
104
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
102
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=gW6Xy4KL2mC_EKsggGb2y71OPQ86ArNYIwaKwxt5s_Y,14590
|
103
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=F2P_WoLKgeGBkmh-OUbSNEIgqERdV7_Q6qwd5xjKOH4,14593
|
104
|
+
not1mm/plugins/arrl_field_day.py,sha256=Mh5-4kid5FZfHFp-Kotbw9anQAiNIXxhE0gmUCxOn1o,13031
|
105
105
|
not1mm/plugins/arrl_rtty_ru.py,sha256=ehbrcbEGPbutduInyQXl_eqCWA61sekrTkvEXIiFlUA,2860
|
106
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
107
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
108
|
-
not1mm/plugins/cq_wpx_cw.py,sha256=
|
109
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
110
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
111
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
112
|
-
not1mm/plugins/cwt.py,sha256=
|
106
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=nBotakE-YM9bE82Kf2DaOBbLEmcRc02P_Kc3QlJC4UY,15983
|
107
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=MCeLWGDRBbkD9Sy0prGsh1GjBon4OFqQeMElxMDdfFw,15988
|
108
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=NfECe2JbIo035vySZo8MIeyhWsmdyCEEJb5N7xAdmuU,15047
|
109
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=qoY5plVZ1G0WQ-9rxqDHQfTJSwp3nhMYzu6EokK-_1U,15068
|
110
|
+
not1mm/plugins/cq_ww_cw.py,sha256=Pct1_cD0Qv9gGHt8WwIk9EXozOy01Tz_I1RFAFK2BYg,13937
|
111
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=MQCNMf19qF5OQUCPsHS7toisO0tK996K80rCPoeHvoI,13941
|
112
|
+
not1mm/plugins/cwt.py,sha256=DtEt1mHaBy-cVViXjSACiYAkN6PZO09UVwoqV80fK3U,14796
|
113
113
|
not1mm/plugins/general_logging.py,sha256=DgqlvUwFoiPP1eW947GBbrGRzWK01iVI1Bp8f9cIeDk,7453
|
114
114
|
not1mm/plugins/jidx_cw.py,sha256=kuk6B_Fc21ElnFEkXk5PWgONFtVWu9rajyoGkyjYsKg,13854
|
115
115
|
not1mm/plugins/jidx_ph.py,sha256=nM5iPKowCm7jOszPuAmNXB9gAC7VNtZ4N6g9MAdYcdk,13855
|
@@ -119,9 +119,9 @@ not1mm/testing/flrigclient.py,sha256=24r_0HqpoTjyJ6Bqg_HIC8Nn9wjtnwwWQ26I7UprwgA
|
|
119
119
|
not1mm/testing/n1mm_listener.py,sha256=UD-qyKEnppQua330WEFKMvMJaNjnYKi7dDuX_RGB5lQ,1099
|
120
120
|
not1mm/testing/test.py,sha256=wGblvMlyOCVkEiHbxE6wvLsorim15ehL72_EZLQeWkk,1660
|
121
121
|
testing/test.py,sha256=5AxvNGijTzD-OwzbNWpPgk2tqFOdjsDHWrU8nskKDwg,1909
|
122
|
-
not1mm-23.5.
|
123
|
-
not1mm-23.5.
|
124
|
-
not1mm-23.5.
|
125
|
-
not1mm-23.5.
|
126
|
-
not1mm-23.5.
|
127
|
-
not1mm-23.5.
|
122
|
+
not1mm-23.5.27.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
123
|
+
not1mm-23.5.27.dist-info/METADATA,sha256=qCd5ble19NlaijceLUj6Xn92I265ONFcwMInQrT_22c,29228
|
124
|
+
not1mm-23.5.27.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
125
|
+
not1mm-23.5.27.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
126
|
+
not1mm-23.5.27.dist-info/top_level.txt,sha256=-NwUrh4k1kzpOvf720xYWSTKSlr-zNSIz3D_eplrxLs,15
|
127
|
+
not1mm-23.5.27.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|