not1mm 25.3.14__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 +1 -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.14.dist-info → not1mm-25.3.17.dist-info}/METADATA +7 -1
- {not1mm-25.3.14.dist-info → not1mm-25.3.17.dist-info}/RECORD +56 -55
- {not1mm-25.3.14.dist-info → not1mm-25.3.17.dist-info}/LICENSE +0 -0
- {not1mm-25.3.14.dist-info → not1mm-25.3.17.dist-info}/WHEEL +0 -0
- {not1mm-25.3.14.dist-info → not1mm-25.3.17.dist-info}/entry_points.txt +0 -0
- {not1mm-25.3.14.dist-info → not1mm-25.3.17.dist-info}/top_level.txt +0 -0
not1mm/data/new_contest.ui
CHANGED
not1mm/lib/plugin_common.py
CHANGED
@@ -81,7 +81,7 @@ def gen_adif(self, cabrillo_name: str, contest_id=""):
|
|
81
81
|
)
|
82
82
|
log = self.database.fetch_all_contacts_asc()
|
83
83
|
try:
|
84
|
-
with open(filename, "w", encoding="utf-8") as file_descriptor:
|
84
|
+
with open(filename, "w", encoding="utf-8", newline="") as file_descriptor:
|
85
85
|
print("Not1MM ADIF export", end="\r\n", file=file_descriptor)
|
86
86
|
print("<ADIF_VER:5>2.2.0", end="\r\n", file=file_descriptor)
|
87
87
|
print("<EOH>", end="\r\n", file=file_descriptor)
|
not1mm/lib/version.py
CHANGED
not1mm/plugins/10_10_fall_cw.py
CHANGED
@@ -182,7 +182,7 @@ def cabrillo(self, file_encoding):
|
|
182
182
|
logger.debug("%s", filename)
|
183
183
|
log = self.database.fetch_all_contacts_asc()
|
184
184
|
try:
|
185
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
185
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
186
186
|
output_cabrillo_line(
|
187
187
|
"START-OF-LOG: 3.0",
|
188
188
|
"\r\n",
|
@@ -181,7 +181,7 @@ def cabrillo(self, file_encoding):
|
|
181
181
|
logger.debug("%s", filename)
|
182
182
|
log = self.database.fetch_all_contacts_asc()
|
183
183
|
try:
|
184
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
184
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
185
185
|
output_cabrillo_line(
|
186
186
|
"START-OF-LOG: 3.0",
|
187
187
|
"\r\n",
|
@@ -185,7 +185,7 @@ def cabrillo(self, file_encoding):
|
|
185
185
|
logger.debug("%s", filename)
|
186
186
|
log = self.database.fetch_all_contacts_asc()
|
187
187
|
try:
|
188
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
188
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
189
189
|
output_cabrillo_line(
|
190
190
|
"START-OF-LOG: 3.0",
|
191
191
|
"\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/arrl_10m.py
CHANGED
@@ -267,7 +267,7 @@ def cabrillo(self, file_encoding):
|
|
267
267
|
logger.debug("%s", filename)
|
268
268
|
log = self.database.fetch_all_contacts_asc()
|
269
269
|
try:
|
270
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
270
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
271
271
|
output_cabrillo_line(
|
272
272
|
"START-OF-LOG: 3.0",
|
273
273
|
"\r\n",
|
not1mm/plugins/arrl_160m.py
CHANGED
@@ -275,7 +275,7 @@ def cabrillo(self, file_encoding):
|
|
275
275
|
logger.debug("%s", filename)
|
276
276
|
log = self.database.fetch_all_contacts_asc()
|
277
277
|
try:
|
278
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
278
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
279
279
|
output_cabrillo_line(
|
280
280
|
"START-OF-LOG: 3.0",
|
281
281
|
"\r\n",
|
not1mm/plugins/arrl_dx_cw.py
CHANGED
@@ -211,7 +211,7 @@ def cabrillo(self, file_encoding):
|
|
211
211
|
logger.debug("%s", filename)
|
212
212
|
log = self.database.fetch_all_contacts_asc()
|
213
213
|
try:
|
214
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
214
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
215
215
|
output_cabrillo_line(
|
216
216
|
"START-OF-LOG: 3.0",
|
217
217
|
"\r\n",
|
not1mm/plugins/arrl_dx_ssb.py
CHANGED
@@ -211,7 +211,7 @@ def cabrillo(self, file_encoding):
|
|
211
211
|
logger.debug("%s", filename)
|
212
212
|
log = self.database.fetch_all_contacts_asc()
|
213
213
|
try:
|
214
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
214
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
215
215
|
output_cabrillo_line(
|
216
216
|
"START-OF-LOG: 3.0",
|
217
217
|
"\r\n",
|
not1mm/plugins/arrl_field_day.py
CHANGED
@@ -165,7 +165,7 @@ def cabrillo(self, file_encoding):
|
|
165
165
|
logger.debug("%s", filename)
|
166
166
|
log = self.database.fetch_all_contacts_asc()
|
167
167
|
try:
|
168
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
168
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
169
169
|
output_cabrillo_line(
|
170
170
|
"START-OF-LOG: 3.0",
|
171
171
|
"\r\n",
|
not1mm/plugins/arrl_rtty_ru.py
CHANGED
@@ -235,7 +235,7 @@ def cabrillo(self, file_encoding):
|
|
235
235
|
logger.debug("%s", filename)
|
236
236
|
log = self.database.fetch_all_contacts_asc()
|
237
237
|
try:
|
238
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
238
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
239
239
|
output_cabrillo_line(
|
240
240
|
"START-OF-LOG: 3.0",
|
241
241
|
"\r\n",
|
not1mm/plugins/arrl_ss_cw.py
CHANGED
@@ -210,7 +210,7 @@ def cabrillo(self, file_encoding):
|
|
210
210
|
logger.debug("%s", filename)
|
211
211
|
log = self.database.fetch_all_contacts_asc()
|
212
212
|
try:
|
213
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
213
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
214
214
|
output_cabrillo_line(
|
215
215
|
"START-OF-LOG: 3.0",
|
216
216
|
"\r\n",
|
not1mm/plugins/arrl_ss_phone.py
CHANGED
@@ -191,7 +191,7 @@ def cabrillo(self, file_encoding):
|
|
191
191
|
logger.debug("%s", filename)
|
192
192
|
log = self.database.fetch_all_contacts_asc()
|
193
193
|
try:
|
194
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
194
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
195
195
|
output_cabrillo_line(
|
196
196
|
"START-OF-LOG: 3.0",
|
197
197
|
"\r\n",
|
not1mm/plugins/arrl_vhf_jan.py
CHANGED
@@ -241,7 +241,7 @@ def cabrillo(self, file_encoding):
|
|
241
241
|
logger.debug("%s", filename)
|
242
242
|
log = self.database.fetch_all_contacts_asc()
|
243
243
|
try:
|
244
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
244
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
245
245
|
output_cabrillo_line(
|
246
246
|
"START-OF-LOG: 3.0",
|
247
247
|
"\r\n",
|
not1mm/plugins/arrl_vhf_jun.py
CHANGED
@@ -209,7 +209,7 @@ def cabrillo(self, file_encoding):
|
|
209
209
|
logger.debug("%s", filename)
|
210
210
|
log = self.database.fetch_all_contacts_asc()
|
211
211
|
try:
|
212
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
212
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
213
213
|
output_cabrillo_line(
|
214
214
|
"START-OF-LOG: 3.0",
|
215
215
|
"\r\n",
|
not1mm/plugins/arrl_vhf_sep.py
CHANGED
@@ -209,7 +209,7 @@ def cabrillo(self, file_encoding):
|
|
209
209
|
logger.debug("%s", filename)
|
210
210
|
log = self.database.fetch_all_contacts_asc()
|
211
211
|
try:
|
212
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
212
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
213
213
|
output_cabrillo_line(
|
214
214
|
"START-OF-LOG: 3.0",
|
215
215
|
"\r\n",
|
not1mm/plugins/canada_day.py
CHANGED
@@ -232,7 +232,7 @@ def cabrillo(self, file_encoding):
|
|
232
232
|
logger.debug("%s", filename)
|
233
233
|
log = self.database.fetch_all_contacts_asc()
|
234
234
|
try:
|
235
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
235
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
236
236
|
output_cabrillo_line(
|
237
237
|
"START-OF-LOG: 3.0",
|
238
238
|
"\r\n",
|
not1mm/plugins/cq_160_cw.py
CHANGED
@@ -220,7 +220,7 @@ def cabrillo(self, file_encoding):
|
|
220
220
|
logger.debug("%s", filename)
|
221
221
|
log = self.database.fetch_all_contacts_asc()
|
222
222
|
try:
|
223
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
223
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
224
224
|
output_cabrillo_line(
|
225
225
|
"START-OF-LOG: 3.0",
|
226
226
|
"\r\n",
|
not1mm/plugins/cq_160_ssb.py
CHANGED
@@ -220,7 +220,7 @@ def cabrillo(self, file_encoding):
|
|
220
220
|
logger.debug("%s", filename)
|
221
221
|
log = self.database.fetch_all_contacts_asc()
|
222
222
|
try:
|
223
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
223
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
224
224
|
output_cabrillo_line(
|
225
225
|
"START-OF-LOG: 3.0",
|
226
226
|
"\r\n",
|
not1mm/plugins/cq_wpx_cw.py
CHANGED
@@ -253,7 +253,7 @@ def cabrillo(self, file_encoding):
|
|
253
253
|
logger.debug("%s", filename)
|
254
254
|
log = self.database.fetch_all_contacts_asc()
|
255
255
|
try:
|
256
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
256
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
257
257
|
output_cabrillo_line(
|
258
258
|
"START-OF-LOG: 3.0",
|
259
259
|
"\r\n",
|
not1mm/plugins/cq_wpx_rtty.py
CHANGED
@@ -252,7 +252,7 @@ def cabrillo(self, file_encoding):
|
|
252
252
|
logger.debug("%s", filename)
|
253
253
|
log = self.database.fetch_all_contacts_asc()
|
254
254
|
try:
|
255
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
255
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
256
256
|
output_cabrillo_line(
|
257
257
|
"START-OF-LOG: 3.0",
|
258
258
|
"\r\n",
|
not1mm/plugins/cq_wpx_ssb.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/cq_ww_cw.py
CHANGED
@@ -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/cq_ww_rtty.py
CHANGED
@@ -246,7 +246,7 @@ def cabrillo(self, file_encoding):
|
|
246
246
|
logger.debug("%s", filename)
|
247
247
|
log = self.database.fetch_all_contacts_asc()
|
248
248
|
try:
|
249
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
249
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
250
250
|
output_cabrillo_line(
|
251
251
|
"START-OF-LOG: 3.0",
|
252
252
|
"\r\n",
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
@@ -233,7 +233,7 @@ def cabrillo(self, file_encoding):
|
|
233
233
|
logger.debug("%s", filename)
|
234
234
|
log = self.database.fetch_all_contacts_asc()
|
235
235
|
try:
|
236
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
236
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
237
237
|
output_cabrillo_line(
|
238
238
|
"START-OF-LOG: 3.0",
|
239
239
|
"\r\n",
|
not1mm/plugins/cwt.py
CHANGED
@@ -210,7 +210,7 @@ def cabrillo(self, file_encoding):
|
|
210
210
|
logger.debug("%s", filename)
|
211
211
|
log = self.database.fetch_all_contacts_asc()
|
212
212
|
try:
|
213
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
213
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
214
214
|
output_cabrillo_line(
|
215
215
|
"START-OF-LOG: 3.0",
|
216
216
|
"\r\n",
|
not1mm/plugins/darc_xmas.py
CHANGED
@@ -237,7 +237,7 @@ def cabrillo(self, file_encoding):
|
|
237
237
|
logger.debug("%s", filename)
|
238
238
|
log = self.database.fetch_all_contacts_asc()
|
239
239
|
try:
|
240
|
-
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
240
|
+
with open(filename, "w", encoding=file_encoding, newline="") as file_descriptor:
|
241
241
|
output_cabrillo_line(
|
242
242
|
"START-OF-LOG: 3.0",
|
243
243
|
"\r\n",
|