not1mm 23.12.5__py3-none-any.whl → 24.1.15__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 +249 -399
- not1mm/data/MASTER.SCP +1056 -48577
- not1mm/data/configuration.ui +93 -2
- not1mm/data/cty.json +1 -1
- not1mm/data/main.ui +186 -3
- not1mm/data/new_contest.ui +26 -1
- not1mm/lib/ham_utility.py +16 -4
- not1mm/lib/settings.py +40 -0
- 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 +413 -0
- not1mm/plugins/arrl_dx_cw.py +1 -1
- not1mm/plugins/arrl_dx_ssb.py +1 -1
- not1mm/plugins/arrl_ss_cw.py +4 -1
- not1mm/plugins/arrl_ss_phone.py +4 -1
- not1mm/plugins/arrl_vhf_jan.py +390 -0
- not1mm/plugins/arrl_vhf_jun.py +358 -0
- not1mm/plugins/arrl_vhf_sep.py +357 -0
- not1mm/plugins/canada_day.py +5 -2
- not1mm/plugins/cq_wpx_cw.py +1 -1
- not1mm/plugins/cq_wpx_ssb.py +1 -1
- not1mm/plugins/cq_ww_cw.py +1 -1
- not1mm/plugins/cq_ww_ssb.py +1 -1
- not1mm/plugins/cwt.py +5 -2
- not1mm/plugins/general_logging.py +1 -1
- not1mm/plugins/iaru_hf.py +1 -1
- not1mm/plugins/jidx_cw.py +2 -1
- not1mm/plugins/jidx_ph.py +2 -1
- not1mm/plugins/naqp_cw.py +1 -2
- not1mm/plugins/naqp_ssb.py +1 -2
- not1mm/plugins/phone_weekly_test.py +372 -0
- not1mm/plugins/stew_perry_topband.py +336 -0
- not1mm/weee.py +10 -0
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/METADATA +19 -7
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/RECORD +42 -35
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/LICENSE +0 -0
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/WHEEL +0 -0
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/entry_points.txt +0 -0
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/top_level.txt +0 -0
not1mm/data/main.ui
CHANGED
@@ -149,6 +149,66 @@
|
|
149
149
|
</property>
|
150
150
|
</widget>
|
151
151
|
</item>
|
152
|
+
<item>
|
153
|
+
<widget class="QLabel" name="cw_band_6">
|
154
|
+
<property name="text">
|
155
|
+
<string>6</string>
|
156
|
+
</property>
|
157
|
+
<property name="alignment">
|
158
|
+
<set>Qt::AlignCenter</set>
|
159
|
+
</property>
|
160
|
+
</widget>
|
161
|
+
</item>
|
162
|
+
<item>
|
163
|
+
<widget class="QLabel" name="cw_band_2">
|
164
|
+
<property name="text">
|
165
|
+
<string>2</string>
|
166
|
+
</property>
|
167
|
+
<property name="alignment">
|
168
|
+
<set>Qt::AlignCenter</set>
|
169
|
+
</property>
|
170
|
+
</widget>
|
171
|
+
</item>
|
172
|
+
<item>
|
173
|
+
<widget class="QLabel" name="cw_band_125">
|
174
|
+
<property name="text">
|
175
|
+
<string>1.25</string>
|
176
|
+
</property>
|
177
|
+
<property name="alignment">
|
178
|
+
<set>Qt::AlignCenter</set>
|
179
|
+
</property>
|
180
|
+
</widget>
|
181
|
+
</item>
|
182
|
+
<item>
|
183
|
+
<widget class="QLabel" name="cw_band_70cm">
|
184
|
+
<property name="text">
|
185
|
+
<string>70cm</string>
|
186
|
+
</property>
|
187
|
+
<property name="alignment">
|
188
|
+
<set>Qt::AlignCenter</set>
|
189
|
+
</property>
|
190
|
+
</widget>
|
191
|
+
</item>
|
192
|
+
<item>
|
193
|
+
<widget class="QLabel" name="cw_band_33cm">
|
194
|
+
<property name="text">
|
195
|
+
<string>33cm</string>
|
196
|
+
</property>
|
197
|
+
<property name="alignment">
|
198
|
+
<set>Qt::AlignCenter</set>
|
199
|
+
</property>
|
200
|
+
</widget>
|
201
|
+
</item>
|
202
|
+
<item>
|
203
|
+
<widget class="QLabel" name="cw_band_23cm">
|
204
|
+
<property name="text">
|
205
|
+
<string>23cm</string>
|
206
|
+
</property>
|
207
|
+
<property name="alignment">
|
208
|
+
<set>Qt::AlignCenter</set>
|
209
|
+
</property>
|
210
|
+
</widget>
|
211
|
+
</item>
|
152
212
|
<item>
|
153
213
|
<spacer name="verticalSpacer">
|
154
214
|
<property name="orientation">
|
@@ -169,7 +229,7 @@
|
|
169
229
|
<widget class="QFrame" name="Band_Mode_Frame_SSB">
|
170
230
|
<property name="minimumSize">
|
171
231
|
<size>
|
172
|
-
<width>
|
232
|
+
<width>40</width>
|
173
233
|
<height>0</height>
|
174
234
|
</size>
|
175
235
|
</property>
|
@@ -262,6 +322,66 @@
|
|
262
322
|
</property>
|
263
323
|
</widget>
|
264
324
|
</item>
|
325
|
+
<item>
|
326
|
+
<widget class="QLabel" name="ssb_band_6">
|
327
|
+
<property name="text">
|
328
|
+
<string>6</string>
|
329
|
+
</property>
|
330
|
+
<property name="alignment">
|
331
|
+
<set>Qt::AlignCenter</set>
|
332
|
+
</property>
|
333
|
+
</widget>
|
334
|
+
</item>
|
335
|
+
<item>
|
336
|
+
<widget class="QLabel" name="ssb_band_2">
|
337
|
+
<property name="text">
|
338
|
+
<string>2</string>
|
339
|
+
</property>
|
340
|
+
<property name="alignment">
|
341
|
+
<set>Qt::AlignCenter</set>
|
342
|
+
</property>
|
343
|
+
</widget>
|
344
|
+
</item>
|
345
|
+
<item>
|
346
|
+
<widget class="QLabel" name="ssb_band_125">
|
347
|
+
<property name="text">
|
348
|
+
<string>1.25</string>
|
349
|
+
</property>
|
350
|
+
<property name="alignment">
|
351
|
+
<set>Qt::AlignCenter</set>
|
352
|
+
</property>
|
353
|
+
</widget>
|
354
|
+
</item>
|
355
|
+
<item>
|
356
|
+
<widget class="QLabel" name="ssb_band_70cm">
|
357
|
+
<property name="text">
|
358
|
+
<string>70cm</string>
|
359
|
+
</property>
|
360
|
+
<property name="alignment">
|
361
|
+
<set>Qt::AlignCenter</set>
|
362
|
+
</property>
|
363
|
+
</widget>
|
364
|
+
</item>
|
365
|
+
<item>
|
366
|
+
<widget class="QLabel" name="ssb_band_33cm">
|
367
|
+
<property name="text">
|
368
|
+
<string>33cm</string>
|
369
|
+
</property>
|
370
|
+
<property name="alignment">
|
371
|
+
<set>Qt::AlignCenter</set>
|
372
|
+
</property>
|
373
|
+
</widget>
|
374
|
+
</item>
|
375
|
+
<item>
|
376
|
+
<widget class="QLabel" name="ssb_band_23cm">
|
377
|
+
<property name="text">
|
378
|
+
<string>23cm</string>
|
379
|
+
</property>
|
380
|
+
<property name="alignment">
|
381
|
+
<set>Qt::AlignCenter</set>
|
382
|
+
</property>
|
383
|
+
</widget>
|
384
|
+
</item>
|
265
385
|
<item>
|
266
386
|
<spacer name="verticalSpacer_2">
|
267
387
|
<property name="orientation">
|
@@ -282,7 +402,7 @@
|
|
282
402
|
<widget class="QFrame" name="Band_Mode_Frame_RTTY">
|
283
403
|
<property name="minimumSize">
|
284
404
|
<size>
|
285
|
-
<width>
|
405
|
+
<width>40</width>
|
286
406
|
<height>0</height>
|
287
407
|
</size>
|
288
408
|
</property>
|
@@ -375,6 +495,69 @@
|
|
375
495
|
</property>
|
376
496
|
</widget>
|
377
497
|
</item>
|
498
|
+
<item>
|
499
|
+
<widget class="QLabel" name="rtty_band_6">
|
500
|
+
<property name="text">
|
501
|
+
<string>6</string>
|
502
|
+
</property>
|
503
|
+
<property name="alignment">
|
504
|
+
<set>Qt::AlignCenter</set>
|
505
|
+
</property>
|
506
|
+
</widget>
|
507
|
+
</item>
|
508
|
+
<item>
|
509
|
+
<widget class="QLabel" name="rtty_band_2">
|
510
|
+
<property name="text">
|
511
|
+
<string>2</string>
|
512
|
+
</property>
|
513
|
+
<property name="alignment">
|
514
|
+
<set>Qt::AlignCenter</set>
|
515
|
+
</property>
|
516
|
+
</widget>
|
517
|
+
</item>
|
518
|
+
<item>
|
519
|
+
<widget class="QLabel" name="rtty_band_125">
|
520
|
+
<property name="text">
|
521
|
+
<string>1.25</string>
|
522
|
+
</property>
|
523
|
+
<property name="alignment">
|
524
|
+
<set>Qt::AlignCenter</set>
|
525
|
+
</property>
|
526
|
+
</widget>
|
527
|
+
</item>
|
528
|
+
<item>
|
529
|
+
<widget class="QLabel" name="rtty_band_70cm">
|
530
|
+
<property name="text">
|
531
|
+
<string>70cm</string>
|
532
|
+
</property>
|
533
|
+
<property name="alignment">
|
534
|
+
<set>Qt::AlignCenter</set>
|
535
|
+
</property>
|
536
|
+
</widget>
|
537
|
+
</item>
|
538
|
+
<item>
|
539
|
+
<widget class="QLabel" name="rtty_band_33cm">
|
540
|
+
<property name="text">
|
541
|
+
<string>33cm</string>
|
542
|
+
</property>
|
543
|
+
<property name="alignment">
|
544
|
+
<set>Qt::AlignCenter</set>
|
545
|
+
</property>
|
546
|
+
</widget>
|
547
|
+
</item>
|
548
|
+
<item>
|
549
|
+
<widget class="QLabel" name="rtty_band_23cm">
|
550
|
+
<property name="enabled">
|
551
|
+
<bool>true</bool>
|
552
|
+
</property>
|
553
|
+
<property name="text">
|
554
|
+
<string>23cm</string>
|
555
|
+
</property>
|
556
|
+
<property name="alignment">
|
557
|
+
<set>Qt::AlignCenter</set>
|
558
|
+
</property>
|
559
|
+
</widget>
|
560
|
+
</item>
|
378
561
|
<item>
|
379
562
|
<spacer name="verticalSpacer_3">
|
380
563
|
<property name="orientation">
|
@@ -636,7 +819,7 @@
|
|
636
819
|
<item>
|
637
820
|
<widget class="QSpinBox" name="cw_speed">
|
638
821
|
<property name="sizePolicy">
|
639
|
-
<sizepolicy hsizetype="Preferred" vsizetype="
|
822
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
640
823
|
<horstretch>0</horstretch>
|
641
824
|
<verstretch>0</verstretch>
|
642
825
|
</sizepolicy>
|
not1mm/data/new_contest.ui
CHANGED
@@ -212,6 +212,11 @@
|
|
212
212
|
<string>10 10 WINTER PHONE</string>
|
213
213
|
</property>
|
214
214
|
</item>
|
215
|
+
<item>
|
216
|
+
<property name="text">
|
217
|
+
<string>ARRL 10M</string>
|
218
|
+
</property>
|
219
|
+
</item>
|
215
220
|
<item>
|
216
221
|
<property name="text">
|
217
222
|
<string>ARRL DX CW</string>
|
@@ -237,6 +242,21 @@
|
|
237
242
|
<string>ARRL SS PHONE</string>
|
238
243
|
</property>
|
239
244
|
</item>
|
245
|
+
<item>
|
246
|
+
<property name="text">
|
247
|
+
<string>ARRL VHF JAN</string>
|
248
|
+
</property>
|
249
|
+
</item>
|
250
|
+
<item>
|
251
|
+
<property name="text">
|
252
|
+
<string>ARRL VHF JUN</string>
|
253
|
+
</property>
|
254
|
+
</item>
|
255
|
+
<item>
|
256
|
+
<property name="text">
|
257
|
+
<string>ARRL VHF SEP</string>
|
258
|
+
</property>
|
259
|
+
</item>
|
240
260
|
<item>
|
241
261
|
<property name="text">
|
242
262
|
<string>CANADA DAY</string>
|
@@ -292,6 +312,11 @@
|
|
292
312
|
<string>NAQP SSB</string>
|
293
313
|
</property>
|
294
314
|
</item>
|
315
|
+
<item>
|
316
|
+
<property name="text">
|
317
|
+
<string>PHONE WEEKLY TEST</string>
|
318
|
+
</property>
|
319
|
+
</item>
|
295
320
|
<item>
|
296
321
|
<property name="text">
|
297
322
|
<string>WINTER FIELD DAY</string>
|
@@ -306,7 +331,7 @@
|
|
306
331
|
</property>
|
307
332
|
<property name="time">
|
308
333
|
<time>
|
309
|
-
<hour>
|
334
|
+
<hour>16</hour>
|
310
335
|
<minute>0</minute>
|
311
336
|
<second>0</second>
|
312
337
|
</time>
|
not1mm/lib/ham_utility.py
CHANGED
@@ -102,9 +102,13 @@ def getband(freq: str) -> str:
|
|
102
102
|
if 148000000 > frequency > 144000000:
|
103
103
|
return "2"
|
104
104
|
if 225000000 > frequency > 222000000:
|
105
|
-
return "
|
105
|
+
return "1.25"
|
106
106
|
if 450000000 > frequency > 420000000:
|
107
|
-
return "
|
107
|
+
return "70cm"
|
108
|
+
if 928000000 > frequency > 902000000:
|
109
|
+
return "33cm"
|
110
|
+
if 1300000000 > frequency > 1240000000:
|
111
|
+
return "23cm"
|
108
112
|
return "0"
|
109
113
|
|
110
114
|
|
@@ -144,7 +148,13 @@ def get_logged_band(freq: str) -> str:
|
|
144
148
|
if 225000000 > frequency > 222000000:
|
145
149
|
return "222"
|
146
150
|
if 450000000 > frequency > 420000000:
|
147
|
-
return "
|
151
|
+
return "432"
|
152
|
+
if 928000000 > frequency > 902000000:
|
153
|
+
return "902"
|
154
|
+
if 1300000000 > frequency > 1240000000:
|
155
|
+
return "1296"
|
156
|
+
if 10500000000 > freq > 2300000000:
|
157
|
+
return "2300+"
|
148
158
|
return "0"
|
149
159
|
|
150
160
|
|
@@ -179,7 +189,7 @@ def get_adif_band(freq: Decimal) -> str:
|
|
179
189
|
if 450 > freq > 420:
|
180
190
|
return "70cm"
|
181
191
|
if 225 > freq > 222:
|
182
|
-
return "1.
|
192
|
+
return "1.25m"
|
183
193
|
if 148 > freq > 144:
|
184
194
|
return "2m"
|
185
195
|
if 71 > freq > 70:
|
@@ -242,6 +252,8 @@ def fakefreq(band: str, mode: str) -> str:
|
|
242
252
|
"2": ["144030", "144144", "144250"],
|
243
253
|
"222": ["222100", "222070", "222100"],
|
244
254
|
"432": ["432070", "432200", "432100"],
|
255
|
+
"902": ["902100", "902100", "902100"],
|
256
|
+
"1240": ["1241000", "1241000", "1241000"],
|
245
257
|
"SAT": ["144144", "144144", "144144"],
|
246
258
|
}
|
247
259
|
freqtoreturn = fakefreqs[band][modes[mode]]
|
not1mm/lib/settings.py
CHANGED
@@ -83,6 +83,20 @@ class Settings(QtWidgets.QDialog):
|
|
83
83
|
index = self.cluster_mode.findText(value)
|
84
84
|
if index != -1:
|
85
85
|
self.cluster_mode.setCurrentIndex(index)
|
86
|
+
self.activate_160m.setChecked(bool("160" in self.preference.get("bands", [])))
|
87
|
+
self.activate_80m.setChecked(bool("80" in self.preference.get("bands", [])))
|
88
|
+
self.activate_40m.setChecked(bool("40" in self.preference.get("bands", [])))
|
89
|
+
self.activate_20m.setChecked(bool("20" in self.preference.get("bands", [])))
|
90
|
+
self.activate_15m.setChecked(bool("15" in self.preference.get("bands", [])))
|
91
|
+
self.activate_10m.setChecked(bool("10" in self.preference.get("bands", [])))
|
92
|
+
self.activate_6m.setChecked(bool("6" in self.preference.get("bands", [])))
|
93
|
+
self.activate_2m.setChecked(bool("2" in self.preference.get("bands", [])))
|
94
|
+
self.activate_1dot25.setChecked(
|
95
|
+
bool("1.25" in self.preference.get("bands", []))
|
96
|
+
)
|
97
|
+
self.activate_70cm.setChecked(bool("70cm" in self.preference.get("bands", [])))
|
98
|
+
self.activate_33cm.setChecked(bool("33cm" in self.preference.get("bands", [])))
|
99
|
+
self.activate_23cm.setChecked(bool("23cm" in self.preference.get("bands", [])))
|
86
100
|
|
87
101
|
def save_changes(self):
|
88
102
|
"""
|
@@ -134,3 +148,29 @@ class Settings(QtWidgets.QDialog):
|
|
134
148
|
self.preference["cluster_port"] = int(self.cluster_port_field.text())
|
135
149
|
self.preference["cluster_filter"] = self.cluster_filter.text()
|
136
150
|
self.preference["cluster_mode"] = self.cluster_mode.currentText()
|
151
|
+
bandlist = list()
|
152
|
+
if self.activate_160m.isChecked():
|
153
|
+
bandlist.append("160")
|
154
|
+
if self.activate_80m.isChecked():
|
155
|
+
bandlist.append("80")
|
156
|
+
if self.activate_40m.isChecked():
|
157
|
+
bandlist.append("40")
|
158
|
+
if self.activate_20m.isChecked():
|
159
|
+
bandlist.append("20")
|
160
|
+
if self.activate_15m.isChecked():
|
161
|
+
bandlist.append("15")
|
162
|
+
if self.activate_10m.isChecked():
|
163
|
+
bandlist.append("10")
|
164
|
+
if self.activate_6m.isChecked():
|
165
|
+
bandlist.append("6")
|
166
|
+
if self.activate_2m.isChecked():
|
167
|
+
bandlist.append("2")
|
168
|
+
if self.activate_1dot25.isChecked():
|
169
|
+
bandlist.append("1.25")
|
170
|
+
if self.activate_70cm.isChecked():
|
171
|
+
bandlist.append("70cm")
|
172
|
+
if self.activate_33cm.isChecked():
|
173
|
+
bandlist.append("33cm")
|
174
|
+
if self.activate_23cm.isChecked():
|
175
|
+
bandlist.append("23cm")
|
176
|
+
self.preference["bands"] = bandlist
|
not1mm/lib/version.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
"""It's the version"""
|
2
|
-
__version__ = "
|
2
|
+
__version__ = "24.1.15"
|
not1mm/plugins/10_10_fall_cw.py
CHANGED