not1mm 25.2.12__py3-none-any.whl → 25.2.26__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 +51 -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.26.dist-info}/METADATA +21 -4
- {not1mm-25.2.12.dist-info → not1mm-25.2.26.dist-info}/RECORD +11 -11
- {not1mm-25.2.12.dist-info → not1mm-25.2.26.dist-info}/WHEEL +1 -1
- {not1mm-25.2.12.dist-info → not1mm-25.2.26.dist-info}/LICENSE +0 -0
- {not1mm-25.2.12.dist-info → not1mm-25.2.26.dist-info}/entry_points.txt +0 -0
- {not1mm-25.2.12.dist-info → not1mm-25.2.26.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,45 @@ 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.radioButton_run.setChecked(True)
|
2274
|
+
self.run_sp_buttons_clicked()
|
2275
|
+
self.auto_cq = True
|
2276
|
+
self.auto_cq_time = datetime.datetime.now() + datetime.timedelta(
|
2277
|
+
milliseconds=self.auto_cq_delay
|
2278
|
+
)
|
2271
2279
|
self.process_function_key(self.F1)
|
2280
|
+
return
|
2272
2281
|
if event.key() == Qt.Key.Key_F2:
|
2273
2282
|
self.process_function_key(self.F2)
|
2283
|
+
return
|
2274
2284
|
if event.key() == Qt.Key.Key_F3:
|
2275
2285
|
self.process_function_key(self.F3)
|
2286
|
+
return
|
2276
2287
|
if event.key() == Qt.Key.Key_F4:
|
2277
2288
|
self.process_function_key(self.F4)
|
2289
|
+
return
|
2278
2290
|
if event.key() == Qt.Key.Key_F5:
|
2279
2291
|
self.process_function_key(self.F5)
|
2292
|
+
return
|
2280
2293
|
if event.key() == Qt.Key.Key_F6:
|
2281
2294
|
self.process_function_key(self.F6)
|
2295
|
+
return
|
2282
2296
|
if event.key() == Qt.Key.Key_F7:
|
2283
2297
|
self.process_function_key(self.F7)
|
2298
|
+
return
|
2284
2299
|
if event.key() == Qt.Key.Key_F8:
|
2285
2300
|
self.process_function_key(self.F8)
|
2301
|
+
return
|
2286
2302
|
if event.key() == Qt.Key.Key_F9:
|
2287
2303
|
self.process_function_key(self.F9)
|
2304
|
+
return
|
2288
2305
|
if event.key() == Qt.Key.Key_F10:
|
2289
2306
|
self.process_function_key(self.F10)
|
2307
|
+
return
|
2290
2308
|
if event.key() == Qt.Key.Key_F11:
|
2291
2309
|
self.process_function_key(self.F11)
|
2310
|
+
return
|
2292
2311
|
if event.key() == Qt.Key.Key_F12:
|
2293
2312
|
self.process_function_key(self.F12)
|
2294
2313
|
|
@@ -2991,12 +3010,16 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2991
3010
|
self.rtc_pass = self.pref.get("rtc_pass", "")
|
2992
3011
|
self.rtc_interval = self.pref.get("rtc_interval", 2)
|
2993
3012
|
|
3013
|
+
try:
|
3014
|
+
self.auto_cq_delay = int(self.pref.get("auto_cq_interval", 15)) * 1000
|
3015
|
+
except ValueError:
|
3016
|
+
self.auto_cq_delay = 15000
|
3017
|
+
|
2994
3018
|
if self.pref.get("send_rtc_scores", False):
|
2995
3019
|
self.rtc_service = RTCService()
|
2996
3020
|
self.rtc_service.moveToThread(self.rtc_thread)
|
2997
3021
|
self.rtc_thread.started.connect(self.rtc_service.run)
|
2998
3022
|
self.rtc_thread.finished.connect(self.rtc_service.deleteLater)
|
2999
|
-
# self.rtc_service.poll_callback.connect(self.rtc_result)
|
3000
3023
|
self.rtc_thread.start()
|
3001
3024
|
self.rtc_service.rtc_callback.connect(self.rtc_response)
|
3002
3025
|
|
@@ -3330,6 +3353,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3330
3353
|
-------
|
3331
3354
|
None
|
3332
3355
|
"""
|
3356
|
+
if self.auto_cq is True:
|
3357
|
+
self.stop_cw()
|
3333
3358
|
text = self.callsign.text()
|
3334
3359
|
text = text.upper()
|
3335
3360
|
position = self.callsign.cursorPosition()
|
@@ -3690,6 +3715,16 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3690
3715
|
Passing in a dictionary object with the
|
3691
3716
|
vfo freq, mode, bandwidth, and online state of the radio.
|
3692
3717
|
"""
|
3718
|
+
# This section has nothing to do with polling the radio
|
3719
|
+
# It's here because it gets called often enough to be useful.
|
3720
|
+
if self.auto_cq is True:
|
3721
|
+
if datetime.datetime.now() > self.auto_cq_time:
|
3722
|
+
self.auto_cq_time = datetime.datetime.now() + datetime.timedelta(
|
3723
|
+
milliseconds=self.auto_cq_delay
|
3724
|
+
)
|
3725
|
+
self.process_function_key(self.F1)
|
3726
|
+
|
3727
|
+
# The following pertains to radio polling.
|
3693
3728
|
logger.debug(f"{the_dict=}")
|
3694
3729
|
self.set_radio_icon(0)
|
3695
3730
|
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.26
|
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,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
237
240
|
|
238
241
|
## Recent Changes
|
239
242
|
|
243
|
+
- [25-2-26] Switch to a Run state if engaging auto_cq.
|
244
|
+
- [25-2-22] Add Auto CQ.
|
240
245
|
- [25-2-12] Merged PR from @alduhoo Adding RandomGram event.
|
241
246
|
- [25-2-6] Trimmed out newer tags from UI files, 'cause stuff be old sometimes.
|
242
247
|
|
@@ -633,15 +638,27 @@ Generic Contest. Make sure the Text Capture Order field says CALL EXCHANGE.
|
|
633
638
|
|
634
639
|
## Sending CW
|
635
640
|
|
641
|
+
### Sending CW Macros
|
642
|
+
|
636
643
|
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.
|
644
|
+
pressing F1 - F12. See next section on Editing macro keys.
|
645
|
+
|
646
|
+
### Auto CQ
|
647
|
+
|
648
|
+
If you press `SHIFT-F1` The Auto CQ mode will be activated and the F1 macro will be resent
|
649
|
+
after each Auto CQ Delay interval has passed. The delay can be changed by going to the
|
650
|
+
`Options` TAB in the Configuration dialog.
|
651
|
+
|
652
|
+
The auto CQ can be cancelled by either typing in the call sign field, or by pressing ESC.
|
653
|
+
|
654
|
+
### Sending CW Free Form
|
638
655
|
|
639
656
|
If you need to send something freeform, you can press `CTRL-SHIFT-K`, this will
|
640
657
|
expose an entry field at the bottom of the window which you can type directly into.
|
641
658
|
When you're done you can either press CTRL-SHIFT-K again, or press the Enter Key to
|
642
659
|
close the field.
|
643
660
|
|
644
|
-
|
661
|
+
### Editing macro keys
|
645
662
|
|
646
663
|
To edit the macros, choose `File` > `Edit Macros`. This will open your systems
|
647
664
|
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=E-WfACez3mMqu8eFxfZDrOoEMZvaHkCOcxyXejRzmXE,148236
|
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=CsDxOYetTMRz8TLoDkHM8RXaIyBr7iEI-N7D9kQVK7E,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.26.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
171
|
+
not1mm-25.2.26.dist-info/METADATA,sha256=vqrs5zwGpA6J9wfe3FKcjeTNWCv7929AnTVHwaRloq8,36180
|
172
|
+
not1mm-25.2.26.dist-info/WHEEL,sha256=nn6H5-ilmfVryoAQl3ZQ2l8SH5imPWFpm1A5FgEuFV4,91
|
173
|
+
not1mm-25.2.26.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
174
|
+
not1mm-25.2.26.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
175
|
+
not1mm-25.2.26.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|