not1mm 24.4.1.2__py3-none-any.whl → 24.4.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 +118 -74
- not1mm/bandmap.py +41 -20
- not1mm/checkwindow.py +38 -18
- not1mm/data/checkwindow.ui +1 -1
- not1mm/data/cty.json +1 -1
- not1mm/data/vfo.ui +6 -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/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 +51 -21
- 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 +44 -21
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.dist-info}/METADATA +4 -3
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.dist-info}/RECORD +55 -55
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.dist-info}/LICENSE +0 -0
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.dist-info}/WHEEL +0 -0
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.dist-info}/entry_points.txt +0 -0
- {not1mm-24.4.1.2.dist-info → not1mm-24.4.2.dist-info}/top_level.txt +0 -0
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 Qt, QTimer
|
19
|
+
from PyQt6.QtWidgets import QWidget, 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
|
@@ -66,29 +67,51 @@ class VfoWindow(QDockWidget):
|
|
66
67
|
if dark:
|
67
68
|
darkPalette = QtGui.QPalette()
|
68
69
|
darkColor = QtGui.QColor(56, 56, 56)
|
70
|
+
self.text_color = QColorConstants.White
|
69
71
|
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)
|
72
|
+
darkPalette.setColor(QtGui.QPalette.ColorRole.Window, darkColor)
|
75
73
|
darkPalette.setColor(
|
76
|
-
QtGui.QPalette.
|
74
|
+
QtGui.QPalette.ColorRole.WindowText, QColorConstants.White
|
77
75
|
)
|
78
|
-
darkPalette.setColor(QtGui.QPalette.Button, darkColor)
|
79
|
-
darkPalette.setColor(QtGui.QPalette.ButtonText, Qt.white)
|
80
76
|
darkPalette.setColor(
|
81
|
-
QtGui.QPalette.
|
77
|
+
QtGui.QPalette.ColorRole.Base, QtGui.QColor(45, 45, 45)
|
82
78
|
)
|
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)
|
79
|
+
darkPalette.setColor(QtGui.QPalette.ColorRole.AlternateBase, darkColor)
|
80
|
+
darkPalette.setColor(QtGui.QPalette.ColorRole.Text, QColorConstants.White)
|
87
81
|
darkPalette.setColor(
|
88
|
-
QtGui.QPalette.Disabled,
|
82
|
+
QtGui.QPalette.ColorGroup.Disabled,
|
83
|
+
QtGui.QPalette.ColorRole.Text,
|
84
|
+
disabledColor,
|
89
85
|
)
|
90
|
-
|
86
|
+
darkPalette.setColor(QtGui.QPalette.ColorRole.Button, darkColor)
|
87
|
+
darkPalette.setColor(
|
88
|
+
QtGui.QPalette.ColorRole.ButtonText, QColorConstants.White
|
89
|
+
)
|
90
|
+
darkPalette.setColor(
|
91
|
+
QtGui.QPalette.ColorGroup.Disabled,
|
92
|
+
QtGui.QPalette.ColorRole.ButtonText,
|
93
|
+
disabledColor,
|
94
|
+
)
|
95
|
+
darkPalette.setColor(
|
96
|
+
QtGui.QPalette.ColorRole.BrightText, QColorConstants.Red
|
97
|
+
)
|
98
|
+
darkPalette.setColor(
|
99
|
+
QtGui.QPalette.ColorRole.Link, QtGui.QColor(42, 130, 218)
|
100
|
+
)
|
101
|
+
darkPalette.setColor(
|
102
|
+
QtGui.QPalette.ColorRole.Highlight, QtGui.QColor(42, 130, 218)
|
103
|
+
)
|
104
|
+
darkPalette.setColor(
|
105
|
+
QtGui.QPalette.ColorRole.HighlightedText, QColorConstants.Black
|
106
|
+
)
|
107
|
+
darkPalette.setColor(
|
108
|
+
QtGui.QPalette.ColorGroup.Disabled,
|
109
|
+
QtGui.QPalette.ColorRole.HighlightedText,
|
110
|
+
disabledColor,
|
111
|
+
)
|
112
|
+
|
91
113
|
self.setPalette(darkPalette)
|
114
|
+
self.current_palette = darkPalette
|
92
115
|
else:
|
93
116
|
palette = self.style().standardPalette()
|
94
117
|
self.current_palette = palette
|
@@ -299,8 +322,8 @@ class VfoWindow(QDockWidget):
|
|
299
322
|
"""
|
300
323
|
message_box = QtWidgets.QMessageBox()
|
301
324
|
message_box.setPalette(self.current_palette)
|
302
|
-
message_box.setIcon(QtWidgets.QMessageBox.Information)
|
325
|
+
message_box.setIcon(QtWidgets.QMessageBox.Icon.Information)
|
303
326
|
message_box.setText(message)
|
304
327
|
message_box.setWindowTitle("Information")
|
305
|
-
message_box.setStandardButtons(QtWidgets.QMessageBox.Ok)
|
306
|
-
_ = message_box.
|
328
|
+
message_box.setStandardButtons(QtWidgets.QMessageBox.StandardButton.Ok)
|
329
|
+
_ = message_box.exec()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.4.
|
3
|
+
Version: 24.4.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
|
@@ -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
|
@@ -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
|
@@ -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=60mAxgkf3P-1LqkwgDMJxfHX2VyLf_dpQ9n80oOx6_A,119707
|
3
|
+
not1mm/bandmap.py,sha256=vxsNNVkplMcaBsBboIbwEnN6hl5nhqc_qL-iPT67uK8,34051
|
4
|
+
not1mm/checkwindow.py,sha256=a6wNnt0qEOggXU-nD5mF5qxqPvDHsxmFrWwaKhQ-FU0,10221
|
5
5
|
not1mm/fsutils.py,sha256=Li8Tq9K7c_q7onOHOQ7u1dOOFfhIIz5Aj2LKuQtGOO4,1652
|
6
|
-
not1mm/logwindow.py,sha256=
|
7
|
-
not1mm/vfo.py,sha256=
|
6
|
+
not1mm/logwindow.py,sha256=MbzEIna-iaQ4EZCu6XEWynakHmmwrBX_ROcI0wxA8AY,44639
|
7
|
+
not1mm/vfo.py,sha256=4LhCU3NHbGtrd0pWQOhS8Zo8MbxA4zk2ieBlQYWsitE,12206
|
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=VKlwBd1CvNknJ98-PQlZNG5DMzuArp7yur0j-6mB0MA,1608
|
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
99
|
not1mm/lib/lookup.py,sha256=WyLfb4i763fyRR9_QjV4eLexNxwsEcPUpuycevGuntw,13775
|
100
|
-
not1mm/lib/multicast.py,sha256=
|
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=JI7H44EyrLDCm3VUG_NwwTbOF4PFB9kKL-xM8EWFb9M,47
|
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.
|
142
|
-
not1mm-24.4.
|
143
|
-
not1mm-24.4.
|
144
|
-
not1mm-24.4.
|
145
|
-
not1mm-24.4.
|
146
|
-
not1mm-24.4.
|
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.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
142
|
+
not1mm-24.4.2.dist-info/METADATA,sha256=W-NiyaorWcfkmgMkUw8_SyPrhzLrj8X0xVxk3bXWpW4,26563
|
143
|
+
not1mm-24.4.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
144
|
+
not1mm-24.4.2.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
145
|
+
not1mm-24.4.2.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
146
|
+
not1mm-24.4.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|