not1mm 24.10.24.1__py3-none-any.whl → 24.10.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 +9 -3
- not1mm/bandmap.py +6 -1
- not1mm/data/main.ui +23 -3
- not1mm/lib/version.py +1 -1
- not1mm/plugins/10_10_fall_cw.py +109 -82
- not1mm/plugins/10_10_spring_cw.py +109 -82
- not1mm/plugins/10_10_summer_phone.py +109 -82
- not1mm/plugins/10_10_winter_phone.py +109 -82
- not1mm/plugins/arrl_10m.py +109 -82
- not1mm/plugins/arrl_dx_cw.py +109 -82
- not1mm/plugins/arrl_dx_ssb.py +109 -82
- not1mm/plugins/arrl_field_day.py +109 -82
- not1mm/plugins/arrl_ss_cw.py +109 -82
- not1mm/plugins/arrl_ss_phone.py +109 -82
- not1mm/plugins/arrl_vhf_jan.py +109 -82
- not1mm/plugins/arrl_vhf_jun.py +109 -82
- not1mm/plugins/arrl_vhf_sep.py +109 -82
- not1mm/plugins/canada_day.py +109 -82
- not1mm/plugins/cq_160_cw.py +109 -74
- not1mm/plugins/cq_160_ssb.py +109 -74
- not1mm/plugins/cq_wpx_cw.py +109 -82
- not1mm/plugins/cq_wpx_rtty.py +109 -82
- not1mm/plugins/cq_wpx_ssb.py +109 -82
- not1mm/plugins/cq_ww_cw.py +115 -83
- not1mm/plugins/cq_ww_rtty.py +110 -73
- not1mm/plugins/cq_ww_ssb.py +109 -82
- not1mm/plugins/cwt.py +109 -82
- not1mm/plugins/general_logging.py +1 -1
- not1mm/plugins/helvetia.py +109 -82
- not1mm/plugins/iaru_fieldday_r1_cw.py +109 -82
- not1mm/plugins/iaru_fieldday_r1_ssb.py +109 -82
- not1mm/plugins/iaru_hf.py +109 -82
- not1mm/plugins/icwc_mst.py +109 -82
- not1mm/plugins/jidx_cw.py +74 -48
- not1mm/plugins/jidx_ph.py +74 -48
- not1mm/plugins/k1usn_sst.py +109 -82
- not1mm/plugins/naqp_cw.py +109 -82
- not1mm/plugins/naqp_rtty.py +109 -82
- not1mm/plugins/naqp_ssb.py +109 -82
- not1mm/plugins/phone_weekly_test.py +109 -82
- not1mm/plugins/ref_cw.py +109 -82
- not1mm/plugins/ref_ssb.py +109 -82
- not1mm/plugins/stew_perry_topband.py +109 -82
- not1mm/plugins/weekly_rtty.py +109 -82
- not1mm/plugins/winter_field_day.py +109 -82
- {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/METADATA +3 -1
- {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/RECORD +51 -51
- {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/LICENSE +0 -0
- {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/WHEEL +0 -0
- {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/entry_points.txt +0 -0
- {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/top_level.txt +0 -0
@@ -147,7 +147,16 @@ def adif(self):
|
|
147
147
|
gen_adif(self, cabrillo_name, "WFD")
|
148
148
|
|
149
149
|
|
150
|
-
def
|
150
|
+
def output_cabrillo_line(line_to_output, ending, file_descriptor, file_encoding):
|
151
|
+
""""""
|
152
|
+
print(
|
153
|
+
line_to_output.encode(file_encoding, errors="ignore").decode(),
|
154
|
+
end=ending,
|
155
|
+
file=file_descriptor,
|
156
|
+
)
|
157
|
+
|
158
|
+
|
159
|
+
def cabrillo(self, file_encoding):
|
151
160
|
"""Generates Cabrillo file. Maybe."""
|
152
161
|
# https://www.cqwpx.com/cabrillo.htm
|
153
162
|
logger.debug("******Cabrillo*****")
|
@@ -164,133 +173,150 @@ def cabrillo(self):
|
|
164
173
|
log = self.database.fetch_all_contacts_asc()
|
165
174
|
try:
|
166
175
|
with open(filename, "w", encoding="utf-8") as file_descriptor:
|
167
|
-
|
168
|
-
|
176
|
+
output_cabrillo_line(
|
177
|
+
"START-OF-LOG: 3.0",
|
178
|
+
"\r\n",
|
179
|
+
file_descriptor,
|
180
|
+
file_encoding,
|
181
|
+
)
|
182
|
+
output_cabrillo_line(
|
169
183
|
f"CREATED-BY: Not1MM v{__version__}",
|
170
|
-
|
171
|
-
|
184
|
+
"\r\n",
|
185
|
+
file_descriptor,
|
186
|
+
file_encoding,
|
172
187
|
)
|
173
|
-
|
188
|
+
output_cabrillo_line(
|
174
189
|
f"CONTEST: {cabrillo_name}",
|
175
|
-
|
176
|
-
|
190
|
+
"\r\n",
|
191
|
+
file_descriptor,
|
192
|
+
file_encoding,
|
177
193
|
)
|
178
194
|
if self.station.get("Club", ""):
|
179
|
-
|
195
|
+
output_cabrillo_line(
|
180
196
|
f"CLUB: {self.station.get('Club', '').upper()}",
|
181
|
-
|
182
|
-
|
197
|
+
"\r\n",
|
198
|
+
file_descriptor,
|
199
|
+
file_encoding,
|
183
200
|
)
|
184
|
-
|
201
|
+
output_cabrillo_line(
|
185
202
|
f"CALLSIGN: {self.station.get('Call','')}",
|
186
|
-
|
187
|
-
|
203
|
+
"\r\n",
|
204
|
+
file_descriptor,
|
205
|
+
file_encoding,
|
188
206
|
)
|
189
|
-
|
207
|
+
output_cabrillo_line(
|
190
208
|
f"LOCATION: {self.station.get('ARRLSection', '')}",
|
191
|
-
|
192
|
-
|
209
|
+
"\r\n",
|
210
|
+
file_descriptor,
|
211
|
+
file_encoding,
|
193
212
|
)
|
194
|
-
|
195
|
-
# f"ARRL-SECTION: {self.pref.get('section', '')}",
|
196
|
-
# end="\r\n",
|
197
|
-
# file=file_descriptor,
|
198
|
-
# )
|
199
|
-
print(
|
213
|
+
output_cabrillo_line(
|
200
214
|
f"CATEGORY-OPERATOR: {self.contest_settings.get('OperatorCategory','')}",
|
201
|
-
|
202
|
-
|
215
|
+
"\r\n",
|
216
|
+
file_descriptor,
|
217
|
+
file_encoding,
|
203
218
|
)
|
204
|
-
|
219
|
+
output_cabrillo_line(
|
205
220
|
f"CATEGORY-ASSISTED: {self.contest_settings.get('AssistedCategory','')}",
|
206
|
-
|
207
|
-
|
221
|
+
"\r\n",
|
222
|
+
file_descriptor,
|
223
|
+
file_encoding,
|
208
224
|
)
|
209
|
-
|
225
|
+
output_cabrillo_line(
|
210
226
|
f"CATEGORY-BAND: {self.contest_settings.get('BandCategory','')}",
|
211
|
-
|
212
|
-
|
227
|
+
"\r\n",
|
228
|
+
file_descriptor,
|
229
|
+
file_encoding,
|
213
230
|
)
|
214
|
-
|
231
|
+
output_cabrillo_line(
|
215
232
|
f"CATEGORY-MODE: {self.contest_settings.get('ModeCategory','')}",
|
216
|
-
|
217
|
-
|
233
|
+
"\r\n",
|
234
|
+
file_descriptor,
|
235
|
+
file_encoding,
|
218
236
|
)
|
219
|
-
|
237
|
+
output_cabrillo_line(
|
220
238
|
f"CATEGORY-TRANSMITTER: {self.contest_settings.get('TransmitterCategory','')}",
|
221
|
-
|
222
|
-
|
239
|
+
"\r\n",
|
240
|
+
file_descriptor,
|
241
|
+
file_encoding,
|
223
242
|
)
|
224
243
|
if self.contest_settings.get("OverlayCategory", "") != "N/A":
|
225
|
-
|
244
|
+
output_cabrillo_line(
|
226
245
|
f"CATEGORY-OVERLAY: {self.contest_settings.get('OverlayCategory','')}",
|
227
|
-
|
228
|
-
|
246
|
+
"\r\n",
|
247
|
+
file_descriptor,
|
248
|
+
file_encoding,
|
229
249
|
)
|
230
|
-
|
250
|
+
output_cabrillo_line(
|
231
251
|
f"GRID-LOCATOR: {self.station.get('GridSquare','')}",
|
232
|
-
|
233
|
-
|
252
|
+
"\r\n",
|
253
|
+
file_descriptor,
|
254
|
+
file_encoding,
|
234
255
|
)
|
235
|
-
|
236
|
-
# f"CATEGORY: {None}",
|
237
|
-
# end="\r\n",
|
238
|
-
# file=file_descriptor,
|
239
|
-
# )
|
240
|
-
print(
|
256
|
+
output_cabrillo_line(
|
241
257
|
f"CATEGORY-POWER: {self.contest_settings.get('PowerCategory','')}",
|
242
|
-
|
243
|
-
|
258
|
+
"\r\n",
|
259
|
+
file_descriptor,
|
260
|
+
file_encoding,
|
244
261
|
)
|
245
262
|
|
246
|
-
|
263
|
+
output_cabrillo_line(
|
247
264
|
f"CLAIMED-SCORE: {calc_score(self)}",
|
248
|
-
|
249
|
-
|
265
|
+
"\r\n",
|
266
|
+
file_descriptor,
|
267
|
+
file_encoding,
|
250
268
|
)
|
251
269
|
ops = f"@{self.station.get('Call','')}"
|
252
270
|
list_of_ops = self.database.get_ops()
|
253
271
|
for op in list_of_ops:
|
254
272
|
ops += f", {op.get('Operator', '')}"
|
255
|
-
|
273
|
+
output_cabrillo_line(
|
256
274
|
f"OPERATORS: {ops}",
|
257
|
-
|
258
|
-
|
275
|
+
"\r\n",
|
276
|
+
file_descriptor,
|
277
|
+
file_encoding,
|
259
278
|
)
|
260
|
-
|
279
|
+
output_cabrillo_line(
|
261
280
|
f"NAME: {self.station.get('Name', '')}",
|
262
|
-
|
263
|
-
|
281
|
+
"\r\n",
|
282
|
+
file_descriptor,
|
283
|
+
file_encoding,
|
264
284
|
)
|
265
|
-
|
285
|
+
output_cabrillo_line(
|
266
286
|
f"ADDRESS: {self.station.get('Street1', '')}",
|
267
|
-
|
268
|
-
|
287
|
+
"\r\n",
|
288
|
+
file_descriptor,
|
289
|
+
file_encoding,
|
269
290
|
)
|
270
|
-
|
291
|
+
output_cabrillo_line(
|
271
292
|
f"ADDRESS-CITY: {self.station.get('City', '')}",
|
272
|
-
|
273
|
-
|
293
|
+
"\r\n",
|
294
|
+
file_descriptor,
|
295
|
+
file_encoding,
|
274
296
|
)
|
275
|
-
|
297
|
+
output_cabrillo_line(
|
276
298
|
f"ADDRESS-STATE-PROVINCE: {self.station.get('State', '')}",
|
277
|
-
|
278
|
-
|
299
|
+
"\r\n",
|
300
|
+
file_descriptor,
|
301
|
+
file_encoding,
|
279
302
|
)
|
280
|
-
|
303
|
+
output_cabrillo_line(
|
281
304
|
f"ADDRESS-POSTALCODE: {self.station.get('Zip', '')}",
|
282
|
-
|
283
|
-
|
305
|
+
"\r\n",
|
306
|
+
file_descriptor,
|
307
|
+
file_encoding,
|
284
308
|
)
|
285
|
-
|
309
|
+
output_cabrillo_line(
|
286
310
|
f"ADDRESS-COUNTRY: {self.station.get('Country', '')}",
|
287
|
-
|
288
|
-
|
311
|
+
"\r\n",
|
312
|
+
file_descriptor,
|
313
|
+
file_encoding,
|
289
314
|
)
|
290
|
-
|
315
|
+
output_cabrillo_line(
|
291
316
|
f"EMAIL: {self.station.get('Email', '')}",
|
292
|
-
|
293
|
-
|
317
|
+
"\r\n",
|
318
|
+
file_descriptor,
|
319
|
+
file_encoding,
|
294
320
|
)
|
295
321
|
for contact in log:
|
296
322
|
the_date_and_time = contact.get("TS", "")
|
@@ -301,17 +327,18 @@ def cabrillo(self):
|
|
301
327
|
|
302
328
|
loggeddate = the_date_and_time[:10]
|
303
329
|
loggedtime = the_date_and_time[11:13] + the_date_and_time[14:16]
|
304
|
-
|
330
|
+
output_cabrillo_line(
|
305
331
|
f"QSO: {frequency} {themode} {loggeddate} {loggedtime} "
|
306
332
|
f"{contact.get('StationPrefix', '').ljust(13)} "
|
307
333
|
f"{self.contest_settings.get('SentExchange', '').ljust(9).upper()}"
|
308
334
|
f"{contact.get('Call', '').ljust(13)} "
|
309
335
|
f"{str(contact.get('Exchange1', '')).ljust(3)} "
|
310
336
|
f"{str(contact.get('Sect', '')).ljust(6)}",
|
311
|
-
|
312
|
-
|
337
|
+
"\r\n",
|
338
|
+
file_descriptor,
|
339
|
+
file_encoding,
|
313
340
|
)
|
314
|
-
|
341
|
+
output_cabrillo_line("END-OF-LOG:", "\r\n", file_descriptor, file_encoding)
|
315
342
|
self.show_message_box(f"Cabrillo saved to: {filename}")
|
316
343
|
except IOError as exception:
|
317
344
|
logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.10.
|
3
|
+
Version: 24.10.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
|
@@ -232,6 +232,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
232
232
|
|
233
233
|
## Recent Changes (Polishing the Turd)
|
234
234
|
|
235
|
+
- [24-10-26] Clear inputs when seeking to a call from the bandmap via the arrow up and down. Fixed bandmap crash from bad telnet data. Drop beacons from bandmap.
|
236
|
+
- [24-10-25] Add File Menu option to create either an ASCII or UTF8 Cabrillo.
|
235
237
|
- [24-10-24-1] Make all Cabrillo files with UTF-8.
|
236
238
|
- [24-10-24] Forgot to convert the VFO dockwidget along with the rest. CQ WW CW, Dupes now score 0.
|
237
239
|
- [24-10-23] Remove duplicate marked calls in the bandmap.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
3
|
-
not1mm/bandmap.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=2TTyUNILQl6vIK_oVi8uzCiRv-fLC6l-S2kiU6cxTRk,135457
|
3
|
+
not1mm/bandmap.py,sha256=X6mMHXS1kXBbUPZCaKgiVJ6Dz6DE6LEQqtEXfT3telg,30811
|
4
4
|
not1mm/checkwindow.py,sha256=F6hNCbVSLG2PPY2afgmwlBWeqr1Uj4-n__AivDLVQ_0,9670
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
6
6
|
not1mm/logwindow.py,sha256=TvpzQTNB92hISlUO3iWBqtlPmlebdhOkAArx0DNGcOs,43966
|
@@ -30,7 +30,7 @@ not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcC
|
|
30
30
|
not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N90,2925
|
31
31
|
not1mm/data/logwindow.ui,sha256=f7vULj96tHIQuR1nJMyvPHHcmVgzkhv9D1isyojsnFU,1458
|
32
32
|
not1mm/data/logwindowx.ui,sha256=CwpI-h7cI1yqyldH9quKftsdHL5lTyL9ABOcf80nfqc,1632
|
33
|
-
not1mm/data/main.ui,sha256=
|
33
|
+
not1mm/data/main.ui,sha256=qX8IAGDP5oeky36GEzniWW0EoeJP5HaRTLUVlPG2Ug0,62449
|
34
34
|
not1mm/data/new_contest.ui,sha256=CBvg-L_81Aftk9_cp88aHrFMLhpRsM80BmA6gOpaGa0,23429
|
35
35
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
36
36
|
not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
|
@@ -115,54 +115,54 @@ not1mm/lib/plugin_common.py,sha256=TbFUbftjELFt4QRdsjSHbqnXSngZOlSwlCTClqosDXA,9
|
|
115
115
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
116
116
|
not1mm/lib/settings.py,sha256=7_JFDSKPOd35Gwzqhrbed4EfrlYUm7AEnz2xBRioc-g,13280
|
117
117
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
118
|
-
not1mm/lib/version.py,sha256=
|
118
|
+
not1mm/lib/version.py,sha256=lhs-4aghoAhL_7sGfxxWp9xQs1uOCSFbmvOaZiGtKtk,49
|
119
119
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
120
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
121
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
122
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
123
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
120
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=QQjEgWQRT35qG1bi87QhoUIOzGbN8C27WIUhhoFNsAI,11866
|
121
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=nGznP9VLooaDnHi0JXttosqAtSRH32oXwWmMrXf95A0,11871
|
122
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=z2W7eGdegD2fjL36vcEyQyKRueY9fBE5nLE3uAZYZxc,11880
|
123
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=QUySORpo6TVXYwlD-DjjbaOS38WMjOtN5DaLd8nZvQ8,11883
|
124
124
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
125
|
-
not1mm/plugins/arrl_10m.py,sha256=
|
126
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
127
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
128
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
125
|
+
not1mm/plugins/arrl_10m.py,sha256=q8jIUC_b7tZeESKEYuDdoJmPR7ot33HcqVm5R8dVmvg,14681
|
126
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=6CxLhewtceKCWY3jMyhdxknW4Eg1uFqTK0To-9sjZAc,18008
|
127
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=AqSiIRlC4UAVyc4S2MnUqT1-vFkxQStl0zjeXPThRCk,18011
|
128
|
+
not1mm/plugins/arrl_field_day.py,sha256=Jukp3TxYJojPVktA5hMaq272hiCqvl0V8A71F5mL--A,16961
|
129
129
|
not1mm/plugins/arrl_rtty_ru.py,sha256=hKUS4isjdXo3EYxQrsqsDupPp2chW8fpoWj0T1pTgJ4,7994
|
130
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
131
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
132
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
133
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
134
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
135
|
-
not1mm/plugins/canada_day.py,sha256=
|
136
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
137
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
138
|
-
not1mm/plugins/cq_wpx_cw.py,sha256
|
139
|
-
not1mm/plugins/cq_wpx_rtty.py,sha256=
|
140
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
141
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
142
|
-
not1mm/plugins/cq_ww_rtty.py,sha256=
|
143
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
144
|
-
not1mm/plugins/cwt.py,sha256=
|
145
|
-
not1mm/plugins/general_logging.py,sha256=
|
146
|
-
not1mm/plugins/helvetia.py,sha256=
|
147
|
-
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=
|
148
|
-
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=
|
149
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
150
|
-
not1mm/plugins/icwc_mst.py,sha256=
|
151
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
152
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
153
|
-
not1mm/plugins/k1usn_sst.py,sha256=
|
154
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
155
|
-
not1mm/plugins/naqp_rtty.py,sha256=
|
156
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
157
|
-
not1mm/plugins/phone_weekly_test.py,sha256=
|
158
|
-
not1mm/plugins/ref_cw.py,sha256=
|
159
|
-
not1mm/plugins/ref_ssb.py,sha256=
|
160
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
161
|
-
not1mm/plugins/weekly_rtty.py,sha256=
|
162
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
163
|
-
not1mm-24.10.
|
164
|
-
not1mm-24.10.
|
165
|
-
not1mm-24.10.
|
166
|
-
not1mm-24.10.
|
167
|
-
not1mm-24.10.
|
168
|
-
not1mm-24.10.
|
130
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=pi24xK7S8fve6U2rdcOATOmnG552i5oHXFXEIukpKB4,17252
|
131
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=XnfNFwtjuAxu285DUsUQdDNC_mDtKut0CT2KVRDKZN8,17240
|
132
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=QonafOYBtrdwlvMSyu0SyroDLsyIqHvJ46Mx-QoaI4Q,16630
|
133
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=F8XhZvYEx-rwaeKbiOGQybQrusurzOkRtKMx5oHY1hE,15722
|
134
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=G7pSD7oNaQJx97380opAHgU6jySZ2LN8OVnI2vwxjS0,15722
|
135
|
+
not1mm/plugins/canada_day.py,sha256=3_Fi8Tvdcw3ZsDAg1uveMnSKxde2YaGHZoF1x89e4w8,15987
|
136
|
+
not1mm/plugins/cq_160_cw.py,sha256=FXLonVa_e70RQYwPrWlkTlGvAInw3Xihm9MyXXC3CHk,15370
|
137
|
+
not1mm/plugins/cq_160_ssb.py,sha256=XRpFRdVmWmd-iJDuUIkWwqY3hlxXORG4CGU0Sy-dcR4,15413
|
138
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=-nBaCFp442qm3WItuqkFjLCxm9X0NjF1H62TlzMbGm4,18502
|
139
|
+
not1mm/plugins/cq_wpx_rtty.py,sha256=BkjiXal8ZuqGUiR0LW4ylfDIkIwH15KkSfbKrA-vaMs,21321
|
140
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=qrHz9MxKvkIvvXdogTwCrwXJaJ5SsdHjs2C5N2W_O-w,17152
|
141
|
+
not1mm/plugins/cq_ww_cw.py,sha256=tAVzA2EtjoRMVqxChZzwNYdPzhdfU23oOtIFDMf7af4,17406
|
142
|
+
not1mm/plugins/cq_ww_rtty.py,sha256=YxQO8jnb-LWJnwV7tSOWNEWUWgwoBJ605jyYui4P7Xk,21934
|
143
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=1RPUz76Ijy9T4C14MhfTaf6fMC4Q6rgvbrkfO8fpFQ4,16999
|
144
|
+
not1mm/plugins/cwt.py,sha256=SDXamK8BZRm1O91AGLIul9Wpzk423EbHxuEd45GCd88,17377
|
145
|
+
not1mm/plugins/general_logging.py,sha256=IHcgZ1YJEEaxPUn7jyTIUpQAsa1jaHO5zfHvcaqbF34,3494
|
146
|
+
not1mm/plugins/helvetia.py,sha256=neRhkvBCdKJzz1ZbE3lisUPQ9sG8i0FAAqsfJBCaBcI,16345
|
147
|
+
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=EqajyS-hd7m6MEdIO5BZw_cQxmo61Yo6WB29sw_BP9U,14214
|
148
|
+
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=tQd0i-fjUs47g5bMwFvkrH89KY6bW5cPCKwDTQbE6gE,14219
|
149
|
+
not1mm/plugins/iaru_hf.py,sha256=Re6EPy7LnhXhZoQd4zcsZ3hdJcpEsiewitL_oEMrq6w,12454
|
150
|
+
not1mm/plugins/icwc_mst.py,sha256=4UfkfsUrTpvGLjdD-6Ea-gX9gUTQrtfddt-M3e7Z1A4,12744
|
151
|
+
not1mm/plugins/jidx_cw.py,sha256=C5P9EiIO2iHEBv15IWknwr6f2Cr78ozY27Qxik8hm-A,13037
|
152
|
+
not1mm/plugins/jidx_ph.py,sha256=MBXQEmZvRlbtlG-ad5vbM-uq500SDdSPsm-kbOPt1LU,12067
|
153
|
+
not1mm/plugins/k1usn_sst.py,sha256=eLPv28T3ebHz0z9u5WaxrlKPAIOJkxOIVmpJbfDQbKY,16282
|
154
|
+
not1mm/plugins/naqp_cw.py,sha256=tlS7l8bF1zoNjJ-FJacOEht47HcFjv0zIHBNkfNIfTQ,18361
|
155
|
+
not1mm/plugins/naqp_rtty.py,sha256=JbluW-QNOyG47jlMBFmbV4UY5ABOFhd_YxYLtKPNP_4,22142
|
156
|
+
not1mm/plugins/naqp_ssb.py,sha256=Xkp_nfJziKJJTY0E2GO3szVWp21MogFp-q1rb-oWuTo,17278
|
157
|
+
not1mm/plugins/phone_weekly_test.py,sha256=4YuG-TfjX4FfDztuVlH0dB7TDMNB-pQ3KP07WL3AwKo,13238
|
158
|
+
not1mm/plugins/ref_cw.py,sha256=gEH1avPN5E5WG5VZcHKAZU2HxGn8RZ3tm1oR7TKmRgY,20910
|
159
|
+
not1mm/plugins/ref_ssb.py,sha256=UC8xwl4uRihTvlYsITCvfTCPVbNXpnO91T8qMDKaW8E,20916
|
160
|
+
not1mm/plugins/stew_perry_topband.py,sha256=UOK9M23eMkcEB83kL8NPHl6QDBJFCXKZpBRlhfuEH2c,11581
|
161
|
+
not1mm/plugins/weekly_rtty.py,sha256=WoMfQXJczvoHQB04i6TAvL6MF91uOOQ9ZmB9BpUkOfo,19098
|
162
|
+
not1mm/plugins/winter_field_day.py,sha256=wPxHKPPeyE2XlRT6Unnz09evFwd0ghWtXU5l-nMr3aI,14492
|
163
|
+
not1mm-24.10.26.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
164
|
+
not1mm-24.10.26.dist-info/METADATA,sha256=tznhgEgHqd1EpyO3HpktRkYk3bJ1Ho-dNcrHC34GXz8,35435
|
165
|
+
not1mm-24.10.26.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
166
|
+
not1mm-24.10.26.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
167
|
+
not1mm-24.10.26.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
168
|
+
not1mm-24.10.26.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|