not1mm 25.6.18.2__py3-none-any.whl → 25.6.21__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 +14 -1
- not1mm/data/configuration.ui +82 -30
- not1mm/lib/rot_interface.py +8 -1
- not1mm/lib/settings.py +10 -0
- not1mm/lib/version.py +1 -1
- not1mm/rotator.py +11 -2
- not1mm/vfo.py +5 -5
- {not1mm-25.6.18.2.dist-info → not1mm-25.6.21.dist-info}/METADATA +5 -2
- {not1mm-25.6.18.2.dist-info → not1mm-25.6.21.dist-info}/RECORD +13 -13
- {not1mm-25.6.18.2.dist-info → not1mm-25.6.21.dist-info}/WHEEL +0 -0
- {not1mm-25.6.18.2.dist-info → not1mm-25.6.21.dist-info}/entry_points.txt +0 -0
- {not1mm-25.6.18.2.dist-info → not1mm-25.6.21.dist-info}/licenses/LICENSE +0 -0
- {not1mm-25.6.18.2.dist-info → not1mm-25.6.21.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -757,7 +757,11 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
757
757
|
self.dxcc_window.message.connect(self.dockwidget_message)
|
758
758
|
|
759
759
|
self.show_splash_msg("Setting up RotatorWindow.")
|
760
|
-
self.rotator_window = RotatorWindow(
|
760
|
+
self.rotator_window = RotatorWindow(
|
761
|
+
host=self.pref.get("rotctld_address", "127.0.0.1"),
|
762
|
+
port=self.pref.get("rotctld_port", 4533),
|
763
|
+
)
|
764
|
+
|
761
765
|
self.rotator_window.setObjectName("rotator-window")
|
762
766
|
if os.environ.get("WAYLAND_DISPLAY") and old_Qt is True:
|
763
767
|
self.rotator_window.setFeatures(dockfeatures)
|
@@ -3696,6 +3700,15 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3696
3700
|
else:
|
3697
3701
|
self.server_icon.hide()
|
3698
3702
|
|
3703
|
+
if isinstance(self.rotator_window, RotatorWindow):
|
3704
|
+
self.rotator_window.set_host_port(
|
3705
|
+
host=self.pref.get(
|
3706
|
+
"rotctld_address",
|
3707
|
+
"127.0.0.1",
|
3708
|
+
),
|
3709
|
+
port=self.pref.get("rotctld_port", 4533),
|
3710
|
+
)
|
3711
|
+
|
3699
3712
|
def rtc_response(self, response):
|
3700
3713
|
print(f"{response=}")
|
3701
3714
|
|
not1mm/data/configuration.ui
CHANGED
@@ -809,7 +809,7 @@
|
|
809
809
|
</font>
|
810
810
|
</property>
|
811
811
|
<property name="text">
|
812
|
-
<string>CW Sent Nr
|
812
|
+
<string>CW Sent Nr Pad Character:</string>
|
813
813
|
</property>
|
814
814
|
<property name="alignment">
|
815
815
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
@@ -849,7 +849,7 @@
|
|
849
849
|
</font>
|
850
850
|
</property>
|
851
851
|
<property name="text">
|
852
|
-
<string>CW Sent Nr
|
852
|
+
<string>CW Sent Nr Pad Length:</string>
|
853
853
|
</property>
|
854
854
|
<property name="alignment">
|
855
855
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
@@ -881,6 +881,41 @@
|
|
881
881
|
</item>
|
882
882
|
</layout>
|
883
883
|
</widget>
|
884
|
+
<widget class="QWidget" name="rotator_tab">
|
885
|
+
<attribute name="title">
|
886
|
+
<string>Rotator</string>
|
887
|
+
</attribute>
|
888
|
+
<layout class="QGridLayout" name="gridLayout_12">
|
889
|
+
<item row="0" column="0">
|
890
|
+
<widget class="QLabel" name="label_33">
|
891
|
+
<property name="text">
|
892
|
+
<string>rotctld address:</string>
|
893
|
+
</property>
|
894
|
+
</widget>
|
895
|
+
</item>
|
896
|
+
<item row="0" column="1">
|
897
|
+
<widget class="QLineEdit" name="rotctld_address">
|
898
|
+
<property name="placeholderText">
|
899
|
+
<string>127.0.0.1</string>
|
900
|
+
</property>
|
901
|
+
</widget>
|
902
|
+
</item>
|
903
|
+
<item row="1" column="0">
|
904
|
+
<widget class="QLabel" name="label_34">
|
905
|
+
<property name="text">
|
906
|
+
<string>rotctld port:</string>
|
907
|
+
</property>
|
908
|
+
</widget>
|
909
|
+
</item>
|
910
|
+
<item row="1" column="1">
|
911
|
+
<widget class="QLineEdit" name="rotctld_port">
|
912
|
+
<property name="placeholderText">
|
913
|
+
<string>4533</string>
|
914
|
+
</property>
|
915
|
+
</widget>
|
916
|
+
</item>
|
917
|
+
</layout>
|
918
|
+
</widget>
|
884
919
|
<widget class="QWidget" name="cluster_tab">
|
885
920
|
<attribute name="title">
|
886
921
|
<string>Cluster</string>
|
@@ -1104,11 +1139,8 @@
|
|
1104
1139
|
<string>Group</string>
|
1105
1140
|
</attribute>
|
1106
1141
|
<layout class="QGridLayout" name="gridLayout_7">
|
1107
|
-
<item row="
|
1108
|
-
<widget class="
|
1109
|
-
<property name="enabled">
|
1110
|
-
<bool>true</bool>
|
1111
|
-
</property>
|
1142
|
+
<item row="3" column="1">
|
1143
|
+
<widget class="QLineEdit" name="multicast_port">
|
1112
1144
|
<property name="font">
|
1113
1145
|
<font>
|
1114
1146
|
<family>JetBrains Mono</family>
|
@@ -1116,13 +1148,16 @@
|
|
1116
1148
|
<strikeout>false</strikeout>
|
1117
1149
|
</font>
|
1118
1150
|
</property>
|
1151
|
+
<property name="inputMethodHints">
|
1152
|
+
<set>Qt::InputMethodHint::ImhDigitsOnly</set>
|
1153
|
+
</property>
|
1119
1154
|
<property name="text">
|
1120
|
-
<string>
|
1155
|
+
<string>2239</string>
|
1121
1156
|
</property>
|
1122
1157
|
</widget>
|
1123
1158
|
</item>
|
1124
|
-
<item row="
|
1125
|
-
<widget class="
|
1159
|
+
<item row="2" column="1">
|
1160
|
+
<widget class="QLineEdit" name="multicast_group">
|
1126
1161
|
<property name="font">
|
1127
1162
|
<font>
|
1128
1163
|
<family>JetBrains Mono</family>
|
@@ -1131,15 +1166,29 @@
|
|
1131
1166
|
</font>
|
1132
1167
|
</property>
|
1133
1168
|
<property name="text">
|
1134
|
-
<string>
|
1169
|
+
<string>224.1.1.1</string>
|
1135
1170
|
</property>
|
1136
|
-
|
1137
|
-
|
1171
|
+
</widget>
|
1172
|
+
</item>
|
1173
|
+
<item row="1" column="0" colspan="2" alignment="Qt::AlignHCenter">
|
1174
|
+
<widget class="QCheckBox" name="connect_to_server">
|
1175
|
+
<property name="enabled">
|
1176
|
+
<bool>true</bool>
|
1177
|
+
</property>
|
1178
|
+
<property name="font">
|
1179
|
+
<font>
|
1180
|
+
<family>JetBrains Mono</family>
|
1181
|
+
<pointsize>12</pointsize>
|
1182
|
+
<strikeout>false</strikeout>
|
1183
|
+
</font>
|
1184
|
+
</property>
|
1185
|
+
<property name="text">
|
1186
|
+
<string>Connect to server</string>
|
1138
1187
|
</property>
|
1139
1188
|
</widget>
|
1140
1189
|
</item>
|
1141
|
-
<item row="
|
1142
|
-
<widget class="
|
1190
|
+
<item row="4" column="0">
|
1191
|
+
<widget class="QLabel" name="label_12">
|
1143
1192
|
<property name="font">
|
1144
1193
|
<font>
|
1145
1194
|
<family>JetBrains Mono</family>
|
@@ -1148,11 +1197,14 @@
|
|
1148
1197
|
</font>
|
1149
1198
|
</property>
|
1150
1199
|
<property name="text">
|
1151
|
-
<string>
|
1200
|
+
<string>Interface IP:</string>
|
1201
|
+
</property>
|
1202
|
+
<property name="alignment">
|
1203
|
+
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
1152
1204
|
</property>
|
1153
1205
|
</widget>
|
1154
1206
|
</item>
|
1155
|
-
<item row="
|
1207
|
+
<item row="3" column="0">
|
1156
1208
|
<widget class="QLabel" name="label_9">
|
1157
1209
|
<property name="font">
|
1158
1210
|
<font>
|
@@ -1169,8 +1221,8 @@
|
|
1169
1221
|
</property>
|
1170
1222
|
</widget>
|
1171
1223
|
</item>
|
1172
|
-
<item row="
|
1173
|
-
<widget class="QLineEdit" name="
|
1224
|
+
<item row="4" column="1">
|
1225
|
+
<widget class="QLineEdit" name="interface_ip">
|
1174
1226
|
<property name="font">
|
1175
1227
|
<font>
|
1176
1228
|
<family>JetBrains Mono</family>
|
@@ -1178,16 +1230,13 @@
|
|
1178
1230
|
<strikeout>false</strikeout>
|
1179
1231
|
</font>
|
1180
1232
|
</property>
|
1181
|
-
<property name="inputMethodHints">
|
1182
|
-
<set>Qt::InputMethodHint::ImhDigitsOnly</set>
|
1183
|
-
</property>
|
1184
1233
|
<property name="text">
|
1185
|
-
<string>
|
1234
|
+
<string>0.0.0.0</string>
|
1186
1235
|
</property>
|
1187
1236
|
</widget>
|
1188
1237
|
</item>
|
1189
|
-
<item row="
|
1190
|
-
<widget class="QLabel" name="
|
1238
|
+
<item row="2" column="0">
|
1239
|
+
<widget class="QLabel" name="label_3">
|
1191
1240
|
<property name="font">
|
1192
1241
|
<font>
|
1193
1242
|
<family>JetBrains Mono</family>
|
@@ -1196,24 +1245,27 @@
|
|
1196
1245
|
</font>
|
1197
1246
|
</property>
|
1198
1247
|
<property name="text">
|
1199
|
-
<string>
|
1248
|
+
<string>Multicast Group:</string>
|
1200
1249
|
</property>
|
1201
1250
|
<property name="alignment">
|
1202
1251
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
1203
1252
|
</property>
|
1204
1253
|
</widget>
|
1205
1254
|
</item>
|
1206
|
-
<item row="
|
1207
|
-
<widget class="
|
1255
|
+
<item row="0" column="0" colspan="2">
|
1256
|
+
<widget class="QLabel" name="label_35">
|
1208
1257
|
<property name="font">
|
1209
1258
|
<font>
|
1210
1259
|
<family>JetBrains Mono</family>
|
1211
|
-
<pointsize>
|
1260
|
+
<pointsize>14</pointsize>
|
1212
1261
|
<strikeout>false</strikeout>
|
1213
1262
|
</font>
|
1214
1263
|
</property>
|
1264
|
+
<property name="styleSheet">
|
1265
|
+
<string notr="true">color: red;</string>
|
1266
|
+
</property>
|
1215
1267
|
<property name="text">
|
1216
|
-
<string>
|
1268
|
+
<string>This is not functional ignore this tab, Just move along.</string>
|
1217
1269
|
</property>
|
1218
1270
|
</widget>
|
1219
1271
|
</item>
|
not1mm/lib/rot_interface.py
CHANGED
@@ -12,13 +12,20 @@ class RotatorInterface:
|
|
12
12
|
A class to interface with a rotator control program (like rotctld).
|
13
13
|
"""
|
14
14
|
|
15
|
-
def __init__(self, host="127.0.0.1", port=4533):
|
15
|
+
def __init__(self, host: str = "127.0.0.1", port: int = 4533):
|
16
16
|
self.host: str = host
|
17
17
|
self.port: int = port
|
18
18
|
self.socket: socket.socket | None = None
|
19
19
|
self.connected: bool = False
|
20
20
|
self.connect()
|
21
21
|
|
22
|
+
def set_host_port(self, host: str, port: int) -> None:
|
23
|
+
"""Set the host and port of the rotator control program."""
|
24
|
+
self.host = host
|
25
|
+
self.port = port
|
26
|
+
self.disconnect()
|
27
|
+
self.connect()
|
28
|
+
|
22
29
|
def connect(self) -> None:
|
23
30
|
"""Connect to the rotator control program."""
|
24
31
|
try:
|
not1mm/lib/settings.py
CHANGED
@@ -120,6 +120,9 @@ class Settings(QtWidgets.QDialog):
|
|
120
120
|
self.userigctld_radioButton.setChecked(bool(self.preference.get("userigctld")))
|
121
121
|
self.useflrig_radioButton.setChecked(bool(self.preference.get("useflrig")))
|
122
122
|
|
123
|
+
self.rotctld_address.setText(str(self.preference.get("rotctld_address", "")))
|
124
|
+
self.rotctld_port.setText(str(self.preference.get("rotctld_port", "")))
|
125
|
+
|
123
126
|
self.cwip_field.setText(str(self.preference.get("cwip", "")))
|
124
127
|
if self.preference.get("cwport", ""):
|
125
128
|
self.cwport_field.setText(str(self.preference.get("cwport", "")))
|
@@ -267,6 +270,13 @@ class Settings(QtWidgets.QDialog):
|
|
267
270
|
...
|
268
271
|
self.preference["userigctld"] = self.userigctld_radioButton.isChecked()
|
269
272
|
self.preference["useflrig"] = self.useflrig_radioButton.isChecked()
|
273
|
+
|
274
|
+
self.preference["rotctld_address"] = self.rotctld_address.text()
|
275
|
+
try:
|
276
|
+
self.preference["rotctld_port"] = int(self.rotctld_port.text())
|
277
|
+
except ValueError:
|
278
|
+
self.preference["rotctld_port"] = 4533
|
279
|
+
|
270
280
|
self.preference["cwip"] = self.cwip_field.text()
|
271
281
|
try:
|
272
282
|
self.preference["cwport"] = int(self.cwport_field.text())
|
not1mm/lib/version.py
CHANGED
not1mm/rotator.py
CHANGED
@@ -37,8 +37,10 @@ class RotatorWindow(QDockWidget):
|
|
37
37
|
requestedAzimuthNeedle: QGraphicsPathItem | None = None
|
38
38
|
antennaNeedle: QGraphicsPathItem | None = None
|
39
39
|
|
40
|
-
def __init__(self):
|
40
|
+
def __init__(self, host: str = "127.0.0.1", port: int = 4533):
|
41
41
|
super().__init__()
|
42
|
+
self.host = host
|
43
|
+
self.port = port
|
42
44
|
self.active: bool = False
|
43
45
|
self.compassScene: QGraphicsScene | None = None
|
44
46
|
self.mygrid: str = "DM13at"
|
@@ -53,13 +55,20 @@ class RotatorWindow(QDockWidget):
|
|
53
55
|
self.stop_button.clicked.connect(lambda x: self.rotator.send_command("S"))
|
54
56
|
self.park_button.clicked.connect(lambda x: self.rotator.send_command("K"))
|
55
57
|
self.redrawMap()
|
56
|
-
self.rotator: RotatorInterface = RotatorInterface()
|
58
|
+
self.rotator: RotatorInterface = RotatorInterface(self.host, self.port)
|
57
59
|
self.antennaAzimuth, _ = self.rotator.get_position()
|
58
60
|
self.set_antenna_azimuth(self.antennaAzimuth)
|
59
61
|
self.watch_timer: QTimer = QTimer()
|
60
62
|
self.watch_timer.timeout.connect(self.check_rotator)
|
61
63
|
self.watch_timer.start(1000)
|
62
64
|
|
65
|
+
def set_host_port(self, host: str, port: int) -> None:
|
66
|
+
""""""
|
67
|
+
self.host = host
|
68
|
+
self.port = port
|
69
|
+
self.rotator.set_host_port(self.host, self.port)
|
70
|
+
self.redrawMap()
|
71
|
+
|
63
72
|
def msg_from_main(self, msg: dict) -> None:
|
64
73
|
""""""
|
65
74
|
if self.active is True and isinstance(msg, dict):
|
not1mm/vfo.py
CHANGED
@@ -34,7 +34,7 @@ class VfoWindow(QDockWidget):
|
|
34
34
|
"""The VFO window."""
|
35
35
|
|
36
36
|
pref: dict = {}
|
37
|
-
old_vfo:
|
37
|
+
old_vfo: int = 0
|
38
38
|
old_pico: str = ""
|
39
39
|
message_shown: bool = False
|
40
40
|
current_palette: QPalette | None = None
|
@@ -96,7 +96,7 @@ class VfoWindow(QDockWidget):
|
|
96
96
|
)
|
97
97
|
self.timer.start(100)
|
98
98
|
|
99
|
-
def discover_device(self) -> str:
|
99
|
+
def discover_device(self) -> str | None:
|
100
100
|
"""
|
101
101
|
Poll all serial devices looking for correct one.
|
102
102
|
|
@@ -220,13 +220,13 @@ class VfoWindow(QDockWidget):
|
|
220
220
|
if self.rig_control is not None:
|
221
221
|
if self.rig_control.online is False:
|
222
222
|
self.rig_control.reinit()
|
223
|
-
if self.rig_control.online:
|
223
|
+
if self.rig_control.online is True:
|
224
224
|
try:
|
225
225
|
vfo: int = int(self.rig_control.get_vfo())
|
226
226
|
except ValueError:
|
227
227
|
return
|
228
|
-
if vfo < 1700000 or vfo > 60000000:
|
229
|
-
|
228
|
+
# if vfo < 1700000 or vfo > 60000000:
|
229
|
+
# return
|
230
230
|
if vfo != self.old_vfo or self.device_reconnect is True:
|
231
231
|
self.old_vfo: int = vfo
|
232
232
|
logger.debug(f"{vfo}")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: not1mm
|
3
|
-
Version: 25.6.
|
3
|
+
Version: 25.6.21
|
4
4
|
Summary: NOT1MM Logger
|
5
5
|
Author-email: Michael Bridak <michael.bridak@gmail.com>
|
6
6
|
License: GPL-3.0-or-later
|
@@ -246,6 +246,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
246
246
|
|
247
247
|
## Recent Changes
|
248
248
|
|
249
|
+
- [25-6-21] Remove range check on vfo display.
|
250
|
+
- [25-6-20] Added a Rotator tab in the configuration dialog.
|
249
251
|
- [25-6-18] Merged changes from @term73, Adding ES Manual Key contest.
|
250
252
|
- [25-6-16] Merged PR from @awandahl SM0HPL, adding ESM buttons to General DX Logging plugin.
|
251
253
|
- [25-6-15] Corrected tab focus of rotator windows buttons.
|
@@ -710,7 +712,8 @@ This window shows you a grid of DXCC entities you've aquired and on what bands.
|
|
710
712
|
`Window`>`Rotator`
|
711
713
|
|
712
714
|
The Rotator window is a work in progress. The Rotator window relies on the functionality
|
713
|
-
of the rotctld daemon. It connects to rotctld
|
715
|
+
of the rotctld daemon. It connects to rotctld on address 127.0.0.1 and port 4533. You can
|
716
|
+
change this if needed in the configuration dialog under the rotator tab. If started
|
714
717
|
and there is no connection, you will see this:
|
715
718
|
|
716
719
|

|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=jtaZgDrAsuAx29lHBpmspxUl2RUiciBAmZUSjMmofCg,175330
|
3
3
|
not1mm/bandmap.py,sha256=PpoZIuJ8dTj9erW0xYqbyneZrSQ-CEqbpek5jTlc6PQ,31173
|
4
4
|
not1mm/checkwindow.py,sha256=zEHlw40j6Wr3rvKbCQf2lcezCoiZqaBqEvBjQU5aKW0,7630
|
5
5
|
not1mm/dxcc_tracker.py,sha256=px1m6wcFv-ZDBDKyqSa0IcgAfE9GmQ5mptJHBbnWTcA,4379
|
@@ -8,11 +8,11 @@ not1mm/logwindow.py,sha256=O2dMaT_BYWsXA_dxsEHN92JwN-qVGy9nmH0MCMaG9gY,42830
|
|
8
8
|
not1mm/lookupservice.py,sha256=WyLp1m4XPxK0Nk7FH8IKA8jjAs25UcEMrwpCsHmW1fY,2678
|
9
9
|
not1mm/radio.py,sha256=4Lysf9BY3vdtYCHwKfzO5WN7IGyh4_lKSVuQ6F4Z08g,5536
|
10
10
|
not1mm/ratewindow.py,sha256=iBjqdOetIEX0wSwdGM89Ibt4gVlFdE-K8HQPnkVPVOg,6965
|
11
|
-
not1mm/rotator.py,sha256=
|
11
|
+
not1mm/rotator.py,sha256=A_qu2qyzlke0y4MstzisnWo0riUvuP9k-ww-msbh3C0,13080
|
12
12
|
not1mm/rtc_service.py,sha256=S9mF4rnoJKfj0We9Lt2aIWMkHKhDBGUCEhWf2tN0pVI,2899
|
13
13
|
not1mm/statistics.py,sha256=tEbAASTwmSvkZnEoIwadSZ_7Ic8yGaGpBLx_rbLLrng,8254
|
14
14
|
not1mm/test.py,sha256=WhL0DLlJTD15aON8Dkf2q_tlP_X1juxKZJh0jEC99tU,154
|
15
|
-
not1mm/vfo.py,sha256=
|
15
|
+
not1mm/vfo.py,sha256=QPeS0L93_JV0lwnzskKcIHaeI_PmVx1QjvbZmY9eors,10657
|
16
16
|
not1mm/voice_keying.py,sha256=HZImqC5NgnyW2nknNYQ3b7I8-6S_hxpq5G4RcIRXn_k,3005
|
17
17
|
not1mm/data/JetBrainsMono-Thin.ttf,sha256=B1bo6M8dZfp1GXdnZEebOXPvsVr09BnV1ydNwnrhtwI,270112
|
18
18
|
not1mm/data/MASTER.SCP,sha256=yLV5NPU5T2JRKbDukpUB2S_WXpxjyuSPmfV5gVBAoH8,363027
|
@@ -23,7 +23,7 @@ not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
|
|
23
23
|
not1mm/data/checkwindow.ui,sha256=kRRfMXOsvyQwCk93Fm8CWTaL3DCWFTIfyqncciRY2MI,5064
|
24
24
|
not1mm/data/cloud_green.png,sha256=MdXhls1n4XR7oM0Y84pqlsuay6byduAJF7NwgZ-g0DU,626
|
25
25
|
not1mm/data/cloud_red.png,sha256=vSIQ1X7_z484pv3xXjTRtdtfIontsUq11suTALSsaQA,482
|
26
|
-
not1mm/data/configuration.ui,sha256=
|
26
|
+
not1mm/data/configuration.ui,sha256=wkBOg1RJcKQt8UUqvelT4--kONBXOkGToqC0xvE9U7A,78034
|
27
27
|
not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
|
28
28
|
not1mm/data/cty.json,sha256=3Nk98AoENvBB4RwJCTheDVCjJ1AvX4ik5kg2R0iU1X0,4948509
|
29
29
|
not1mm/data/cwmacros.txt,sha256=NztufsX6R52gAO7VyJ2AHr7wOh41pJTwHKh5Lcs32ds,468
|
@@ -122,11 +122,11 @@ not1mm/lib/multicast.py,sha256=KJcruI-bOuHfHXPjl3SGQhL6I9sKrygy-sdFSvxffUM,3255
|
|
122
122
|
not1mm/lib/n1mm.py,sha256=H54mpgJF0GAmKavM-nb5OAq2SJFWYkux4eMWWiSRxJc,6288
|
123
123
|
not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
124
124
|
not1mm/lib/plugin_common.py,sha256=4M5CqBXPVvqiakmCEV_SvcRHAZrlwYgGRZwfxAw2e9U,13951
|
125
|
-
not1mm/lib/rot_interface.py,sha256=
|
125
|
+
not1mm/lib/rot_interface.py,sha256=foe488PDi8wU86e3DkaKSwMbDwdWbpkvxX_Ct2U7S5o,3985
|
126
126
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
127
|
-
not1mm/lib/settings.py,sha256=
|
127
|
+
not1mm/lib/settings.py,sha256=kri_B6RZ8ZAq5cTSvY4AKP6KsGLm597Dss67fqE6g28,16432
|
128
128
|
not1mm/lib/super_check_partial.py,sha256=jX7DjHesEV4KNVQbddJui0wAsYHerikH7W0iPv7PXQw,3110
|
129
|
-
not1mm/lib/version.py,sha256=
|
129
|
+
not1mm/lib/version.py,sha256=cAqS-YROZ_TvnaIGVxfEm2_OrtQ2gr4SSvnJ1DdP7a4,48
|
130
130
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
131
131
|
not1mm/plugins/10_10_fall_cw.py,sha256=oJh3JKqjOpnWElSlZpiQ631UnaOd8qra5s9bl_QoInk,14783
|
132
132
|
not1mm/plugins/10_10_spring_cw.py,sha256=p7dSDtbFK0e6Xouw2V6swYn3VFVgHKyx4IfRWyBjMZY,14786
|
@@ -191,9 +191,9 @@ not1mm/plugins/ukeidx.py,sha256=ZsIFXgOSwjuKNmN4W_C0TAgGqgnabJGNLMHwGkl3_bk,1910
|
|
191
191
|
not1mm/plugins/vhf_sprint.py,sha256=a9QFTpv8XUbZ_GLjdVCh7svykFa-gXOWwKFZ6MD3uQM,19289
|
192
192
|
not1mm/plugins/weekly_rtty.py,sha256=C8Xs3Q5UgSYx-mFFar8BVARWtmqlyrbeC98Ubzb4UN8,20128
|
193
193
|
not1mm/plugins/winter_field_day.py,sha256=hmAMgkdqIXtnCNyUp8J9Bb8liN8wj10wps6ROuG-Bok,15284
|
194
|
-
not1mm-25.6.
|
195
|
-
not1mm-25.6.
|
196
|
-
not1mm-25.6.
|
197
|
-
not1mm-25.6.
|
198
|
-
not1mm-25.6.
|
199
|
-
not1mm-25.6.
|
194
|
+
not1mm-25.6.21.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
195
|
+
not1mm-25.6.21.dist-info/METADATA,sha256=ZV62gfO_MpA1moqEFznRwWlDFryUn-3fPAujV4Xcqk4,37136
|
196
|
+
not1mm-25.6.21.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
197
|
+
not1mm-25.6.21.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
198
|
+
not1mm-25.6.21.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
199
|
+
not1mm-25.6.21.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|