not1mm 25.4.11.3__py3-none-any.whl → 25.4.13__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 +17 -0
- not1mm/data/donors.html +1 -0
- not1mm/data/main.ui +34 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/jidx_cw.py +14 -3
- not1mm/plugins/jidx_ph.py +14 -3
- not1mm/test.py +34 -5
- {not1mm-25.4.11.3.dist-info → not1mm-25.4.13.dist-info}/METADATA +39 -15
- {not1mm-25.4.11.3.dist-info → not1mm-25.4.13.dist-info}/RECORD +13 -13
- {not1mm-25.4.11.3.dist-info → not1mm-25.4.13.dist-info}/WHEEL +0 -0
- {not1mm-25.4.11.3.dist-info → not1mm-25.4.13.dist-info}/entry_points.txt +0 -0
- {not1mm-25.4.11.3.dist-info → not1mm-25.4.13.dist-info}/licenses/LICENSE +0 -0
- {not1mm-25.4.11.3.dist-info → not1mm-25.4.13.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -189,6 +189,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
189
189
|
current_widget = None
|
190
190
|
|
191
191
|
auto_cq = False
|
192
|
+
auto_cq_then = datetime.datetime.now()
|
192
193
|
auto_cq_time = datetime.datetime.now()
|
193
194
|
auto_cq_delay = 15000
|
194
195
|
|
@@ -226,6 +227,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
226
227
|
}
|
227
228
|
self.cw_entry.hide()
|
228
229
|
self.leftdot.hide()
|
230
|
+
self.cwprogressBar.hide()
|
229
231
|
self.rightdot.hide()
|
230
232
|
self.n1mm = N1MM()
|
231
233
|
self.ft8 = FT8Watcher()
|
@@ -2107,6 +2109,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2107
2109
|
""""""
|
2108
2110
|
self.auto_cq = False
|
2109
2111
|
self.leftdot.hide()
|
2112
|
+
self.cwprogressBar.hide()
|
2110
2113
|
if self.cw is not None:
|
2111
2114
|
if self.cw.servertype == 1:
|
2112
2115
|
self.cw.sendcw("\x1b4")
|
@@ -2361,7 +2364,10 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2361
2364
|
self.run_sp_buttons_clicked()
|
2362
2365
|
# self.make_button_blue(self.F1)
|
2363
2366
|
self.leftdot.show()
|
2367
|
+
self.cwprogressBar.setValue(100)
|
2368
|
+
self.cwprogressBar.show()
|
2364
2369
|
self.auto_cq = True
|
2370
|
+
self.auto_cq_then = datetime.datetime.now()
|
2365
2371
|
self.auto_cq_time = datetime.datetime.now() + datetime.timedelta(
|
2366
2372
|
milliseconds=self.auto_cq_delay
|
2367
2373
|
)
|
@@ -3813,7 +3819,18 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3813
3819
|
# This section has nothing to do with polling the radio
|
3814
3820
|
# It's here because it gets called often enough to be useful.
|
3815
3821
|
if self.auto_cq is True:
|
3822
|
+
total_duration = self.auto_cq_time - self.auto_cq_then
|
3823
|
+
elapsed_duration = datetime.datetime.now() - self.auto_cq_then
|
3824
|
+
if total_duration.total_seconds() > 0:
|
3825
|
+
percentage_complete = int(
|
3826
|
+
(elapsed_duration.total_seconds() / total_duration.total_seconds())
|
3827
|
+
* 100
|
3828
|
+
)
|
3829
|
+
percentage_complete = min(100, percentage_complete)
|
3830
|
+
self.cwprogressBar.setValue(100 - percentage_complete)
|
3831
|
+
|
3816
3832
|
if datetime.datetime.now() > self.auto_cq_time:
|
3833
|
+
self.auto_cq_then = datetime.datetime.now()
|
3817
3834
|
self.auto_cq_time = datetime.datetime.now() + datetime.timedelta(
|
3818
3835
|
milliseconds=self.auto_cq_delay
|
3819
3836
|
)
|
not1mm/data/donors.html
CHANGED
not1mm/data/main.ui
CHANGED
@@ -935,6 +935,40 @@
|
|
935
935
|
</property>
|
936
936
|
</widget>
|
937
937
|
</item>
|
938
|
+
<item>
|
939
|
+
<widget class="QProgressBar" name="cwprogressBar">
|
940
|
+
<property name="sizePolicy">
|
941
|
+
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
|
942
|
+
<horstretch>0</horstretch>
|
943
|
+
<verstretch>0</verstretch>
|
944
|
+
</sizepolicy>
|
945
|
+
</property>
|
946
|
+
<property name="minimumSize">
|
947
|
+
<size>
|
948
|
+
<width>0</width>
|
949
|
+
<height>0</height>
|
950
|
+
</size>
|
951
|
+
</property>
|
952
|
+
<property name="maximumSize">
|
953
|
+
<size>
|
954
|
+
<width>5</width>
|
955
|
+
<height>29</height>
|
956
|
+
</size>
|
957
|
+
</property>
|
958
|
+
<property name="value">
|
959
|
+
<number>50</number>
|
960
|
+
</property>
|
961
|
+
<property name="textVisible">
|
962
|
+
<bool>false</bool>
|
963
|
+
</property>
|
964
|
+
<property name="orientation">
|
965
|
+
<enum>Qt::Vertical</enum>
|
966
|
+
</property>
|
967
|
+
<property name="invertedAppearance">
|
968
|
+
<bool>false</bool>
|
969
|
+
</property>
|
970
|
+
</widget>
|
971
|
+
</item>
|
938
972
|
<item>
|
939
973
|
<widget class="QLabel" name="rightdot">
|
940
974
|
<property name="text">
|
not1mm/lib/version.py
CHANGED
not1mm/plugins/jidx_cw.py
CHANGED
@@ -335,14 +335,25 @@ def cabrillo(self, file_encoding):
|
|
335
335
|
file_encoding,
|
336
336
|
)
|
337
337
|
output_cabrillo_line(
|
338
|
-
f"ADDRESS: {self.station.get('City', '')}
|
339
|
-
f"{self.station.get('Zip', '')}",
|
338
|
+
f"ADDRESS-CITY: {self.station.get('City', '')}",
|
340
339
|
"\r\n",
|
341
340
|
file_descriptor,
|
342
341
|
file_encoding,
|
343
342
|
)
|
344
343
|
output_cabrillo_line(
|
345
|
-
f"ADDRESS: {self.station.get('
|
344
|
+
f"ADDRESS-STATE-PROVINCE: {self.station.get('State', '')}",
|
345
|
+
"\r\n",
|
346
|
+
file_descriptor,
|
347
|
+
file_encoding,
|
348
|
+
)
|
349
|
+
output_cabrillo_line(
|
350
|
+
f"ADDRESS-POSTALCODE: {self.station.get('Zip', '')}",
|
351
|
+
"\r\n",
|
352
|
+
file_descriptor,
|
353
|
+
file_encoding,
|
354
|
+
)
|
355
|
+
output_cabrillo_line(
|
356
|
+
f"ADDRESS-COUNTRY: {self.station.get('Country', '')}",
|
346
357
|
"\r\n",
|
347
358
|
file_descriptor,
|
348
359
|
file_encoding,
|
not1mm/plugins/jidx_ph.py
CHANGED
@@ -304,14 +304,25 @@ def cabrillo(self, file_encoding):
|
|
304
304
|
file_encoding,
|
305
305
|
)
|
306
306
|
output_cabrillo_line(
|
307
|
-
f"ADDRESS: {self.station.get('City', '')}
|
308
|
-
f"{self.station.get('Zip', '')}",
|
307
|
+
f"ADDRESS-CITY: {self.station.get('City', '')}",
|
309
308
|
"\r\n",
|
310
309
|
file_descriptor,
|
311
310
|
file_encoding,
|
312
311
|
)
|
313
312
|
output_cabrillo_line(
|
314
|
-
f"ADDRESS: {self.station.get('
|
313
|
+
f"ADDRESS-STATE-PROVINCE: {self.station.get('State', '')}",
|
314
|
+
"\r\n",
|
315
|
+
file_descriptor,
|
316
|
+
file_encoding,
|
317
|
+
)
|
318
|
+
output_cabrillo_line(
|
319
|
+
f"ADDRESS-POSTALCODE: {self.station.get('Zip', '')}",
|
320
|
+
"\r\n",
|
321
|
+
file_descriptor,
|
322
|
+
file_encoding,
|
323
|
+
)
|
324
|
+
output_cabrillo_line(
|
325
|
+
f"ADDRESS-COUNTRY: {self.station.get('Country', '')}",
|
315
326
|
"\r\n",
|
316
327
|
file_descriptor,
|
317
328
|
file_encoding,
|
not1mm/test.py
CHANGED
@@ -1,8 +1,37 @@
|
|
1
|
-
|
2
|
-
""""""
|
3
|
-
...
|
1
|
+
import datetime
|
4
2
|
|
5
3
|
|
6
|
-
|
4
|
+
# Assume self.auto_cq_delay is defined (e.g., in milliseconds)
|
5
|
+
class SomeClass:
|
6
|
+
def __init__(self, auto_cq_delay_ms):
|
7
|
+
self.auto_cq_delay = auto_cq_delay_ms
|
7
8
|
|
8
|
-
|
9
|
+
|
10
|
+
# Example instantiation
|
11
|
+
instance = SomeClass(auto_cq_delay_ms=5000) # 5 seconds delay
|
12
|
+
|
13
|
+
|
14
|
+
then = datetime.datetime.now()
|
15
|
+
future = datetime.datetime.now() + datetime.timedelta(milliseconds=15000)
|
16
|
+
|
17
|
+
|
18
|
+
# Calculate the total duration between 'then' and 'future'
|
19
|
+
total_duration = future - then
|
20
|
+
|
21
|
+
while datetime.datetime.now() < future:
|
22
|
+
|
23
|
+
now = datetime.datetime.now()
|
24
|
+
# Calculate the elapsed duration between 'then' and 'now'
|
25
|
+
elapsed_duration = now - then
|
26
|
+
|
27
|
+
# Avoid division by zero if total_duration is zero (though unlikely in this scenario)
|
28
|
+
if total_duration.total_seconds() > 0:
|
29
|
+
# Calculate the percentage of the way 'now' is to 'future'
|
30
|
+
percentage_complete = (
|
31
|
+
elapsed_duration.total_seconds() / total_duration.total_seconds()
|
32
|
+
) * 100
|
33
|
+
print(f"Current time is {percentage_complete:.2f}% of the way to 'future'.")
|
34
|
+
else:
|
35
|
+
print(
|
36
|
+
"'future' is the same as or before 'then', so percentage cannot be calculated meaningfully."
|
37
|
+
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: not1mm
|
3
|
-
Version: 25.4.
|
3
|
+
Version: 25.4.13
|
4
4
|
Summary: NOT1MM Logger
|
5
5
|
Author-email: Michael Bridak <michael.bridak@gmail.com>
|
6
6
|
License: GPL-3.0-or-later
|
@@ -105,6 +105,8 @@ Dynamic: license-file
|
|
105
105
|
- [Sending CW](#sending-cw)
|
106
106
|
- [Sending CW Macros](#sending-cw-macros)
|
107
107
|
- [Auto CQ](#auto-cq)
|
108
|
+
- [Setting the delay](#setting-the-delay)
|
109
|
+
- [Cancelling the Auto CQ](#cancelling-the-auto-cq)
|
108
110
|
- [Sending CW Free Form](#sending-cw-free-form)
|
109
111
|
- [Editing macro keys](#editing-macro-keys)
|
110
112
|
- [Macro substitutions](#macro-substitutions)
|
@@ -117,7 +119,7 @@ Dynamic: license-file
|
|
117
119
|
- [The Log Window](#the-log-window)
|
118
120
|
- [Editing a contact](#editing-a-contact)
|
119
121
|
- [The Bandmap Window](#the-bandmap-window)
|
120
|
-
- [The Check Window](#the-check-window)
|
122
|
+
- [The Check Partial Window](#the-check-partial-window)
|
121
123
|
- [The Rate Window](#the-rate-window)
|
122
124
|
- [The Remote VFO Window](#the-remote-vfo-window)
|
123
125
|
- [Cabrillo](#cabrillo)
|
@@ -251,13 +253,15 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
251
253
|
|
252
254
|
## Recent Changes
|
253
255
|
|
256
|
+
- [25-4-13] Fix crash in JIDX Cabrillo output.
|
257
|
+
- [25-4-12] Added an Auto CQ time to fire progress bar.
|
254
258
|
- [25-4-11-3] Fixed issue with winkeyer not sending multiple macros in ESM mode.
|
255
259
|
- [25-4-11-2] Fixed a crash.
|
256
260
|
- [25-4-11-1] Add clear buffer to winkeyer interface to stop sending.
|
257
261
|
- [25-4-11] Add Scandinavian Activity Contest
|
258
|
-
- [25-4-10-1] Add ARI 40/80 contest. Add
|
262
|
+
- [25-4-10-1] Add ARI 40/80 contest. Add CTRL-R to toggle Run state.
|
259
263
|
- [25-4-10] Add Auto CQ visual indicator.
|
260
|
-
- [25-4-9] Added UKEI DX
|
264
|
+
- [25-4-9] Added UKEI DX Contest.
|
261
265
|
- [25-4-8] Remove focus from statistics table widget.
|
262
266
|
- [25-4-7] Merge in changes from dj1yfk correcting SPDX Cabrillo name.
|
263
267
|
- [25-4-5] Add SPDX.
|
@@ -670,14 +674,22 @@ pressing F1 - F12. See next section on Editing macro keys.
|
|
670
674
|
|
671
675
|
### Auto CQ
|
672
676
|
|
673
|
-
If you press `SHIFT-F1` The Auto CQ mode will be activated
|
674
|
-
after each Auto CQ Delay interval has passed.
|
675
|
-
the F1 macro key as a visual reminder that your
|
677
|
+
If you press `SHIFT-F1` The Auto CQ mode will be activated, you will be placed in a Run state
|
678
|
+
and the F1 macro will be resent after each Auto CQ Delay interval has passed.
|
679
|
+
An indicator will appear to the upper left of the F1 macro key as a visual reminder that your
|
680
|
+
Auto CQ is active. With it to the right, you will see a small progress bar giving you a visual
|
681
|
+
indication as to when F1 will fire next.
|
676
682
|
|
677
683
|

|
678
684
|
|
685
|
+
#### Setting the delay
|
686
|
+
|
679
687
|
The delay can be changed by going to the `Options` TAB in the Configuration dialog. If you are in
|
680
|
-
S&P mode when you enable Auto CQ, you will be automatically switched into RUN mode.
|
688
|
+
S&P mode when you enable Auto CQ, you will be automatically switched into RUN mode. To properly set
|
689
|
+
the delay you should time how long your F1 macro takes to key, then add how many seconds of pause
|
690
|
+
you would like. This is your delay value.
|
691
|
+
|
692
|
+
#### Cancelling the Auto CQ
|
681
693
|
|
682
694
|
The auto CQ can be cancelled by either typing in the call sign field, or by pressing ESC.
|
683
695
|
|
@@ -758,6 +770,8 @@ is this has happened, since the gridsquare will replace the word "Regional".
|
|
758
770
|
|
759
771
|
## Other uses for the call field
|
760
772
|
|
773
|
+
**You must press the SPACE bar after entering any of the below.**
|
774
|
+
|
761
775
|
- [A Frequency] You can enter a frequency in kilohertz. This will change the band you're logging on. If you have CAT control, this will change the frequency of the radio as well.
|
762
776
|
- [CW, SSB, RTTY] You can set the mode logged. If you have CAT control this will also change the mode on the radio.
|
763
777
|
- [OPON] Change the operator currently logging.
|
@@ -774,9 +788,9 @@ is this has happened, since the gridsquare will replace the word "Regional".
|
|
774
788
|
|
775
789
|
| Key | Result |
|
776
790
|
| -------------- | --- |
|
777
|
-
| [Esc] | Stops
|
778
|
-
| [PgUp] | Increases the
|
779
|
-
| [PgDown] | Decreases the
|
791
|
+
| [Esc] | Stops sending CW. |
|
792
|
+
| [PgUp] | Increases the CW sending speed. |
|
793
|
+
| [PgDown] | Decreases the CW sending speed. |
|
780
794
|
| [Arrow-Up] | Jump to the next spot above the current VFO cursor in the bandmap window (CAT Required). |
|
781
795
|
| [Arrow-Down] | Jump to the next spot below the current VFO cursor in the bandmap window (CAT Required). |
|
782
796
|
| [TAB] | Move cursor to the right one field. |
|
@@ -791,6 +805,12 @@ is this has happened, since the gridsquare will replace the word "Regional".
|
|
791
805
|
| [CTRL-SHIFT-K] | Open CW text input field. |
|
792
806
|
| [CTRL-=] | Log the contact without sending the ESM macros.|
|
793
807
|
| [CTRL-W] | Clears the input fields of any text. |
|
808
|
+
| [ALT-B] | Toggles the BandMap window. |
|
809
|
+
| [ALT-C] | Toggles the Check Partial window. |
|
810
|
+
| [ALT-L] | Toggles the QSO Log window. |
|
811
|
+
| [ALT-R] | Toggles the Rate window. |
|
812
|
+
| [ALT-S] | Toggles the Statistics window. |
|
813
|
+
| [ALT-V] | Toggles the VFO window. |
|
794
814
|
|
795
815
|
### The Log Window
|
796
816
|
|
@@ -838,9 +858,9 @@ blue rectangle shows the receivers bandwidth if one is reported.
|
|
838
858
|
Clicked on spots now tune the radio and set the callsign field. Previously
|
839
859
|
worked calls are displayed in red.
|
840
860
|
|
841
|
-
### The Check Window
|
861
|
+
### The Check Partial Window
|
842
862
|
|
843
|
-
`Window`>`Check Window`
|
863
|
+
`Window`>`Check Partial Window`
|
844
864
|
|
845
865
|
As you enter a callsign, the Check Window will show probable matches to calls
|
846
866
|
either in the MASTER.SCP file, your local log or the recent telnet spots. The
|
@@ -904,8 +924,12 @@ change.
|
|
904
924
|
|
905
925
|
## ESM
|
906
926
|
|
907
|
-
|
908
|
-
|
927
|
+
ESM or Enter Sends Message. ESM is a feature in which the logging program will automatically
|
928
|
+
send the right function key macros based on the information present in the input fields and
|
929
|
+
which input field is active when you press the Enter key. You can see a common flow in the
|
930
|
+
examples below.
|
931
|
+
|
932
|
+
To test it out you can go to `FILE -> Configuration Settings`
|
909
933
|
|
910
934
|

|
911
935
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=_sobv7fOxQw5gIM1Q2-fLSMn2EXSdOgki0PnZ2xTFGo,153631
|
3
3
|
not1mm/bandmap.py,sha256=-zu5slsuAm2GmeW8g3yvURzsuQxemwIQfw1HEq8xKHM,29920
|
4
4
|
not1mm/checkwindow.py,sha256=zEHlw40j6Wr3rvKbCQf2lcezCoiZqaBqEvBjQU5aKW0,7630
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -9,7 +9,7 @@ not1mm/radio.py,sha256=_b-tSFuDLoBKnABxrsafGQu2p33U-KOubY7-qgLV2yg,5408
|
|
9
9
|
not1mm/ratewindow.py,sha256=PeFmmXYKA6ikR8AzWB6n5TS_1NoaHLocw4pSdySq_7A,6995
|
10
10
|
not1mm/rtc_service.py,sha256=axAwnCBuTr-QL0YwXtWvg9tjwhcFsiiEZFgFjOofX6k,2816
|
11
11
|
not1mm/statistics.py,sha256=YbXBCr8wtmXlF21ojgsh0jY_G-dnCApUFe87JZclZAI,7712
|
12
|
-
not1mm/test.py,sha256=
|
12
|
+
not1mm/test.py,sha256=BNhsSvLnNG5hN4pywIWnj4pUBI-wQYY4Ejfbl97knmw,1198
|
13
13
|
not1mm/vfo.py,sha256=3kdSfLHLHAGgSE8b8H9n-jFUg_5L7tvrZt_7YCkdsLo,8945
|
14
14
|
not1mm/voice_keying.py,sha256=HZImqC5NgnyW2nknNYQ3b7I8-6S_hxpq5G4RcIRXn_k,3005
|
15
15
|
not1mm/data/JetBrainsMono-ExtraLight.ttf,sha256=g5Hn7BPounWMGDj1a8zZcyKMz03HSqW__pUluRR7Evg,274144
|
@@ -23,7 +23,7 @@ not1mm/data/configuration.ui,sha256=mqhEvxD9lQGeoEkUrvbO9uNrOG62z6EIUUMa_b_SG-o,
|
|
23
23
|
not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
|
24
24
|
not1mm/data/cty.json,sha256=bwPhOrOAgvV9JiXUDT9kzCqfNWAhGuJQt489h0SKsCk,4925375
|
25
25
|
not1mm/data/cwmacros.txt,sha256=NztufsX6R52gAO7VyJ2AHr7wOh41pJTwHKh5Lcs32ds,468
|
26
|
-
not1mm/data/donors.html,sha256=
|
26
|
+
not1mm/data/donors.html,sha256=qLg2n3NoJ5ZMNZye-nD_lgNjtSqL7952k_Z_bbJM5hA,297
|
27
27
|
not1mm/data/editcontact.ui,sha256=TNOsXETYfDaON4wj6AkzCJ-n2SmbNRO2-g2SLl5m8s0,27437
|
28
28
|
not1mm/data/editmacro.ui,sha256=Vg-S62ogKYcWlDDlza_JYyZkCQfa8mCfF-cFqpBej-w,2700
|
29
29
|
not1mm/data/greendot.png,sha256=El9TomJcGtViRcHOR7kMxGzjzvYs0TSAqOb3tZv0JDA,368
|
@@ -33,7 +33,7 @@ not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcC
|
|
33
33
|
not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N90,2925
|
34
34
|
not1mm/data/logwindow.ui,sha256=f7vULj96tHIQuR1nJMyvPHHcmVgzkhv9D1isyojsnFU,1458
|
35
35
|
not1mm/data/logwindowx.ui,sha256=CwpI-h7cI1yqyldH9quKftsdHL5lTyL9ABOcf80nfqc,1632
|
36
|
-
not1mm/data/main.ui,sha256
|
36
|
+
not1mm/data/main.ui,sha256=-JDQXOaxj8_7Wda9KT2rEM4YUjBs31CiT1Rjc_DBobM,64907
|
37
37
|
not1mm/data/new_contest.ui,sha256=Q8ZORq_9iRls5AJTroh1HAhEkTCOu02nBv9e9xXMOCU,25119
|
38
38
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
39
39
|
not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
|
@@ -118,7 +118,7 @@ not1mm/lib/plugin_common.py,sha256=D1OBjyLmX7zuSPqgTCmHwXzAKA12J_zTQItvyIem-4Y,1
|
|
118
118
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
119
119
|
not1mm/lib/settings.py,sha256=mXffn8Xaj5KATPQinNBR0V5DbHWQPsRfh24_axWGYuk,15254
|
120
120
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
121
|
-
not1mm/lib/version.py,sha256=
|
121
|
+
not1mm/lib/version.py,sha256=hOoF1ZyaAAamS-LKleT-dA1ko_GY_a0UwQ-ix9bxrT4,48
|
122
122
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
123
123
|
not1mm/plugins/10_10_fall_cw.py,sha256=oJh3JKqjOpnWElSlZpiQ631UnaOd8qra5s9bl_QoInk,14783
|
124
124
|
not1mm/plugins/10_10_spring_cw.py,sha256=p7dSDtbFK0e6Xouw2V6swYn3VFVgHKyx4IfRWyBjMZY,14786
|
@@ -158,8 +158,8 @@ not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=1AVyZFi3ri2zqaNJY181Wtyz74fai8QLoi7
|
|
158
158
|
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=w0j4MY1LeGxOaQfRjxRS-Q4waTOOt-hbxA1spil7z_I,17222
|
159
159
|
not1mm/plugins/iaru_hf.py,sha256=VtNCijj_p03EIRfUJE-5FSarGb8P-Ek7gxIdPF_zHQQ,16721
|
160
160
|
not1mm/plugins/icwc_mst.py,sha256=IUpAETCjXxeTmOFu2ItivXiZGRaQgcuaPSu6Q1kOJAk,16539
|
161
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
162
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
161
|
+
not1mm/plugins/jidx_cw.py,sha256=fbdo-KDzNAHq-lH1V0X99wsZJkBVUkJN4yyegTRZFrs,16292
|
162
|
+
not1mm/plugins/jidx_ph.py,sha256=oFHZOPIa0pzVge0F73WPZ3z4cLiZCSBlO3499_Pe9NI,15241
|
163
163
|
not1mm/plugins/k1usn_sst.py,sha256=yeaejs9rgXot1ISayTHFCWtYcNxOT2NG4E9oeXfQrq8,17198
|
164
164
|
not1mm/plugins/labre_rs_digi.py,sha256=93awbxHK2Wi_XZWvUvtaZlQaxpoyX-ev_uj5lm0IZ60,20125
|
165
165
|
not1mm/plugins/lz-dx.py,sha256=hP6APYus4AFpz1rMxU82mq7ZB15_hwgsfuR4qInEG6k,19886
|
@@ -178,9 +178,9 @@ not1mm/plugins/stew_perry_topband.py,sha256=3U-Dr28haBTqTaZWLiC1qHQBmLsLENDL-ihy
|
|
178
178
|
not1mm/plugins/ukeidx.py,sha256=0ABGW7_9Ui0Rgr8mkPBxOJokAIerM1a4-HWnl6VsnV8,19105
|
179
179
|
not1mm/plugins/weekly_rtty.py,sha256=C8Xs3Q5UgSYx-mFFar8BVARWtmqlyrbeC98Ubzb4UN8,20128
|
180
180
|
not1mm/plugins/winter_field_day.py,sha256=hmAMgkdqIXtnCNyUp8J9Bb8liN8wj10wps6ROuG-Bok,15284
|
181
|
-
not1mm-25.4.
|
182
|
-
not1mm-25.4.
|
183
|
-
not1mm-25.4.
|
184
|
-
not1mm-25.4.
|
185
|
-
not1mm-25.4.
|
186
|
-
not1mm-25.4.
|
181
|
+
not1mm-25.4.13.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
182
|
+
not1mm-25.4.13.dist-info/METADATA,sha256=Lu2tPf_duFIuTsuF_Jfwwin9tcBvsjWGTm_SnV1CHWU,39339
|
183
|
+
not1mm-25.4.13.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
184
|
+
not1mm-25.4.13.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
185
|
+
not1mm-25.4.13.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
186
|
+
not1mm-25.4.13.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|