not1mm 24.4.1.2__py3-none-any.whl → 24.4.2.1__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 +137 -90
- not1mm/bandmap.py +50 -23
- not1mm/checkwindow.py +45 -21
- not1mm/data/checkwindow.ui +1 -1
- not1mm/data/cty.json +1 -1
- not1mm/data/vfo.ui +18 -0
- not1mm/lib/about.py +1 -1
- not1mm/lib/edit_contact.py +1 -1
- not1mm/lib/edit_macro.py +1 -1
- not1mm/lib/edit_opon.py +1 -1
- not1mm/lib/edit_station.py +2 -1
- not1mm/lib/lookup.py +6 -0
- not1mm/lib/multicast.py +7 -5
- not1mm/lib/new_contest.py +1 -1
- not1mm/lib/select_contest.py +1 -1
- not1mm/lib/settings.py +1 -1
- not1mm/lib/version.py +1 -1
- not1mm/logwindow.py +59 -23
- not1mm/plugins/10_10_fall_cw.py +1 -1
- not1mm/plugins/10_10_spring_cw.py +1 -2
- not1mm/plugins/10_10_summer_phone.py +1 -1
- not1mm/plugins/10_10_winter_phone.py +1 -1
- not1mm/plugins/arrl_10m.py +1 -1
- not1mm/plugins/arrl_dx_cw.py +1 -1
- not1mm/plugins/arrl_dx_ssb.py +1 -1
- not1mm/plugins/arrl_field_day.py +1 -1
- not1mm/plugins/arrl_rtty_ru.py +1 -1
- not1mm/plugins/arrl_ss_cw.py +3 -3
- not1mm/plugins/arrl_ss_phone.py +3 -3
- not1mm/plugins/arrl_vhf_jan.py +1 -1
- not1mm/plugins/arrl_vhf_jun.py +1 -1
- not1mm/plugins/arrl_vhf_sep.py +1 -1
- not1mm/plugins/canada_day.py +1 -1
- not1mm/plugins/cq_160_cw.py +1 -1
- not1mm/plugins/cq_160_ssb.py +1 -1
- not1mm/plugins/cq_wpx_cw.py +1 -1
- not1mm/plugins/cq_wpx_ssb.py +1 -1
- not1mm/plugins/cq_ww_cw.py +1 -1
- not1mm/plugins/cq_ww_ssb.py +1 -1
- not1mm/plugins/cwt.py +1 -1
- not1mm/plugins/general_logging.py +1 -1
- not1mm/plugins/iaru_hf.py +1 -1
- not1mm/plugins/jidx_cw.py +1 -1
- not1mm/plugins/jidx_ph.py +1 -1
- not1mm/plugins/naqp_cw.py +1 -1
- not1mm/plugins/naqp_ssb.py +1 -1
- not1mm/plugins/phone_weekly_test.py +1 -1
- not1mm/plugins/stew_perry_topband.py +1 -1
- not1mm/plugins/winter_field_day.py +1 -1
- not1mm/vfo.py +55 -25
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.1.dist-info}/METADATA +9 -8
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.1.dist-info}/RECORD +56 -56
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.1.dist-info}/LICENSE +0 -0
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.1.dist-info}/WHEEL +0 -0
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.1.dist-info}/entry_points.txt +0 -0
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.1.dist-info}/top_level.txt +0 -0
@@ -32,7 +32,7 @@ import datetime
|
|
32
32
|
import logging
|
33
33
|
|
34
34
|
from pathlib import Path
|
35
|
-
from
|
35
|
+
from PyQt6 import QtWidgets
|
36
36
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
37
37
|
from not1mm.lib.version import __version__
|
38
38
|
from not1mm.lib.ham_utility import distance
|
not1mm/vfo.py
CHANGED
@@ -14,9 +14,10 @@ import platform
|
|
14
14
|
from json import loads, JSONDecodeError
|
15
15
|
|
16
16
|
import serial
|
17
|
-
from
|
18
|
-
from
|
19
|
-
from
|
17
|
+
from PyQt6 import QtCore, QtGui, QtWidgets, uic
|
18
|
+
from PyQt6.QtCore import QTimer
|
19
|
+
from PyQt6.QtWidgets import QDockWidget
|
20
|
+
from PyQt6.QtGui import QColorConstants
|
20
21
|
|
21
22
|
import not1mm.fsutils as fsutils
|
22
23
|
from not1mm.lib.cat_interface import CAT
|
@@ -35,14 +36,22 @@ class VfoWindow(QDockWidget):
|
|
35
36
|
multicast_interface = None
|
36
37
|
current_palette = None
|
37
38
|
|
38
|
-
def __init__(self
|
39
|
-
super().__init__(
|
39
|
+
def __init__(self):
|
40
|
+
super().__init__()
|
40
41
|
uic.loadUi(fsutils.APP_DATA_PATH / "vfo.ui", self)
|
42
|
+
|
43
|
+
self.setFeatures(
|
44
|
+
QDockWidget.DockWidgetFeature.DockWidgetMovable
|
45
|
+
| QDockWidget.DockWidgetFeature.DockWidgetFloatable
|
46
|
+
| QDockWidget.DockWidgetFeature.DockWidgetClosable
|
47
|
+
)
|
48
|
+
self.setAllowedAreas(QtCore.Qt.DockWidgetArea.AllDockWidgetAreas)
|
49
|
+
self.setWindowTitle("VFO Window")
|
50
|
+
|
41
51
|
self.rig_control = None
|
42
52
|
self.timer = QTimer()
|
43
53
|
self.timer.timeout.connect(self.getwaiting)
|
44
54
|
self.load_pref()
|
45
|
-
self.setWindowTitle("VFO Window")
|
46
55
|
self.lcdNumber.display(0)
|
47
56
|
self.pico = None
|
48
57
|
self._udpwatch = None
|
@@ -55,7 +64,6 @@ class VfoWindow(QDockWidget):
|
|
55
64
|
self.multicast_interface.ready_read_connect(self.watch_udp)
|
56
65
|
|
57
66
|
self.setup_serial()
|
58
|
-
# app.processEvents()
|
59
67
|
self.poll_rig_timer = QtCore.QTimer()
|
60
68
|
self.poll_rig_timer.timeout.connect(self.poll_radio)
|
61
69
|
self.poll_rig_timer.start(500)
|
@@ -66,29 +74,51 @@ class VfoWindow(QDockWidget):
|
|
66
74
|
if dark:
|
67
75
|
darkPalette = QtGui.QPalette()
|
68
76
|
darkColor = QtGui.QColor(56, 56, 56)
|
77
|
+
self.text_color = QColorConstants.White
|
69
78
|
disabledColor = QtGui.QColor(127, 127, 127)
|
70
|
-
darkPalette.setColor(QtGui.QPalette.Window, darkColor)
|
71
|
-
darkPalette.setColor(QtGui.QPalette.WindowText, Qt.white)
|
72
|
-
darkPalette.setColor(QtGui.QPalette.Base, QtGui.QColor(45, 45, 45))
|
73
|
-
darkPalette.setColor(QtGui.QPalette.AlternateBase, darkColor)
|
74
|
-
darkPalette.setColor(QtGui.QPalette.Text, Qt.white)
|
79
|
+
darkPalette.setColor(QtGui.QPalette.ColorRole.Window, darkColor)
|
75
80
|
darkPalette.setColor(
|
76
|
-
QtGui.QPalette.
|
81
|
+
QtGui.QPalette.ColorRole.WindowText, QColorConstants.White
|
77
82
|
)
|
78
|
-
darkPalette.setColor(QtGui.QPalette.Button, darkColor)
|
79
|
-
darkPalette.setColor(QtGui.QPalette.ButtonText, Qt.white)
|
80
83
|
darkPalette.setColor(
|
81
|
-
QtGui.QPalette.
|
84
|
+
QtGui.QPalette.ColorRole.Base, QtGui.QColor(45, 45, 45)
|
82
85
|
)
|
83
|
-
darkPalette.setColor(QtGui.QPalette.
|
84
|
-
darkPalette.setColor(QtGui.QPalette.
|
85
|
-
darkPalette.setColor(QtGui.QPalette.Highlight, QtGui.QColor(42, 130, 218))
|
86
|
-
darkPalette.setColor(QtGui.QPalette.HighlightedText, Qt.black)
|
86
|
+
darkPalette.setColor(QtGui.QPalette.ColorRole.AlternateBase, darkColor)
|
87
|
+
darkPalette.setColor(QtGui.QPalette.ColorRole.Text, QColorConstants.White)
|
87
88
|
darkPalette.setColor(
|
88
|
-
QtGui.QPalette.Disabled,
|
89
|
+
QtGui.QPalette.ColorGroup.Disabled,
|
90
|
+
QtGui.QPalette.ColorRole.Text,
|
91
|
+
disabledColor,
|
89
92
|
)
|
90
|
-
|
93
|
+
darkPalette.setColor(QtGui.QPalette.ColorRole.Button, darkColor)
|
94
|
+
darkPalette.setColor(
|
95
|
+
QtGui.QPalette.ColorRole.ButtonText, QColorConstants.White
|
96
|
+
)
|
97
|
+
darkPalette.setColor(
|
98
|
+
QtGui.QPalette.ColorGroup.Disabled,
|
99
|
+
QtGui.QPalette.ColorRole.ButtonText,
|
100
|
+
disabledColor,
|
101
|
+
)
|
102
|
+
darkPalette.setColor(
|
103
|
+
QtGui.QPalette.ColorRole.BrightText, QColorConstants.Red
|
104
|
+
)
|
105
|
+
darkPalette.setColor(
|
106
|
+
QtGui.QPalette.ColorRole.Link, QtGui.QColor(42, 130, 218)
|
107
|
+
)
|
108
|
+
darkPalette.setColor(
|
109
|
+
QtGui.QPalette.ColorRole.Highlight, QtGui.QColor(42, 130, 218)
|
110
|
+
)
|
111
|
+
darkPalette.setColor(
|
112
|
+
QtGui.QPalette.ColorRole.HighlightedText, QColorConstants.Black
|
113
|
+
)
|
114
|
+
darkPalette.setColor(
|
115
|
+
QtGui.QPalette.ColorGroup.Disabled,
|
116
|
+
QtGui.QPalette.ColorRole.HighlightedText,
|
117
|
+
disabledColor,
|
118
|
+
)
|
119
|
+
|
91
120
|
self.setPalette(darkPalette)
|
121
|
+
self.current_palette = darkPalette
|
92
122
|
else:
|
93
123
|
palette = self.style().standardPalette()
|
94
124
|
self.current_palette = palette
|
@@ -299,8 +329,8 @@ class VfoWindow(QDockWidget):
|
|
299
329
|
"""
|
300
330
|
message_box = QtWidgets.QMessageBox()
|
301
331
|
message_box.setPalette(self.current_palette)
|
302
|
-
message_box.setIcon(QtWidgets.QMessageBox.Information)
|
332
|
+
message_box.setIcon(QtWidgets.QMessageBox.Icon.Information)
|
303
333
|
message_box.setText(message)
|
304
334
|
message_box.setWindowTitle("Information")
|
305
|
-
message_box.setStandardButtons(QtWidgets.QMessageBox.Ok)
|
306
|
-
_ = message_box.
|
335
|
+
message_box.setStandardButtons(QtWidgets.QMessageBox.StandardButton.Ok)
|
336
|
+
_ = message_box.exec()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.4.1
|
3
|
+
Version: 24.4.2.1
|
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
|
@@ -16,7 +16,7 @@ Classifier: Topic :: Communications :: Ham Radio
|
|
16
16
|
Requires-Python: >=3.9
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
License-File: LICENSE
|
19
|
-
Requires-Dist:
|
19
|
+
Requires-Dist: PyQt6
|
20
20
|
Requires-Dist: requests
|
21
21
|
Requires-Dist: dicttoxml
|
22
22
|
Requires-Dist: xmltodict
|
@@ -32,17 +32,17 @@ Requires-Dist: Levenshtein
|
|
32
32
|
|
33
33
|
# Not1MM
|
34
34
|
|
35
|
-
|
35
|
+

|
36
|
+
|
37
|
+
The worlds #1 unfinished contest logger <sup>*According to my daughter Corinna.<sup>
|
36
38
|
|
37
39
|
[](https://pypi.org/project/not1mm/)
|
38
40
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
39
41
|
[](https://www.python.org/downloads/)
|
40
|
-
[](https://pypi.org/project/PyQt6/)
|
41
43
|
[](https://xkcd.com/1695/)
|
42
44
|
[](https://pypi.org/project/not1mm/)
|
43
45
|
|
44
|
-

|
45
|
-
|
46
46
|
- [Not1MM](#not1mm)
|
47
47
|
- [What and why is Not1MM](#what-and-why-is-not1mm)
|
48
48
|
- [Current state](#current-state)
|
@@ -177,6 +177,7 @@ I wish to thank those who've contributed to the project.
|
|
177
177
|
|
178
178
|
## Recent Changes
|
179
179
|
|
180
|
+
- [24-4-2] Migrated to PyQt6. I'm sure there are broken things.
|
180
181
|
- [24-4-1-2] Added color text indicators to the Check Partial window. Poached the code from @kyleboyle. Thanks! Fixed the Log, VFO and Check Partial windows to be actual docking widgets. Refocus call field after double clicking on item in the check partial window.
|
181
182
|
- [24-4-1] Removed some un-needed loops and widgets from the check window. Fixed docking to the left side.
|
182
183
|
|
@@ -193,7 +194,7 @@ clue me into the black magic needed to get it to work.
|
|
193
194
|
|
194
195
|
### Prerequisites
|
195
196
|
|
196
|
-
not1mm requires Python 3.9+,
|
197
|
+
not1mm requires Python 3.9+, PyQt6 and libportaudio2. You should install these
|
197
198
|
through your distribution's package manager before continuing.
|
198
199
|
|
199
200
|
### Common installation recipes for Ubuntu and Fedora
|
@@ -206,7 +207,7 @@ noted the minimum steps needed to install not1mm.
|
|
206
207
|
```bash
|
207
208
|
sudo apt update
|
208
209
|
sudo apt upgrade
|
209
|
-
sudo apt install -y libportaudio2 python3-pip python3-
|
210
|
+
sudo apt install -y libportaudio2 python3-pip python3-pyqt6 python3-numpy
|
210
211
|
pip install -U not1mm
|
211
212
|
```
|
212
213
|
|
@@ -1,20 +1,20 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
3
|
-
not1mm/bandmap.py,sha256
|
4
|
-
not1mm/checkwindow.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=5Nua-ZRvIZDsQAepkqw5anj0eHnWvZK1bnzrcnE5fOc,119800
|
3
|
+
not1mm/bandmap.py,sha256=-wHbUmj-zqefyFO_ydLECwTtWcs37tSkA7Xm2zOVcLA,34318
|
4
|
+
not1mm/checkwindow.py,sha256=ncIOZmuhM_eLR1gb-St8FqEefbUkD9p9VltFDJVxLeY,10465
|
5
5
|
not1mm/fsutils.py,sha256=Li8Tq9K7c_q7onOHOQ7u1dOOFfhIIz5Aj2LKuQtGOO4,1652
|
6
|
-
not1mm/logwindow.py,sha256=
|
7
|
-
not1mm/vfo.py,sha256=
|
6
|
+
not1mm/logwindow.py,sha256=H6FbKowq5ekEhALRPiRugZk_Rv1mwtMF5VT_OBZ63Oo,44900
|
7
|
+
not1mm/vfo.py,sha256=4szh2mwiPqUW4nNbHFsBaxDxxntUCk9wS5grq2izyOY,12430
|
8
8
|
not1mm/data/JetBrainsMono-Regular.ttf,sha256=UOHctAKY_PzCGh7zy-6f6egnCcSK0wzmF0csBqO9lDY,203952
|
9
9
|
not1mm/data/MASTER.SCP,sha256=1vQRvEZ865brfmmajp-Lj-hgWejVGI992q8o971bUV8,366478
|
10
10
|
not1mm/data/about.ui,sha256=7TqvtXFFm0Rmcu0bmLupwpO1CsK8MekfZ09_xn6kZrQ,2067
|
11
11
|
not1mm/data/alpha bravo charlie delta.txt,sha256=d5QMmSWEUAe4Rj1XbNjTPLa_5Be4Se6u5LUIqAYidOQ,224
|
12
12
|
not1mm/data/bandmap.ui,sha256=NqVoAGyuf_Rsts_FnL0pYEtE08DJb6qm4KAQ_T01bM8,7125
|
13
13
|
not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
|
14
|
-
not1mm/data/checkwindow.ui,sha256=
|
14
|
+
not1mm/data/checkwindow.ui,sha256=aILeaBJB5Xium-JIFiJ39VEoGH6TIpK0lHVa2RcfeaQ,4614
|
15
15
|
not1mm/data/configuration.ui,sha256=DJZxA4zZPb4sTdVn17j1fwaTw-5lJCNQ6PspQrsdMe4,51643
|
16
16
|
not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
|
17
|
-
not1mm/data/cty.json,sha256=
|
17
|
+
not1mm/data/cty.json,sha256=xnLK-kNB5phKPef7R7PJZcSGGHegZ1AH2xw9ZWJwccM,4790698
|
18
18
|
not1mm/data/cwmacros.txt,sha256=PvJ7TxGILq-ErHb6Gbrm-08x76BbCdXb8AY8a7st5mg,451
|
19
19
|
not1mm/data/donors.html,sha256=8hNzO3Q5a6p-_3egT1hfOjimPf810tKMUM5ukLzUsGM,116
|
20
20
|
not1mm/data/editcontact.ui,sha256=ax-pm4TeECpHl3LSb5z4L403WjPWXZ9KV2it_6gIjqk,27404
|
@@ -37,7 +37,7 @@ not1mm/data/radio_red.png,sha256=QvkMk7thd_hCEIyK5xGAG4xVVXivl39nwOfD8USDI20,957
|
|
37
37
|
not1mm/data/reddot.png,sha256=M33jEMoU8W4rQ4_MVyzzKxDPDte1ypKBch5VnUMNLKE,565
|
38
38
|
not1mm/data/settings.ui,sha256=7r4aZwxKUHQGm8NLQGLINurGMvT_5VMU9p2dznW25bA,40028
|
39
39
|
not1mm/data/ssbmacros.txt,sha256=0Qccj4y0nlK-w5da9a9ti-jILkURtwztoDuL_D0pEJM,470
|
40
|
-
not1mm/data/vfo.ui,sha256=
|
40
|
+
not1mm/data/vfo.ui,sha256=oJJnjLhIv2PF5Hji5sThzjlhB2_4TbqWS8S1_3XKvjY,1986
|
41
41
|
not1mm/data/phonetics/0.wav,sha256=0OpYiR-3MK6fVHE6MB-HeOxSAPiDNMjqvx5JcIZtsQk,42590
|
42
42
|
not1mm/data/phonetics/1.wav,sha256=OEAavA8cfVxFZwaT0HY9Wg9NAGEPKBhwhEdzGXkQs_U,30248
|
43
43
|
not1mm/data/phonetics/2.wav,sha256=AmCfvo8y8BT9OlHkCs_N4y_mUAjmyG_x9ahbgiwU2FE,29584
|
@@ -87,60 +87,60 @@ not1mm/data/phonetics/y.wav,sha256=QINogHdj01-zkUX9E3fnVTzjGM8wc5F5NEGz-bSd3Ng,5
|
|
87
87
|
not1mm/data/phonetics/yourcall.wav,sha256=4kheHJmCiRDL2kjhlgXQ8_u_eEMgKxiNGu5UBk9k08E,46510
|
88
88
|
not1mm/data/phonetics/z.wav,sha256=arafCi7fwmBLdVDI-PRyaL4U-03PIQDhffwY5noJ_2c,51768
|
89
89
|
not1mm/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
|
-
not1mm/lib/about.py,sha256=
|
90
|
+
not1mm/lib/about.py,sha256=sWycfGcruN3SaEe4JmaJ61K6D8Itq0WxpUYT-lEcmYM,416
|
91
91
|
not1mm/lib/cat_interface.py,sha256=dr5bBcObNtRWVHr9A5kq9GCq0wQfOOfVhkrEAzJez90,15127
|
92
92
|
not1mm/lib/cwinterface.py,sha256=Seupz7tMkCvJ80mgmyaNU_1AUADsvNPkAfwDSlwibF0,3126
|
93
93
|
not1mm/lib/database.py,sha256=RQoj3JsTejMiiFIN42lY3N4jrj80htftdoFeRqVKnKs,42480
|
94
|
-
not1mm/lib/edit_contact.py,sha256=
|
95
|
-
not1mm/lib/edit_macro.py,sha256=
|
96
|
-
not1mm/lib/edit_opon.py,sha256=
|
97
|
-
not1mm/lib/edit_station.py,sha256=
|
94
|
+
not1mm/lib/edit_contact.py,sha256=Ki9bGPpqyQQBB1cU8VIBDCal3lbXeQ6qxhzklmhE2_w,353
|
95
|
+
not1mm/lib/edit_macro.py,sha256=raKWBwsHInj5EUKmvyLQ6gqc3ZFDlstsD3xqoM4PC8E,517
|
96
|
+
not1mm/lib/edit_opon.py,sha256=j3qJ1aBsQoIOnQ9yiBl3lyeISvKTP0I_rtBYBPAfgeI,359
|
97
|
+
not1mm/lib/edit_station.py,sha256=doL21Hs6jzIE43ohAopdFt_iqnRJZHFcqzcnCS0-iio,1965
|
98
98
|
not1mm/lib/ham_utility.py,sha256=pUrysod3wGk4BYOWDAKJxZZTiUNDE4ZzRk8S5ZnllNA,10978
|
99
|
-
not1mm/lib/lookup.py,sha256=
|
100
|
-
not1mm/lib/multicast.py,sha256=
|
99
|
+
not1mm/lib/lookup.py,sha256=F2fl5QkMxaGSxl1XMWnLUub3T9Mt7LhCX4acOlAsks4,13952
|
100
|
+
not1mm/lib/multicast.py,sha256=bnFUNHyy82GmIb3_88EPBVVssj7-HzkJPaH671cK8Qw,3249
|
101
101
|
not1mm/lib/n1mm.py,sha256=V1NiNyOHaPNYKe_vRsq44O1R42N8uS5PlfRa5Db4Tv0,5712
|
102
|
-
not1mm/lib/new_contest.py,sha256=
|
102
|
+
not1mm/lib/new_contest.py,sha256=cenfR08g_7hGPYQOmg6Q48xgZg0YLwbJlwNS67IsP84,350
|
103
103
|
not1mm/lib/plugin_common.py,sha256=AAKBPCXzTWZJb-h08uPNnHVG7bSCg7kwukc211gFivY,8605
|
104
|
-
not1mm/lib/select_contest.py,sha256=
|
105
|
-
not1mm/lib/settings.py,sha256=
|
104
|
+
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
105
|
+
not1mm/lib/settings.py,sha256=tlXlJUUZP0IFwIDc9DboM5_1by_tHNtMXvyJ0E7B6RI,8877
|
106
106
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
107
|
-
not1mm/lib/version.py,sha256=
|
107
|
+
not1mm/lib/version.py,sha256=DS1h7kkVnHKLBBMYmohGaprRAqnhs1v82TS0sDtvLlo,49
|
108
108
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
109
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
110
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
111
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
112
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
109
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=pzwdVk_ezaZIlAWDiEF0FVyZYPzx93xaIx8EZ8OTOwM,10834
|
110
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=hUdC5vkdIHSuMil4zhlid1HwUkkkbtppsvMTQd5gLvY,10839
|
111
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=2-Ry9mp7A_1dUD1gQLbdaeD9ubGez9Ik4mzRio9KUz8,10848
|
112
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=qd5f9oeJ6DUsA42VdJg_dLIpZYo74mWndjzzgqx6YGk,10851
|
113
113
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
114
|
-
not1mm/plugins/arrl_10m.py,sha256
|
115
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
116
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
117
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
118
|
-
not1mm/plugins/arrl_rtty_ru.py,sha256=
|
119
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
120
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
121
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
122
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
123
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
124
|
-
not1mm/plugins/canada_day.py,sha256=
|
125
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
126
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
127
|
-
not1mm/plugins/cq_wpx_cw.py,sha256=
|
128
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
129
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
130
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
131
|
-
not1mm/plugins/cwt.py,sha256=
|
132
|
-
not1mm/plugins/general_logging.py,sha256=
|
133
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
134
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
135
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
136
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
137
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
138
|
-
not1mm/plugins/phone_weekly_test.py,sha256=
|
139
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
140
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
141
|
-
not1mm-24.4.1.
|
142
|
-
not1mm-24.4.1.
|
143
|
-
not1mm-24.4.1.
|
144
|
-
not1mm-24.4.1.
|
145
|
-
not1mm-24.4.1.
|
146
|
-
not1mm-24.4.1.
|
114
|
+
not1mm/plugins/arrl_10m.py,sha256=-6oOW2775wKL19xY5ARWzjStkPbuvp1dlRp8wti6ORk,13643
|
115
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=Rx6i1tGFXw2nicM4Y_IczwwkUhBQQMhO-gySBMfy1Jo,13688
|
116
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=SVdXNBBdm0JVnqUoMeNv3vlEZO2uJLpFyCz80Cp6kG8,13691
|
117
|
+
not1mm/plugins/arrl_field_day.py,sha256=jB9DqrGo_tbdHDevTd_DeYCebHoNS8qPrx3X3WVYnVk,10026
|
118
|
+
not1mm/plugins/arrl_rtty_ru.py,sha256=j7niG1BUoBU383QwNfM4bDRmfALjFLGNDQtxPTXMloY,7974
|
119
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=X2gmVVsVhn3mO38EIpGalaKAY_noEZl1Z-I3dr6AKFQ,13141
|
120
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=KAuuFdY4koZxYRdqC6D5HwfyUMYI3r6rz73LmHNaC4A,13147
|
121
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=wdB3TQG90NFktHxU3_KBfgDBf0iKsxXLHz-0Vt_N4MY,12438
|
122
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=M8xL7PExwi5tHNbr3G1YfWzO3v46Q4f_69KYIppIhh8,11457
|
123
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=vll2uKDB_Mu_Yut4KKtPqZKxdeBG1X7dQAC4zLTWXoU,11457
|
124
|
+
not1mm/plugins/canada_day.py,sha256=_y1Gqa4AenQNHYwOJAM8L-BwLDTIy4uCtZdVHq2GLyQ,11869
|
125
|
+
not1mm/plugins/cq_160_cw.py,sha256=mNfqgq_SungfUoj7AfuEHrJFXZ9aMFUuvg5W5FOA7fQ,14018
|
126
|
+
not1mm/plugins/cq_160_ssb.py,sha256=jZaWjLV1kQgUMWI_eZ8GqnZPOzJ_kENR8B9pd2dHS0k,14061
|
127
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=ejgTQzkPvwTnp4XAEPa3A3IWRA5hBNocFLhIjI8hb5k,12378
|
128
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=VCl3rib5S8BCvSAM5XBESz0c8Ab3lE7r8pQwtw-1tes,12466
|
129
|
+
not1mm/plugins/cq_ww_cw.py,sha256=t9ExXSlPZik2NRDSf1kgW0-v5wtzq55WJfxKY2CVytQ,11083
|
130
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=9oAWVdDfiYlNjq8EYlcwq_CMP5jvxmeaJujS4V74mEc,11088
|
131
|
+
not1mm/plugins/cwt.py,sha256=Fd8d0QilYmmZq4PSXKGAxZ9yYuous7cGHYNlQczi2qw,11976
|
132
|
+
not1mm/plugins/general_logging.py,sha256=wkopclj5_Kw2bY9COMbAtK1lrvVtAbRIZoGDfD_ZgfY,3369
|
133
|
+
not1mm/plugins/iaru_hf.py,sha256=YYU-Ny50SU1v_jwCkatN6nCl0nUIrMbdRLEW15OzFJg,11433
|
134
|
+
not1mm/plugins/jidx_cw.py,sha256=qx-o99zlSW5OPjbU2zE9ce_v3r3yTs1TV8G4S2XvZ2o,11049
|
135
|
+
not1mm/plugins/jidx_ph.py,sha256=D8FMo9m-pD1qGXBoeVC68Re6h5WqN7eTToWjxIclQ5s,11051
|
136
|
+
not1mm/plugins/naqp_cw.py,sha256=dLZOKY186HSKml6F9it1r1QbyDxhiOyvMON1R8ZiyQ4,11472
|
137
|
+
not1mm/plugins/naqp_ssb.py,sha256=HJtPznRpVI66DCXNehDcxrdZmtAKW5WNm4AtqBK2ZiU,11477
|
138
|
+
not1mm/plugins/phone_weekly_test.py,sha256=DklwBvVBVJ60HLGLd8_DNrloD1TyFtWgCztSwUdW4Ag,12278
|
139
|
+
not1mm/plugins/stew_perry_topband.py,sha256=2uWD6MEENiqq01PwuhhgzTNIS0P5ukeBG1jesrFNOP0,10546
|
140
|
+
not1mm/plugins/winter_field_day.py,sha256=Fb5Bb-VejO5K983h_nZfwpqC0rUdiolfr_iSkaqGF0M,10212
|
141
|
+
not1mm-24.4.2.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
142
|
+
not1mm-24.4.2.1.dist-info/METADATA,sha256=JVLUsuf--jY5Zoz-kKldSAUtrLECoydq27iRuDgkFWc,26569
|
143
|
+
not1mm-24.4.2.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
144
|
+
not1mm-24.4.2.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
145
|
+
not1mm-24.4.2.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
146
|
+
not1mm-24.4.2.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|