not1mm 25.3.10__py3-none-any.whl → 25.3.17__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/data/new_contest.ui +5 -0
- not1mm/lib/plugin_common.py +1 -1
- not1mm/lib/version.py +1 -1
- not1mm/plugins/10_10_fall_cw.py +1 -1
- not1mm/plugins/10_10_spring_cw.py +1 -1
- 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_160m.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 +22 -1
- not1mm/plugins/arrl_rtty_ru.py +1 -1
- not1mm/plugins/arrl_ss_cw.py +1 -1
- not1mm/plugins/arrl_ss_phone.py +1 -1
- 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_rtty.py +1 -1
- not1mm/plugins/cq_wpx_ssb.py +1 -1
- not1mm/plugins/cq_ww_cw.py +1 -1
- not1mm/plugins/cq_ww_rtty.py +1 -1
- not1mm/plugins/cq_ww_ssb.py +1 -1
- not1mm/plugins/cwt.py +1 -1
- not1mm/plugins/darc_xmas.py +1 -1
- not1mm/plugins/ea_rtty.py +740 -0
- not1mm/plugins/helvetia.py +1 -1
- not1mm/plugins/iaru_fieldday_r1_cw.py +1 -1
- not1mm/plugins/iaru_fieldday_r1_ssb.py +1 -1
- not1mm/plugins/iaru_hf.py +1 -1
- not1mm/plugins/icwc_mst.py +1 -1
- not1mm/plugins/jidx_cw.py +1 -1
- not1mm/plugins/jidx_ph.py +1 -1
- not1mm/plugins/k1usn_sst.py +1 -1
- not1mm/plugins/labre_rs_digi.py +1 -1
- not1mm/plugins/lz-dx.py +2 -2
- not1mm/plugins/naqp_cw.py +1 -1
- not1mm/plugins/naqp_rtty.py +1 -1
- not1mm/plugins/naqp_ssb.py +1 -1
- not1mm/plugins/phone_weekly_test.py +1 -1
- not1mm/plugins/raem.py +1 -1
- not1mm/plugins/ref_cw.py +1 -1
- not1mm/plugins/ref_ssb.py +1 -1
- not1mm/plugins/stew_perry_topband.py +1 -1
- not1mm/plugins/weekly_rtty.py +1 -1
- not1mm/plugins/winter_field_day.py +1 -1
- {not1mm-25.3.10.dist-info → not1mm-25.3.17.dist-info}/METADATA +14 -3
- {not1mm-25.3.10.dist-info → not1mm-25.3.17.dist-info}/RECORD +56 -55
- {not1mm-25.3.10.dist-info → not1mm-25.3.17.dist-info}/LICENSE +0 -0
- {not1mm-25.3.10.dist-info → not1mm-25.3.17.dist-info}/WHEEL +0 -0
- {not1mm-25.3.10.dist-info → not1mm-25.3.17.dist-info}/entry_points.txt +0 -0
- {not1mm-25.3.10.dist-info → not1mm-25.3.17.dist-info}/top_level.txt +0 -0
not1mm/plugins/helvetia.py
CHANGED
@@ -341,7 +341,7 @@ def cabrillo(self, file_encoding):
|
|
341
341
|
logger.debug("%s", filename)
|
342
342
|
log = self.database.fetch_all_contacts_asc()
|
343
343
|
try:
|
344
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
344
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
345
345
|
output_cabrillo_line(
|
346
346
|
"START-OF-LOG: 3.0",
|
347
347
|
"\r\n",
|
@@ -243,7 +243,7 @@ def cabrillo(self, file_encoding):
|
|
243
243
|
logger.debug("%s", filename)
|
244
244
|
log = self.database.fetch_all_contacts_asc()
|
245
245
|
try:
|
246
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
246
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
247
247
|
output_cabrillo_line(
|
248
248
|
"START-OF-LOG: 3.0",
|
249
249
|
"\r\n",
|
@@ -243,7 +243,7 @@ def cabrillo(self, file_encoding):
|
|
243
243
|
logger.debug("%s", filename)
|
244
244
|
log = self.database.fetch_all_contacts_asc()
|
245
245
|
try:
|
246
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
246
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
247
247
|
output_cabrillo_line(
|
248
248
|
"START-OF-LOG: 3.0",
|
249
249
|
"\r\n",
|
not1mm/plugins/iaru_hf.py
CHANGED
@@ -218,7 +218,7 @@ def cabrillo(self, file_encoding):
|
|
218
218
|
logger.debug("%s", filename)
|
219
219
|
log = self.database.fetch_all_contacts_asc()
|
220
220
|
try:
|
221
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
221
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
222
222
|
output_cabrillo_line(
|
223
223
|
"START-OF-LOG: 3.0",
|
224
224
|
"\r\n",
|
not1mm/plugins/icwc_mst.py
CHANGED
@@ -195,7 +195,7 @@ def cabrillo(self, file_encoding):
|
|
195
195
|
logger.debug("%s", filename)
|
196
196
|
log = self.database.fetch_all_contacts_asc()
|
197
197
|
try:
|
198
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
198
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
199
199
|
output_cabrillo_line(
|
200
200
|
"START-OF-LOG: 3.0",
|
201
201
|
"\r\n",
|
not1mm/plugins/jidx_cw.py
CHANGED
@@ -260,7 +260,7 @@ def cabrillo(self, file_encoding):
|
|
260
260
|
mults = show_mults(self)
|
261
261
|
log = self.database.fetch_all_contacts_asc()
|
262
262
|
try:
|
263
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
263
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
264
264
|
output_cabrillo_line(
|
265
265
|
"START-OF-LOG: 2.0", "\r\n", file_descriptor, file_encoding
|
266
266
|
)
|
not1mm/plugins/jidx_ph.py
CHANGED
@@ -229,7 +229,7 @@ def cabrillo(self, file_encoding):
|
|
229
229
|
mults = show_mults(self)
|
230
230
|
log = self.database.fetch_all_contacts_asc()
|
231
231
|
try:
|
232
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
232
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
233
233
|
output_cabrillo_line(
|
234
234
|
"START-OF-LOG: 2.0", "\r\n", file_descriptor, file_encoding
|
235
235
|
)
|
not1mm/plugins/k1usn_sst.py
CHANGED
@@ -187,7 +187,7 @@ def cabrillo(self, file_encoding):
|
|
187
187
|
logger.debug("%s", filename)
|
188
188
|
log = self.database.fetch_all_contacts_asc()
|
189
189
|
try:
|
190
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
190
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
191
191
|
output_cabrillo_line(
|
192
192
|
"START-OF-LOG: 3.0",
|
193
193
|
"\r\n",
|
not1mm/plugins/labre_rs_digi.py
CHANGED
@@ -221,7 +221,7 @@ def cabrillo(self, file_encoding):
|
|
221
221
|
logger.debug("%s", filename)
|
222
222
|
log = self.database.fetch_all_contacts_asc()
|
223
223
|
try:
|
224
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
224
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
225
225
|
output_cabrillo_line(
|
226
226
|
"START-OF-LOG: 3.0",
|
227
227
|
"\r\n",
|
not1mm/plugins/lz-dx.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"""
|
2
2
|
@dg9vh
|
3
|
-
LZ-DX
|
3
|
+
LZ-DX
|
4
4
|
-------------------------------------------------
|
5
5
|
Status: Active
|
6
6
|
Geographic Focus: Bulgaria
|
@@ -248,7 +248,7 @@ def cabrillo(self, file_encoding):
|
|
248
248
|
logger.debug("%s", filename)
|
249
249
|
log = self.database.fetch_all_contacts_asc()
|
250
250
|
try:
|
251
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
251
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
252
252
|
output_cabrillo_line(
|
253
253
|
"START-OF-LOG: 3.0",
|
254
254
|
"\r\n",
|
not1mm/plugins/naqp_cw.py
CHANGED
@@ -213,7 +213,7 @@ def cabrillo(self, file_encoding):
|
|
213
213
|
logger.debug("%s", filename)
|
214
214
|
log = self.database.fetch_all_contacts_asc()
|
215
215
|
try:
|
216
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
216
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
217
217
|
output_cabrillo_line(
|
218
218
|
"START-OF-LOG: 3.0",
|
219
219
|
"\r\n",
|
not1mm/plugins/naqp_rtty.py
CHANGED
@@ -216,7 +216,7 @@ def cabrillo(self, file_encoding):
|
|
216
216
|
logger.debug("%s", filename)
|
217
217
|
log = self.database.fetch_all_contacts_asc()
|
218
218
|
try:
|
219
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
219
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
220
220
|
output_cabrillo_line(
|
221
221
|
"START-OF-LOG: 3.0",
|
222
222
|
"\r\n",
|
not1mm/plugins/naqp_ssb.py
CHANGED
@@ -183,7 +183,7 @@ def cabrillo(self, file_encoding):
|
|
183
183
|
logger.debug("%s", filename)
|
184
184
|
log = self.database.fetch_all_contacts_asc()
|
185
185
|
try:
|
186
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
186
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
187
187
|
output_cabrillo_line(
|
188
188
|
"START-OF-LOG: 3.0",
|
189
189
|
"\r\n",
|
@@ -203,7 +203,7 @@ def cabrillo(self, file_encoding):
|
|
203
203
|
logger.debug("%s", filename)
|
204
204
|
log = self.database.fetch_all_contacts_asc()
|
205
205
|
try:
|
206
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
206
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
207
207
|
output_cabrillo_line(
|
208
208
|
"START-OF-LOG: 3.0",
|
209
209
|
"\r\n",
|
not1mm/plugins/raem.py
CHANGED
@@ -302,7 +302,7 @@ def cabrillo(self, file_encoding):
|
|
302
302
|
logger.debug("%s", filename)
|
303
303
|
log = self.database.fetch_all_contacts_asc()
|
304
304
|
try:
|
305
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
305
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
306
306
|
output_cabrillo_line(
|
307
307
|
"START-OF-LOG: 3.0",
|
308
308
|
"\r\n",
|
not1mm/plugins/ref_cw.py
CHANGED
@@ -346,7 +346,7 @@ def cabrillo(self, file_encoding):
|
|
346
346
|
logger.debug("%s", filename)
|
347
347
|
log = self.database.fetch_all_contacts_asc()
|
348
348
|
try:
|
349
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
349
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
350
350
|
output_cabrillo_line(
|
351
351
|
"START-OF-LOG: 3.0",
|
352
352
|
"\r\n",
|
not1mm/plugins/ref_ssb.py
CHANGED
@@ -361,7 +361,7 @@ def cabrillo(self, file_encoding):
|
|
361
361
|
logger.debug("%s", filename)
|
362
362
|
log = self.database.fetch_all_contacts_asc()
|
363
363
|
try:
|
364
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
364
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
365
365
|
output_cabrillo_line(
|
366
366
|
"START-OF-LOG: 3.0",
|
367
367
|
"\r\n",
|
@@ -183,7 +183,7 @@ def cabrillo(self, file_encoding):
|
|
183
183
|
logger.debug("%s", filename)
|
184
184
|
log = self.database.fetch_all_contacts_asc()
|
185
185
|
try:
|
186
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
186
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
187
187
|
output_cabrillo_line(
|
188
188
|
"START-OF-LOG: 3.0",
|
189
189
|
"\r\n",
|
not1mm/plugins/weekly_rtty.py
CHANGED
@@ -195,7 +195,7 @@ def cabrillo(self, file_encoding):
|
|
195
195
|
logger.debug("%s", filename)
|
196
196
|
log = self.database.fetch_all_contacts_asc()
|
197
197
|
try:
|
198
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
198
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
199
199
|
output_cabrillo_line(
|
200
200
|
"START-OF-LOG: 3.0",
|
201
201
|
"\r\n",
|
@@ -176,7 +176,7 @@ def cabrillo(self, file_encoding):
|
|
176
176
|
logger.debug("%s", filename)
|
177
177
|
log = self.database.fetch_all_contacts_asc()
|
178
178
|
try:
|
179
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
179
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
180
180
|
output_cabrillo_line(
|
181
181
|
"START-OF-LOG: 3.0",
|
182
182
|
"\r\n",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: not1mm
|
3
|
-
Version: 25.3.
|
3
|
+
Version: 25.3.17
|
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
|
@@ -133,11 +133,13 @@ Requires-Dist: Levenshtein
|
|
133
133
|
- [If no exchange entered send AGN](#if-no-exchange-entered-send-agn)
|
134
134
|
- [With exchange entered, send your exchange and log it](#with-exchange-entered-send-your-exchange-and-log-it)
|
135
135
|
- [Call History Files](#call-history-files)
|
136
|
+
- [Creating your own Call History files](#creating-your-own-call-history-files)
|
136
137
|
- [Contest specific notes](#contest-specific-notes)
|
137
138
|
- [ARRL Sweekstakes](#arrl-sweekstakes)
|
138
139
|
- [The exchange parser](#the-exchange-parser)
|
139
140
|
- [The exchange](#the-exchange)
|
140
141
|
- [RAEM](#raem)
|
142
|
+
- [RandomGram](#randomgram)
|
141
143
|
|
142
144
|
## What and Why is Not1MM
|
143
145
|
|
@@ -240,6 +242,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
240
242
|
|
241
243
|
## Recent Changes
|
242
244
|
|
245
|
+
- [25-3-17] Add EA RTTY contest.
|
246
|
+
- [25-3-14] Add call history support to ARR Field Day.
|
243
247
|
- [25-3-10] Slight change to adif header. Slight change to CAT status icon state.
|
244
248
|
- [25-3-5] Added checks for blank/comment lines in the macros
|
245
249
|
- [25-3-2] Added call history support to ARRL DX, just in time for it to be over.
|
@@ -920,13 +924,16 @@ QRZ (for Run) or Exchange (for S&P) is sent.
|
|
920
924
|
|
921
925
|
## Call History Files
|
922
926
|
|
923
|
-
|
924
|
-
go to `FILE -> Configuration Settings`
|
927
|
+
To use Call History files, go to `FILE -> Configuration Settings`
|
925
928
|
|
926
929
|

|
927
930
|
|
928
931
|
Place a check in the `Use Call History` box. Call history files are very specific to the contest you are working. Example files can be obtained from [n1mm's](https://n1mmwp.hamdocs.com/mmfiles/categories/callhistory/?) website. They have a searchbox so you can find the contest you are looking for. If you are feeling masocistic, you can craft your own. The general makeup of the file is a header defining the fields to be used, followed by by lines of comma separated data.
|
929
932
|
|
933
|
+
### Creating your own Call History files
|
934
|
+
|
935
|
+
You can use [adif2callhistory](https://github.com/mbridak/adif2callhistory) to generate your own call history file from your ADIF files. You can use a list of call history keys used for each contest [here](https://github.com/mbridak/not1mm/blob/master/call_history_keys.md).
|
936
|
+
|
930
937
|
An example file excerpt looks like:
|
931
938
|
|
932
939
|
```text
|
@@ -1011,3 +1018,7 @@ For the Run Exchange macro I'd put `{HISCALL} {SENTNR} {EXCH}`.
|
|
1011
1018
|
|
1012
1019
|
In the New/Edit Contest dialog, in the exchange field put just your Lat and Lon.
|
1013
1020
|
for me 33N117W. And in the exchange macro put `# {EXCH}`.
|
1021
|
+
|
1022
|
+
### RandomGram
|
1023
|
+
|
1024
|
+
This plugin was submitted by @alduhoo. It reads a rg.txt file if it exists in the user's home directory to populate the next group in the sent exchange field.
|
@@ -33,7 +33,7 @@ not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N
|
|
33
33
|
not1mm/data/logwindow.ui,sha256=f7vULj96tHIQuR1nJMyvPHHcmVgzkhv9D1isyojsnFU,1458
|
34
34
|
not1mm/data/logwindowx.ui,sha256=CwpI-h7cI1yqyldH9quKftsdHL5lTyL9ABOcf80nfqc,1632
|
35
35
|
not1mm/data/main.ui,sha256=cYy2Zk0bDNK2cJOANivXheML4_y27CAmO7DR_yscNT0,62814
|
36
|
-
not1mm/data/new_contest.ui,sha256=
|
36
|
+
not1mm/data/new_contest.ui,sha256=wyHqSInjhZhgm8NshC_jhdTB5HvfcGkh7IXj-5IsepE,24274
|
37
37
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
38
38
|
not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
|
39
39
|
not1mm/data/pickcontest.ui,sha256=4hPBszCglObThx_eIWtmK9CEcbr7WBjbB1rKZdI-o3I,1707
|
@@ -112,64 +112,65 @@ not1mm/lib/lookup.py,sha256=KECMDi9tflRDzgTLeDfDl7HGWWRHvW3HCjNHyyjoWaY,10835
|
|
112
112
|
not1mm/lib/multicast.py,sha256=KJcruI-bOuHfHXPjl3SGQhL6I9sKrygy-sdFSvxffUM,3255
|
113
113
|
not1mm/lib/n1mm.py,sha256=H54mpgJF0GAmKavM-nb5OAq2SJFWYkux4eMWWiSRxJc,6288
|
114
114
|
not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
115
|
-
not1mm/lib/plugin_common.py,sha256=
|
115
|
+
not1mm/lib/plugin_common.py,sha256=D1OBjyLmX7zuSPqgTCmHwXzAKA12J_zTQItvyIem-4Y,13299
|
116
116
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
117
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=80doSDKY7o84JehiE2qmwjDMM2mg5LzLvtXHIchQU4w,48
|
120
120
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
121
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
122
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
123
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
124
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
121
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=P63dEhRmvsEV7ixHYg-qhs5zzj0_DJXjjPHQBQr8Wwg,14731
|
122
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=S_z-KbExH4_kfRbKo07zM-iVlJUKxFwzbm6LRnXYyNU,14734
|
123
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=PEEo_H_7JjlGAidGN0aC9kJpx123MPmAul8JPq0PUcU,14844
|
124
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=qr-5hc_dT1mE8Kc5Kzc_qNkJVl9hA5h1zTe9B1ueAS4,14743
|
125
125
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
126
|
-
not1mm/plugins/arrl_10m.py,sha256=
|
127
|
-
not1mm/plugins/arrl_160m.py,sha256=
|
128
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
129
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
130
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
131
|
-
not1mm/plugins/arrl_rtty_ru.py,sha256=
|
132
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
133
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
134
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
135
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
136
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
137
|
-
not1mm/plugins/canada_day.py,sha256=
|
138
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
139
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
140
|
-
not1mm/plugins/cq_wpx_cw.py,sha256=
|
141
|
-
not1mm/plugins/cq_wpx_rtty.py,sha256=
|
142
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
143
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
144
|
-
not1mm/plugins/cq_ww_rtty.py,sha256=
|
145
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
146
|
-
not1mm/plugins/cwt.py,sha256=
|
147
|
-
not1mm/plugins/darc_xmas.py,sha256=
|
126
|
+
not1mm/plugins/arrl_10m.py,sha256=Rl5AvpbKCXYmk9POgzIQtRm4vrP_LK9NAAlxQB6ZHyo,18337
|
127
|
+
not1mm/plugins/arrl_160m.py,sha256=U3wLqljfg-60Xq9QZ5QI0_1ChmACNahhVBOX3pBkDUM,20248
|
128
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=sAbgRyUP2RLuq4p4S51wr9sJb_s1BI_TsY7JJkiq-EY,18838
|
129
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=sO0Xc6qJURA2NkJmapu3Ii0sVs0ProGjo1P5RHeeQpA,18886
|
130
|
+
not1mm/plugins/arrl_field_day.py,sha256=6wCx80bXagLeKw5bgqlb6NN3UzJoFb7TWOIjrpFbEX8,17489
|
131
|
+
not1mm/plugins/arrl_rtty_ru.py,sha256=kPK33M0N-J8TwjLeX7lm8ckUIt5HIspPwq92LUs3W4Q,20905
|
132
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=CbvvUxYYrdzftYqTjUNzWJQFg72WpxsBIrLSts85U8k,17470
|
133
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=8gQkpeEOY0sqEZnJG6yRFVKMv6ilxfWc6Yrz3gmz4tU,16806
|
134
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=VV_rHy_Uh0A8gMyp3P_1FmeCJZoChwjSytvSxnukw-M,20279
|
135
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=xjnvqV_KleQdJqioINW0e6oN9PJUYpsxSfR89Kg95MQ,19371
|
136
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=Trnb_jhewskp-A1VoRFabxhL9L0oaZn4yrNf_BDuBXs,19404
|
137
|
+
not1mm/plugins/canada_day.py,sha256=vesz3KfCHFxcwO1szbcbtWs0vdgN1IF_koRfTaogioc,15718
|
138
|
+
not1mm/plugins/cq_160_cw.py,sha256=4HK9FQqnHh1kZCOqMqvIdCteF7gwof2sdnQUTQRtSRw,18659
|
139
|
+
not1mm/plugins/cq_160_ssb.py,sha256=2NU0UQQAH-rQn-VuhbhM79mDCATCAxbu6jzv5Lpsiyo,18702
|
140
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=uiYjZeD-yOjaTZE7S4CtrBIUFhh5Tj-PVm9uO3_1wO0,18197
|
141
|
+
not1mm/plugins/cq_wpx_rtty.py,sha256=r0KBaePLV180udt-Y4TGOQea5w8P3YkeTmPk4Ig5xlo,21016
|
142
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=9QQq3r2bZsMfxzVn0hy11W0WvNMgUY0dkVRAhpN5yPo,16764
|
143
|
+
not1mm/plugins/cq_ww_cw.py,sha256=GCsKohb1SQf9RbsXVUa_ojwkPIzm_TmCJHu2SAjaeKg,18405
|
144
|
+
not1mm/plugins/cq_ww_rtty.py,sha256=6McNrXDziFpxgUP244jFXr3FirpVAKHPK8PU_szXvvE,22498
|
145
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=gDAizDcr9cIgXJQ6S63UDtG64jvjIZQfvWw_MYfkNKU,18003
|
146
|
+
not1mm/plugins/cwt.py,sha256=mN1wGGao9lcXN8ztqED564tEbf1APl8_jQDoDFaThkw,17542
|
147
|
+
not1mm/plugins/darc_xmas.py,sha256=KmpFXWS1jKegPCvk8XZWlzUCshhtDww2AgTGtauricQ,18919
|
148
|
+
not1mm/plugins/ea_rtty.py,sha256=RBaavcn2CRcH3NuSx5YAPsChYY2BCKpES-8YT9FtS0E,23178
|
148
149
|
not1mm/plugins/general_logging.py,sha256=eQuna-LnrWpf93LmHTTo6956GWoGocVfeYnzY5cyTmw,9600
|
149
|
-
not1mm/plugins/helvetia.py,sha256
|
150
|
-
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=
|
151
|
-
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=
|
152
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
153
|
-
not1mm/plugins/icwc_mst.py,sha256=
|
154
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
155
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
156
|
-
not1mm/plugins/k1usn_sst.py,sha256=
|
157
|
-
not1mm/plugins/labre_rs_digi.py,sha256=
|
158
|
-
not1mm/plugins/lz-dx.py,sha256=
|
159
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
160
|
-
not1mm/plugins/naqp_rtty.py,sha256=
|
161
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
162
|
-
not1mm/plugins/phone_weekly_test.py,sha256=
|
163
|
-
not1mm/plugins/raem.py,sha256=
|
150
|
+
not1mm/plugins/helvetia.py,sha256=-aL4GYn3boRMJWVWqqS3xvXUgehB58-5cTs1jWTsnxE,20027
|
151
|
+
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=tgVKu190bMWdwX_rxVxuoD51qbZsY0QFmLep0w5rHDw,17167
|
152
|
+
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=LC1K5CzBl3PDwm2Dg-ad6QYUVjvVJzAe3o68H79-YKk,17171
|
153
|
+
not1mm/plugins/iaru_hf.py,sha256=fkWTi_erk1MgX4wqR6nxcxP-2yM2O2LamjhbE1faRaI,16670
|
154
|
+
not1mm/plugins/icwc_mst.py,sha256=P1cZcdPLi4acTYp1zS7ao_JlpOgay8z2y5STf4uMKik,16487
|
155
|
+
not1mm/plugins/jidx_cw.py,sha256=mgZSEcL8VrIK-NksASsUBZLpgyckfCuml51pI4pX4-Q,15893
|
156
|
+
not1mm/plugins/jidx_ph.py,sha256=n4YjSKEVeWFJIYEvl-mNRezrbwt7PqSYzXrERE0VW40,14842
|
157
|
+
not1mm/plugins/k1usn_sst.py,sha256=Tudz8ycUBG2Qj4y5SC-7pVRIRnSQP23-ezHJ7HdVzGs,17146
|
158
|
+
not1mm/plugins/labre_rs_digi.py,sha256=NCO9mQ91nG-Q0xozxN3S5_PGc98pDO02ol7_gCqy2RM,20074
|
159
|
+
not1mm/plugins/lz-dx.py,sha256=_E4XKokfLAPbAQTrG3FLYg0AsMfxMCPCu9ok3wJTvP0,19835
|
160
|
+
not1mm/plugins/naqp_cw.py,sha256=49BP1rs-rEp9lZtEoQfT532ETDEkeO3xuhUUj9eeZlM,18909
|
161
|
+
not1mm/plugins/naqp_rtty.py,sha256=wMu9wP_gpacIvUsJOZGxl0v-5joeZbL9JjR8A5NSJuw,22651
|
162
|
+
not1mm/plugins/naqp_ssb.py,sha256=C1A6qwZnPmZxoy0LaMJSd9jYfahUEmmauYjvOY4Ndb8,17826
|
163
|
+
not1mm/plugins/phone_weekly_test.py,sha256=cq0WwV_sYgUxvtTlrHafAPm1MQjaSZ8SzhYVjd9I89U,16320
|
164
|
+
not1mm/plugins/raem.py,sha256=NVz9VJt9mUZdDWpRAmV0H3issnIr8KWd_8iLec9REUE,19574
|
164
165
|
not1mm/plugins/randomgram.py,sha256=h68Ul57maCRhZOou7jU4_B1Dfd3d4n5r-Qzex80yJOk,7401
|
165
|
-
not1mm/plugins/ref_cw.py,sha256=
|
166
|
-
not1mm/plugins/ref_ssb.py,sha256=
|
167
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
168
|
-
not1mm/plugins/weekly_rtty.py,sha256=
|
169
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
170
|
-
not1mm-25.3.
|
171
|
-
not1mm-25.3.
|
172
|
-
not1mm-25.3.
|
173
|
-
not1mm-25.3.
|
174
|
-
not1mm-25.3.
|
175
|
-
not1mm-25.3.
|
166
|
+
not1mm/plugins/ref_cw.py,sha256=AOY2AfRaoqzEQ_o9im70WtbLPqojqK-5JIxoe3b9f4w,21331
|
167
|
+
not1mm/plugins/ref_ssb.py,sha256=tGK5XeFrc3z7l8OViG9DM3rc4HLUBF9S3SUkaAPrjQk,21542
|
168
|
+
not1mm/plugins/stew_perry_topband.py,sha256=LHt0WnWMRS_m5nO9BOIQs0kO38M6x-k4eaA4nbEqDVA,15353
|
169
|
+
not1mm/plugins/weekly_rtty.py,sha256=4gfFg25KGkU9tKmwslHLc38qPAXuRGWNX48n582NC7w,20078
|
170
|
+
not1mm/plugins/winter_field_day.py,sha256=jLgEr95hJCZoc3Fi95PiNeB06thPQHFI3zOHmR6NprE,15234
|
171
|
+
not1mm-25.3.17.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
172
|
+
not1mm-25.3.17.dist-info/METADATA,sha256=ZpJkQmE3qUelL0G3t2kIQZMURFFTgeFkQy8QTKXRLNU,37028
|
173
|
+
not1mm-25.3.17.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
174
|
+
not1mm-25.3.17.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
175
|
+
not1mm-25.3.17.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
176
|
+
not1mm-25.3.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|