not1mm 25.2.12__py3-none-any.whl → 25.2.22__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 +45 -16
- not1mm/data/configuration.ui +56 -12
- not1mm/data/main.ui +15 -0
- not1mm/lib/settings.py +9 -0
- not1mm/lib/version.py +1 -1
- {not1mm-25.2.12.dist-info → not1mm-25.2.22.dist-info}/METADATA +20 -4
- {not1mm-25.2.12.dist-info → not1mm-25.2.22.dist-info}/RECORD +11 -11
- {not1mm-25.2.12.dist-info → not1mm-25.2.22.dist-info}/LICENSE +0 -0
- {not1mm-25.2.12.dist-info → not1mm-25.2.22.dist-info}/WHEEL +0 -0
- {not1mm-25.2.12.dist-info → not1mm-25.2.22.dist-info}/entry_points.txt +0 -0
- {not1mm-25.2.12.dist-info → not1mm-25.2.22.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -183,6 +183,10 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
183
183
|
|
184
184
|
current_widget = None
|
185
185
|
|
186
|
+
auto_cq = False
|
187
|
+
auto_cq_time = datetime.datetime.now()
|
188
|
+
auto_cq_delay = 15000
|
189
|
+
|
186
190
|
def __init__(self, splash):
|
187
191
|
super().__init__()
|
188
192
|
logger.info("MainWindow: __init__")
|
@@ -773,8 +777,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
773
777
|
group[item] = ""
|
774
778
|
count += 1
|
775
779
|
group_list.append(group)
|
776
|
-
# database.add_callhistory_item(group)
|
777
|
-
# print(f"{group=}")
|
778
780
|
except IndexError:
|
779
781
|
...
|
780
782
|
self.database.add_callhistory_items(group_list)
|
@@ -2024,6 +2026,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2024
2026
|
|
2025
2027
|
def stop_cw(self):
|
2026
2028
|
""""""
|
2029
|
+
self.auto_cq = False
|
2027
2030
|
if self.cw is not None:
|
2028
2031
|
if self.cw.servertype == 1:
|
2029
2032
|
self.cw.sendcw("\x1b4")
|
@@ -2080,9 +2083,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2080
2083
|
ABCDEFGHIJKLMNOPQRSTUVWXY
|
2081
2084
|
"""
|
2082
2085
|
modifier = event.modifiers()
|
2083
|
-
# the_key = event.key()
|
2084
|
-
|
2085
|
-
# print(f"Modifier is {modifier=} Key is {the_key=}")
|
2086
2086
|
|
2087
2087
|
if (
|
2088
2088
|
event.key() == Qt.Key.Key_Equal
|
@@ -2143,16 +2143,17 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2143
2143
|
event.key() == Qt.Key.Key_Escape
|
2144
2144
|
and modifier != Qt.KeyboardModifier.ControlModifier
|
2145
2145
|
):
|
2146
|
-
|
2147
|
-
|
2148
|
-
|
2149
|
-
|
2150
|
-
|
2151
|
-
|
2152
|
-
|
2153
|
-
|
2154
|
-
|
2155
|
-
|
2146
|
+
self.stop_cw()
|
2147
|
+
# if self.cw is not None:
|
2148
|
+
# if self.cw.servertype == 1:
|
2149
|
+
# self.cw.sendcw("\x1b4")
|
2150
|
+
# return
|
2151
|
+
# if self.rig_control:
|
2152
|
+
# if self.rig_control.online:
|
2153
|
+
# if self.pref.get("cwtype") == 3 and self.rig_control is not None:
|
2154
|
+
# if self.rig_control.interface == "flrig":
|
2155
|
+
# self.rig_control.cat.set_flrig_cw_send(False)
|
2156
|
+
# self.rig_control.cat.set_flrig_cw_send(True)
|
2156
2157
|
if event.key() == Qt.Key.Key_Up:
|
2157
2158
|
cmd = {}
|
2158
2159
|
cmd["cmd"] = "PREVSPOT"
|
@@ -2268,27 +2269,43 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2268
2269
|
next_tab.end(False)
|
2269
2270
|
return
|
2270
2271
|
if event.key() == Qt.Key.Key_F1:
|
2272
|
+
if event.modifiers() == Qt.KeyboardModifier.ShiftModifier:
|
2273
|
+
self.auto_cq = True
|
2274
|
+
self.auto_cq_time = datetime.datetime.now() + datetime.timedelta(
|
2275
|
+
milliseconds=self.auto_cq_delay
|
2276
|
+
)
|
2271
2277
|
self.process_function_key(self.F1)
|
2278
|
+
return
|
2272
2279
|
if event.key() == Qt.Key.Key_F2:
|
2273
2280
|
self.process_function_key(self.F2)
|
2281
|
+
return
|
2274
2282
|
if event.key() == Qt.Key.Key_F3:
|
2275
2283
|
self.process_function_key(self.F3)
|
2284
|
+
return
|
2276
2285
|
if event.key() == Qt.Key.Key_F4:
|
2277
2286
|
self.process_function_key(self.F4)
|
2287
|
+
return
|
2278
2288
|
if event.key() == Qt.Key.Key_F5:
|
2279
2289
|
self.process_function_key(self.F5)
|
2290
|
+
return
|
2280
2291
|
if event.key() == Qt.Key.Key_F6:
|
2281
2292
|
self.process_function_key(self.F6)
|
2293
|
+
return
|
2282
2294
|
if event.key() == Qt.Key.Key_F7:
|
2283
2295
|
self.process_function_key(self.F7)
|
2296
|
+
return
|
2284
2297
|
if event.key() == Qt.Key.Key_F8:
|
2285
2298
|
self.process_function_key(self.F8)
|
2299
|
+
return
|
2286
2300
|
if event.key() == Qt.Key.Key_F9:
|
2287
2301
|
self.process_function_key(self.F9)
|
2302
|
+
return
|
2288
2303
|
if event.key() == Qt.Key.Key_F10:
|
2289
2304
|
self.process_function_key(self.F10)
|
2305
|
+
return
|
2290
2306
|
if event.key() == Qt.Key.Key_F11:
|
2291
2307
|
self.process_function_key(self.F11)
|
2308
|
+
return
|
2292
2309
|
if event.key() == Qt.Key.Key_F12:
|
2293
2310
|
self.process_function_key(self.F12)
|
2294
2311
|
|
@@ -2991,12 +3008,16 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2991
3008
|
self.rtc_pass = self.pref.get("rtc_pass", "")
|
2992
3009
|
self.rtc_interval = self.pref.get("rtc_interval", 2)
|
2993
3010
|
|
3011
|
+
try:
|
3012
|
+
self.auto_cq_delay = int(self.pref.get("auto_cq_interval", 15)) * 1000
|
3013
|
+
except ValueError:
|
3014
|
+
self.auto_cq_delay = 15000
|
3015
|
+
|
2994
3016
|
if self.pref.get("send_rtc_scores", False):
|
2995
3017
|
self.rtc_service = RTCService()
|
2996
3018
|
self.rtc_service.moveToThread(self.rtc_thread)
|
2997
3019
|
self.rtc_thread.started.connect(self.rtc_service.run)
|
2998
3020
|
self.rtc_thread.finished.connect(self.rtc_service.deleteLater)
|
2999
|
-
# self.rtc_service.poll_callback.connect(self.rtc_result)
|
3000
3021
|
self.rtc_thread.start()
|
3001
3022
|
self.rtc_service.rtc_callback.connect(self.rtc_response)
|
3002
3023
|
|
@@ -3330,6 +3351,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3330
3351
|
-------
|
3331
3352
|
None
|
3332
3353
|
"""
|
3354
|
+
if self.auto_cq is True:
|
3355
|
+
self.stop_cw()
|
3333
3356
|
text = self.callsign.text()
|
3334
3357
|
text = text.upper()
|
3335
3358
|
position = self.callsign.cursorPosition()
|
@@ -3690,6 +3713,12 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3690
3713
|
Passing in a dictionary object with the
|
3691
3714
|
vfo freq, mode, bandwidth, and online state of the radio.
|
3692
3715
|
"""
|
3716
|
+
if self.auto_cq is True:
|
3717
|
+
if datetime.datetime.now() > self.auto_cq_time:
|
3718
|
+
self.auto_cq_time = datetime.datetime.now() + datetime.timedelta(
|
3719
|
+
milliseconds=self.auto_cq_delay
|
3720
|
+
)
|
3721
|
+
self.process_function_key(self.F1)
|
3693
3722
|
logger.debug(f"{the_dict=}")
|
3694
3723
|
self.set_radio_icon(0)
|
3695
3724
|
info_dirty = False
|
not1mm/data/configuration.ui
CHANGED
@@ -2244,24 +2244,68 @@
|
|
2244
2244
|
</widget>
|
2245
2245
|
</item>
|
2246
2246
|
<item>
|
2247
|
-
<
|
2248
|
-
<property name="
|
2249
|
-
<
|
2247
|
+
<layout class="QFormLayout" name="formLayout_3">
|
2248
|
+
<property name="bottomMargin">
|
2249
|
+
<number>0</number>
|
2250
2250
|
</property>
|
2251
|
-
<
|
2252
|
-
<
|
2251
|
+
<item row="0" column="0">
|
2252
|
+
<widget class="QLabel" name="label_28">
|
2253
|
+
<property name="text">
|
2254
|
+
<string>Post Interval (minutes)</string>
|
2255
|
+
</property>
|
2256
|
+
<property name="alignment">
|
2257
|
+
<set>Qt::AlignCenter</set>
|
2258
|
+
</property>
|
2259
|
+
</widget>
|
2260
|
+
</item>
|
2261
|
+
<item row="0" column="1">
|
2262
|
+
<widget class="QLineEdit" name="rtc_interval">
|
2263
|
+
<property name="text">
|
2264
|
+
<string>2</string>
|
2265
|
+
</property>
|
2266
|
+
<property name="alignment">
|
2267
|
+
<set>Qt::AlignCenter</set>
|
2268
|
+
</property>
|
2269
|
+
</widget>
|
2270
|
+
</item>
|
2271
|
+
</layout>
|
2272
|
+
</item>
|
2273
|
+
<item>
|
2274
|
+
<widget class="Line" name="line_3">
|
2275
|
+
<property name="orientation">
|
2276
|
+
<enum>Qt::Horizontal</enum>
|
2253
2277
|
</property>
|
2254
2278
|
</widget>
|
2255
2279
|
</item>
|
2256
2280
|
<item>
|
2257
|
-
<
|
2258
|
-
<property name="
|
2259
|
-
<
|
2281
|
+
<layout class="QFormLayout" name="formLayout_2">
|
2282
|
+
<property name="horizontalSpacing">
|
2283
|
+
<number>6</number>
|
2260
2284
|
</property>
|
2261
|
-
<property name="
|
2262
|
-
<
|
2285
|
+
<property name="verticalSpacing">
|
2286
|
+
<number>6</number>
|
2263
2287
|
</property>
|
2264
|
-
|
2288
|
+
<property name="bottomMargin">
|
2289
|
+
<number>0</number>
|
2290
|
+
</property>
|
2291
|
+
<item row="0" column="0">
|
2292
|
+
<widget class="QLabel" name="label_30">
|
2293
|
+
<property name="text">
|
2294
|
+
<string>Auto CQ Delay (Seconds)</string>
|
2295
|
+
</property>
|
2296
|
+
</widget>
|
2297
|
+
</item>
|
2298
|
+
<item row="0" column="1">
|
2299
|
+
<widget class="QLineEdit" name="auto_cq_delay">
|
2300
|
+
<property name="text">
|
2301
|
+
<string>15</string>
|
2302
|
+
</property>
|
2303
|
+
<property name="alignment">
|
2304
|
+
<set>Qt::AlignCenter</set>
|
2305
|
+
</property>
|
2306
|
+
</widget>
|
2307
|
+
</item>
|
2308
|
+
</layout>
|
2265
2309
|
</item>
|
2266
2310
|
<item>
|
2267
2311
|
<spacer name="verticalSpacer_8">
|
@@ -2397,7 +2441,7 @@
|
|
2397
2441
|
</property>
|
2398
2442
|
</designerdata>
|
2399
2443
|
<buttongroups>
|
2400
|
-
<buttongroup name="buttonGroup"/>
|
2401
2444
|
<buttongroup name="buttonGroup_2"/>
|
2445
|
+
<buttongroup name="buttonGroup"/>
|
2402
2446
|
</buttongroups>
|
2403
2447
|
</ui>
|
not1mm/data/main.ui
CHANGED
@@ -1745,6 +1745,9 @@
|
|
1745
1745
|
<family>JetBrains Mono ExtraLight</family>
|
1746
1746
|
</font>
|
1747
1747
|
</property>
|
1748
|
+
<property name="shortcut">
|
1749
|
+
<string>Alt+L</string>
|
1750
|
+
</property>
|
1748
1751
|
<property name="autoRepeat">
|
1749
1752
|
<bool>false</bool>
|
1750
1753
|
</property>
|
@@ -1913,6 +1916,9 @@
|
|
1913
1916
|
<family>JetBrains Mono ExtraLight</family>
|
1914
1917
|
</font>
|
1915
1918
|
</property>
|
1919
|
+
<property name="shortcut">
|
1920
|
+
<string>Alt+B</string>
|
1921
|
+
</property>
|
1916
1922
|
</action>
|
1917
1923
|
<action name="actionQuit">
|
1918
1924
|
<property name="text">
|
@@ -1961,6 +1967,9 @@
|
|
1961
1967
|
<family>JetBrains Mono ExtraLight</family>
|
1962
1968
|
</font>
|
1963
1969
|
</property>
|
1970
|
+
<property name="shortcut">
|
1971
|
+
<string>Alt+C</string>
|
1972
|
+
</property>
|
1964
1973
|
</action>
|
1965
1974
|
<action name="actionRate_Window">
|
1966
1975
|
<property name="checkable">
|
@@ -1974,6 +1983,9 @@
|
|
1974
1983
|
<family>JetBrains Mono ExtraLight</family>
|
1975
1984
|
</font>
|
1976
1985
|
</property>
|
1986
|
+
<property name="shortcut">
|
1987
|
+
<string>Alt+R</string>
|
1988
|
+
</property>
|
1977
1989
|
</action>
|
1978
1990
|
<action name="actionVFO">
|
1979
1991
|
<property name="checkable">
|
@@ -1987,6 +1999,9 @@
|
|
1987
1999
|
<family>JetBrains Mono ExtraLight</family>
|
1988
2000
|
</font>
|
1989
2001
|
</property>
|
2002
|
+
<property name="shortcut">
|
2003
|
+
<string>Alt+V</string>
|
2004
|
+
</property>
|
1990
2005
|
</action>
|
1991
2006
|
<action name="actionDark_Mode_2">
|
1992
2007
|
<property name="checkable">
|
not1mm/lib/settings.py
CHANGED
@@ -52,6 +52,8 @@ class Settings(QtWidgets.QDialog):
|
|
52
52
|
self.rtc_pass.setText(str(self.preference.get("rtc_pass", "")))
|
53
53
|
self.rtc_interval.setText(str(self.preference.get("rtc_interval", "2")))
|
54
54
|
|
55
|
+
self.auto_cq_delay.setText(str(self.preference.get("auto_cq_interval", "15")))
|
56
|
+
|
55
57
|
self.use_call_history.setChecked(
|
56
58
|
bool(self.preference.get("use_call_history", False))
|
57
59
|
)
|
@@ -219,6 +221,13 @@ class Settings(QtWidgets.QDialog):
|
|
219
221
|
except ValueError:
|
220
222
|
self.preference["rtc_interval"] = 2
|
221
223
|
|
224
|
+
try:
|
225
|
+
self.preference["auto_cq_interval"] = int(self.auto_cq_delay.text())
|
226
|
+
except ValueError:
|
227
|
+
self.preference["auto_cq_interval"] = 15
|
228
|
+
|
229
|
+
self.auto_cq_delay.setText(str(self.preference.get("auto_cq_interval", "15")))
|
230
|
+
|
222
231
|
self.preference["use_call_history"] = self.use_call_history.isChecked()
|
223
232
|
self.preference["use_esm"] = self.use_esm.isChecked()
|
224
233
|
self.preference["esm_cq"] = self.esm_cq.currentText()
|
not1mm/lib/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: not1mm
|
3
|
-
Version: 25.2.
|
3
|
+
Version: 25.2.22
|
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
|
@@ -102,7 +102,10 @@ Requires-Dist: Levenshtein
|
|
102
102
|
- [Options](#options)
|
103
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
|
+
- [Sending CW Macros](#sending-cw-macros)
|
106
|
+
- [Auto CQ](#auto-cq)
|
107
|
+
- [Sending CW Free Form](#sending-cw-free-form)
|
108
|
+
- [Editing macro keys](#editing-macro-keys)
|
106
109
|
- [Macro substitutions](#macro-substitutions)
|
107
110
|
- [Macro use with voice](#macro-use-with-voice)
|
108
111
|
- [cty.dat and QRZ lookups for distance and bearing](#ctydat-and-qrz-lookups-for-distance-and-bearing)
|
@@ -237,6 +240,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
237
240
|
|
238
241
|
## Recent Changes
|
239
242
|
|
243
|
+
- [25-2-22] Add Auto CQ.
|
240
244
|
- [25-2-12] Merged PR from @alduhoo Adding RandomGram event.
|
241
245
|
- [25-2-6] Trimmed out newer tags from UI files, 'cause stuff be old sometimes.
|
242
246
|
|
@@ -633,15 +637,27 @@ Generic Contest. Make sure the Text Capture Order field says CALL EXCHANGE.
|
|
633
637
|
|
634
638
|
## Sending CW
|
635
639
|
|
640
|
+
### Sending CW Macros
|
641
|
+
|
636
642
|
Other than sending CW by hand, you can also send predefined CW text messages by
|
637
|
-
pressing F1 - F12. See next section on Editing macro keys.
|
643
|
+
pressing F1 - F12. See next section on Editing macro keys.
|
644
|
+
|
645
|
+
### Auto CQ
|
646
|
+
|
647
|
+
If you press `SHIFT-F1` The Auto CQ mode will be activated and the F1 macro will be resent
|
648
|
+
after each Auto CQ Delay interval has passed. The delay can be changed by going to the
|
649
|
+
`Options` TAB in the Configuration dialog.
|
650
|
+
|
651
|
+
The auto CQ can be cancelled by either typing in the call sign field, or by pressing ESC.
|
652
|
+
|
653
|
+
### Sending CW Free Form
|
638
654
|
|
639
655
|
If you need to send something freeform, you can press `CTRL-SHIFT-K`, this will
|
640
656
|
expose an entry field at the bottom of the window which you can type directly into.
|
641
657
|
When you're done you can either press CTRL-SHIFT-K again, or press the Enter Key to
|
642
658
|
close the field.
|
643
659
|
|
644
|
-
|
660
|
+
### Editing macro keys
|
645
661
|
|
646
662
|
To edit the macros, choose `File` > `Edit Macros`. This will open your systems
|
647
663
|
registered text editor with current macros loaded. When your done just save the
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=4Jv9ksSCUlh92_wpUW3eGRPAYwv5jN_7WzE_ayW_33A,147950
|
3
3
|
not1mm/bandmap.py,sha256=vaOeqv_gW0-K0P3xA9JYcuiFILiKw601tjHQCwuoV-s,31260
|
4
4
|
not1mm/checkwindow.py,sha256=VFAcKYTcoWhmIf91chwY6tyao9FQMWPiUkgDDkkWaog,9670
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -18,7 +18,7 @@ not1mm/data/alpha bravo charlie delta.txt,sha256=d5QMmSWEUAe4Rj1XbNjTPLa_5Be4Se6
|
|
18
18
|
not1mm/data/bandmap.ui,sha256=rh9GHdBOIfrOmamR6zUZ15aJ4VDsX5mQoVuZs8bV8TI,8034
|
19
19
|
not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
|
20
20
|
not1mm/data/checkwindow.ui,sha256=PRD98K0julJ9EfWqoE89dT8UPuPKQzGiWBk_efAko3o,5141
|
21
|
-
not1mm/data/configuration.ui,sha256=
|
21
|
+
not1mm/data/configuration.ui,sha256=mqhEvxD9lQGeoEkUrvbO9uNrOG62z6EIUUMa_b_SG-o,74752
|
22
22
|
not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
|
23
23
|
not1mm/data/cty.json,sha256=dPG9K1Pm4Rxd4uJom_gQ8y-sbqiZfILpl4kBAFnOveU,4877142
|
24
24
|
not1mm/data/cwmacros.txt,sha256=NztufsX6R52gAO7VyJ2AHr7wOh41pJTwHKh5Lcs32ds,468
|
@@ -32,7 +32,7 @@ not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcC
|
|
32
32
|
not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N90,2925
|
33
33
|
not1mm/data/logwindow.ui,sha256=f7vULj96tHIQuR1nJMyvPHHcmVgzkhv9D1isyojsnFU,1458
|
34
34
|
not1mm/data/logwindowx.ui,sha256=CwpI-h7cI1yqyldH9quKftsdHL5lTyL9ABOcf80nfqc,1632
|
35
|
-
not1mm/data/main.ui,sha256=
|
35
|
+
not1mm/data/main.ui,sha256=cYy2Zk0bDNK2cJOANivXheML4_y27CAmO7DR_yscNT0,62814
|
36
36
|
not1mm/data/new_contest.ui,sha256=WVTVQ69vnQNKOIi88KPPLgY5hvW3DdgX-pkQtHdaovY,24170
|
37
37
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
38
38
|
not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
|
@@ -114,9 +114,9 @@ not1mm/lib/n1mm.py,sha256=H54mpgJF0GAmKavM-nb5OAq2SJFWYkux4eMWWiSRxJc,6288
|
|
114
114
|
not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
115
115
|
not1mm/lib/plugin_common.py,sha256=M5reDYM-v5IjAa2yTROvZTeTDkXYHb3U52W9mc9GxwA,13213
|
116
116
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
117
|
-
not1mm/lib/settings.py,sha256=
|
117
|
+
not1mm/lib/settings.py,sha256=mXffn8Xaj5KATPQinNBR0V5DbHWQPsRfh24_axWGYuk,15254
|
118
118
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
119
|
-
not1mm/lib/version.py,sha256=
|
119
|
+
not1mm/lib/version.py,sha256=YyHhlv86HqZt-y6-w0bTg49_FZBc1moC-gosWfGb0HA,48
|
120
120
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
121
121
|
not1mm/plugins/10_10_fall_cw.py,sha256=5QUyGMvGBC-HxcY_z9QbfuxSg3f7p6C9K4qhTxgZE7k,14719
|
122
122
|
not1mm/plugins/10_10_spring_cw.py,sha256=XjYFM263WYyG6nVQzPObW4YC7Z9L93rixSOcVsxPvH4,14722
|
@@ -167,9 +167,9 @@ not1mm/plugins/ref_ssb.py,sha256=Z_XmMpYKcI5dZh4TQqvQDcz-cLpMzpDEKBnb5iHeBLQ,215
|
|
167
167
|
not1mm/plugins/stew_perry_topband.py,sha256=D1hekmMbx-i4BhaP2uzOK3OzaVVMMdgcN3RmfweNqHo,15341
|
168
168
|
not1mm/plugins/weekly_rtty.py,sha256=rdlIrsxBeuj-RQc5OStVNF7sGCtBK5t6inN5Z7DI4tw,20066
|
169
169
|
not1mm/plugins/winter_field_day.py,sha256=JK4r1vfxs7aADR7ZYbjZniz3f5s3_ipSQDZ0GRNWC7I,15222
|
170
|
-
not1mm-25.2.
|
171
|
-
not1mm-25.2.
|
172
|
-
not1mm-25.2.
|
173
|
-
not1mm-25.2.
|
174
|
-
not1mm-25.2.
|
175
|
-
not1mm-25.2.
|
170
|
+
not1mm-25.2.22.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
171
|
+
not1mm-25.2.22.dist-info/METADATA,sha256=SRA1jtgHVpebHddRFUlRAP8Vdbg70-TS3glCQIFqCA4,36125
|
172
|
+
not1mm-25.2.22.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
173
|
+
not1mm-25.2.22.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
174
|
+
not1mm-25.2.22.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
175
|
+
not1mm-25.2.22.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|