not1mm 24.9.25.1__py3-none-any.whl → 24.9.28__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 +189 -82
- not1mm/data/main.ui +12 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/general_logging.py +1 -0
- not1mm/radio.py +27 -18
- not1mm/test.py +8 -1
- {not1mm-24.9.25.1.dist-info → not1mm-24.9.28.dist-info}/METADATA +2 -1
- {not1mm-24.9.25.1.dist-info → not1mm-24.9.28.dist-info}/RECORD +12 -12
- {not1mm-24.9.25.1.dist-info → not1mm-24.9.28.dist-info}/LICENSE +0 -0
- {not1mm-24.9.25.1.dist-info → not1mm-24.9.28.dist-info}/WHEEL +0 -0
- {not1mm-24.9.25.1.dist-info → not1mm-24.9.28.dist-info}/entry_points.txt +0 -0
- {not1mm-24.9.25.1.dist-info → not1mm-24.9.28.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -187,7 +187,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
187
187
|
}
|
188
188
|
|
189
189
|
self.setCorner(Qt.Corner.TopRightCorner, Qt.DockWidgetArea.RightDockWidgetArea)
|
190
|
-
self.setCorner(
|
190
|
+
self.setCorner(
|
191
|
+
Qt.Corner.BottomRightCorner, Qt.DockWidgetArea.RightDockWidgetArea
|
192
|
+
)
|
191
193
|
self.setCorner(Qt.Corner.TopLeftCorner, Qt.DockWidgetArea.LeftDockWidgetArea)
|
192
194
|
self.setCorner(Qt.Corner.BottomLeftCorner, Qt.DockWidgetArea.LeftDockWidgetArea)
|
193
195
|
uic.loadUi(fsutils.APP_DATA_PATH / "main.ui", self)
|
@@ -218,7 +220,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
218
220
|
self.actionGenerate_Cabrillo.triggered.connect(self.generate_cabrillo)
|
219
221
|
self.actionGenerate_ADIF.triggered.connect(self.generate_adif)
|
220
222
|
|
221
|
-
self.actionConfiguration_Settings.triggered.connect(
|
223
|
+
self.actionConfiguration_Settings.triggered.connect(
|
224
|
+
self.edit_configuration_settings
|
225
|
+
)
|
222
226
|
self.actionStationSettings.triggered.connect(self.edit_station_settings)
|
223
227
|
|
224
228
|
self.actionNew_Contest.triggered.connect(self.new_contest_dialog)
|
@@ -299,58 +303,152 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
299
303
|
self.F12.customContextMenuRequested.connect(lambda x: self.edit_macro(self.F12))
|
300
304
|
self.F12.clicked.connect(lambda x: self.process_function_key(self.F12))
|
301
305
|
|
302
|
-
self.cw_band_160.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
303
|
-
|
304
|
-
|
305
|
-
self.
|
306
|
-
|
307
|
-
|
308
|
-
self.
|
309
|
-
|
310
|
-
|
311
|
-
self.
|
306
|
+
self.cw_band_160.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
307
|
+
160, "CW"
|
308
|
+
)
|
309
|
+
self.cw_band_80.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
310
|
+
80, "CW"
|
311
|
+
)
|
312
|
+
self.cw_band_60.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
313
|
+
60, "CW"
|
314
|
+
)
|
315
|
+
self.cw_band_40.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
316
|
+
40, "CW"
|
317
|
+
)
|
318
|
+
self.cw_band_30.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
319
|
+
30, "CW"
|
320
|
+
)
|
321
|
+
self.cw_band_20.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
322
|
+
20, "CW"
|
323
|
+
)
|
324
|
+
self.cw_band_17.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
325
|
+
17, "CW"
|
326
|
+
)
|
327
|
+
self.cw_band_15.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
328
|
+
15, "CW"
|
329
|
+
)
|
330
|
+
self.cw_band_12.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
331
|
+
12, "CW"
|
332
|
+
)
|
333
|
+
self.cw_band_10.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
334
|
+
10, "CW"
|
335
|
+
)
|
312
336
|
self.cw_band_6.mousePressEvent = lambda x: self.change_to_band_and_mode(6, "CW")
|
313
337
|
self.cw_band_4.mousePressEvent = lambda x: self.change_to_band_and_mode(4, "CW")
|
314
338
|
self.cw_band_2.mousePressEvent = lambda x: self.change_to_band_and_mode(2, "CW")
|
315
|
-
self.cw_band_125.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
316
|
-
|
317
|
-
|
318
|
-
self.
|
319
|
-
|
320
|
-
|
321
|
-
self.
|
322
|
-
|
323
|
-
|
324
|
-
self.
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
self.
|
329
|
-
|
330
|
-
|
331
|
-
self.
|
332
|
-
|
333
|
-
|
334
|
-
self.
|
335
|
-
|
336
|
-
|
337
|
-
self.
|
338
|
-
|
339
|
-
|
340
|
-
self.
|
341
|
-
|
342
|
-
|
343
|
-
self.
|
344
|
-
|
345
|
-
|
346
|
-
self.
|
347
|
-
|
348
|
-
|
349
|
-
self.
|
350
|
-
|
351
|
-
|
352
|
-
self.
|
353
|
-
|
339
|
+
self.cw_band_125.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
340
|
+
222, "CW"
|
341
|
+
)
|
342
|
+
self.cw_band_70cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
343
|
+
432, "CW"
|
344
|
+
)
|
345
|
+
self.cw_band_33cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
346
|
+
902, "CW"
|
347
|
+
)
|
348
|
+
self.cw_band_23cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
349
|
+
1240, "CW"
|
350
|
+
)
|
351
|
+
|
352
|
+
self.ssb_band_160.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
353
|
+
160, "SSB"
|
354
|
+
)
|
355
|
+
self.ssb_band_80.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
356
|
+
80, "SSB"
|
357
|
+
)
|
358
|
+
self.ssb_band_60.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
359
|
+
60, "SSB"
|
360
|
+
)
|
361
|
+
self.ssb_band_40.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
362
|
+
40, "SSB"
|
363
|
+
)
|
364
|
+
self.ssb_band_20.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
365
|
+
20, "SSB"
|
366
|
+
)
|
367
|
+
self.ssb_band_17.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
368
|
+
17, "SSB"
|
369
|
+
)
|
370
|
+
self.ssb_band_15.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
371
|
+
15, "SSB"
|
372
|
+
)
|
373
|
+
self.ssb_band_12.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
374
|
+
12, "SSB"
|
375
|
+
)
|
376
|
+
self.ssb_band_10.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
377
|
+
10, "SSB"
|
378
|
+
)
|
379
|
+
self.ssb_band_6.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
380
|
+
6, "SSB"
|
381
|
+
)
|
382
|
+
self.ssb_band_4.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
383
|
+
4, "SSB"
|
384
|
+
)
|
385
|
+
self.ssb_band_2.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
386
|
+
2, "SSB"
|
387
|
+
)
|
388
|
+
self.ssb_band_125.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
389
|
+
222, "SSB"
|
390
|
+
)
|
391
|
+
self.ssb_band_70cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
392
|
+
432, "SSB"
|
393
|
+
)
|
394
|
+
self.ssb_band_33cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
395
|
+
902, "SSB"
|
396
|
+
)
|
397
|
+
self.ssb_band_23cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
398
|
+
1240, "SSB"
|
399
|
+
)
|
400
|
+
|
401
|
+
self.rtty_band_160.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
402
|
+
160, "RTTY"
|
403
|
+
)
|
404
|
+
self.rtty_band_80.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
405
|
+
80, "RTTY"
|
406
|
+
)
|
407
|
+
self.rtty_band_60.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
408
|
+
60, "RTTY"
|
409
|
+
)
|
410
|
+
self.rtty_band_40.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
411
|
+
40, "RTTY"
|
412
|
+
)
|
413
|
+
self.rtty_band_30.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
414
|
+
30, "RTTY"
|
415
|
+
)
|
416
|
+
self.rtty_band_20.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
417
|
+
20, "RTTY"
|
418
|
+
)
|
419
|
+
self.rtty_band_17.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
420
|
+
17, "RTTY"
|
421
|
+
)
|
422
|
+
self.rtty_band_15.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
423
|
+
15, "RTTY"
|
424
|
+
)
|
425
|
+
self.rtty_band_12.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
426
|
+
12, "RTTY"
|
427
|
+
)
|
428
|
+
self.rtty_band_10.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
429
|
+
10, "RTTY"
|
430
|
+
)
|
431
|
+
self.rtty_band_6.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
432
|
+
6, "RTTY"
|
433
|
+
)
|
434
|
+
self.rtty_band_4.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
435
|
+
4, "RTTY"
|
436
|
+
)
|
437
|
+
self.rtty_band_2.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
438
|
+
2, "RTTY"
|
439
|
+
)
|
440
|
+
self.rtty_band_125.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
441
|
+
222, "RTTY"
|
442
|
+
)
|
443
|
+
self.rtty_band_70cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
444
|
+
432, "RTTY"
|
445
|
+
)
|
446
|
+
self.rtty_band_33cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
447
|
+
902, "RTTY"
|
448
|
+
)
|
449
|
+
self.rtty_band_23cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
450
|
+
1240, "RTTY"
|
451
|
+
)
|
354
452
|
|
355
453
|
self.band_indicators_cw = {
|
356
454
|
"160": self.cw_band_160,
|
@@ -608,7 +706,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
608
706
|
darkPalette.setColor(QPalette.ColorRole.BrightText, QColorConstants.Red)
|
609
707
|
darkPalette.setColor(QPalette.ColorRole.Link, QColor(42, 130, 218))
|
610
708
|
darkPalette.setColor(QPalette.ColorRole.Highlight, QColor(42, 130, 218))
|
611
|
-
darkPalette.setColor(
|
709
|
+
darkPalette.setColor(
|
710
|
+
QPalette.ColorRole.HighlightedText, QColorConstants.Black
|
612
711
|
)
|
613
712
|
darkPalette.setColor(
|
614
713
|
QPalette.ColorGroup.Disabled,
|
@@ -2387,19 +2486,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2387
2486
|
except (IOError, TypeError, ValueError) as exception:
|
2388
2487
|
logger.critical("Error: %s", exception)
|
2389
2488
|
|
2390
|
-
# self.look_up = None
|
2391
|
-
# if self.pref.get("useqrz"):
|
2392
|
-
# self.look_up = QRZlookup(
|
2393
|
-
# self.pref.get("lookupusername"),
|
2394
|
-
# self.pref.get("lookuppassword"),
|
2395
|
-
# )
|
2396
|
-
|
2397
|
-
# if self.pref.get("usehamqth"):
|
2398
|
-
# self.look_up = HamQTH(
|
2399
|
-
# self.pref.get("lookupusername"),
|
2400
|
-
# self.pref.get("lookuppassword"),
|
2401
|
-
# )
|
2402
|
-
|
2403
2489
|
if self.pref.get("run_state"):
|
2404
2490
|
self.radioButton_run.setChecked(True)
|
2405
2491
|
else:
|
@@ -2448,6 +2534,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2448
2534
|
except (RuntimeError, AttributeError):
|
2449
2535
|
...
|
2450
2536
|
|
2537
|
+
self.rig_control = None
|
2451
2538
|
self.fldigi_util = FlDigi_Comm()
|
2452
2539
|
|
2453
2540
|
if self.pref.get("useflrig", False):
|
@@ -2518,7 +2605,18 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2518
2605
|
|
2519
2606
|
# If bands list is empty fill it with HF.
|
2520
2607
|
if self.pref.get("bands", []) == []:
|
2521
|
-
self.pref["bands"] = [
|
2608
|
+
self.pref["bands"] = [
|
2609
|
+
"160",
|
2610
|
+
"80",
|
2611
|
+
"60",
|
2612
|
+
"40",
|
2613
|
+
"30",
|
2614
|
+
"20",
|
2615
|
+
"17",
|
2616
|
+
"15",
|
2617
|
+
"12",
|
2618
|
+
"10",
|
2619
|
+
]
|
2522
2620
|
|
2523
2621
|
# Hide all the bands and then show only the wanted bands.
|
2524
2622
|
for _indicator in [
|
@@ -2936,13 +3034,12 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2936
3034
|
if mode in ("CW", "CW-U", "CW-L", "CWR"):
|
2937
3035
|
self.setmode("CW")
|
2938
3036
|
self.radio_state["mode"] = "CW"
|
2939
|
-
if self.rig_control:
|
2940
|
-
|
2941
|
-
|
2942
|
-
if self.
|
2943
|
-
|
2944
|
-
|
2945
|
-
self.rig_control.cat.set_flrig_cw_send(True)
|
3037
|
+
if self.rig_control and self.rig_control.online:
|
3038
|
+
self.rig_control.set_mode("CW")
|
3039
|
+
if self.pref.get("cwtype") == 3 and self.rig_control is not None:
|
3040
|
+
if self.rig_control.interface == "flrig":
|
3041
|
+
self.cwspeed_spinbox_changed()
|
3042
|
+
self.rig_control.cat.set_flrig_cw_send(True)
|
2946
3043
|
band = getband(str(self.radio_state.get("vfoa", "0.0")))
|
2947
3044
|
self.set_band_indicator(band)
|
2948
3045
|
self.set_window_title()
|
@@ -2951,11 +3048,10 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2951
3048
|
return
|
2952
3049
|
if mode == "RTTY":
|
2953
3050
|
self.setmode("RTTY")
|
2954
|
-
if self.rig_control:
|
2955
|
-
|
2956
|
-
|
2957
|
-
|
2958
|
-
self.radio_state["mode"] = "RTTY"
|
3051
|
+
if self.rig_control and self.rig_control.online:
|
3052
|
+
self.rig_control.set_mode("RTTY")
|
3053
|
+
else:
|
3054
|
+
self.radio_state["mode"] = "RTTY"
|
2959
3055
|
band = getband(str(self.radio_state.get("vfoa", "0.0")))
|
2960
3056
|
self.set_band_indicator(band)
|
2961
3057
|
self.set_window_title()
|
@@ -3175,9 +3271,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3175
3271
|
self.contact["Band"] = get_logged_band(str(vfo))
|
3176
3272
|
self.set_band_indicator(band)
|
3177
3273
|
|
3178
|
-
if self.rig_control:
|
3179
|
-
|
3180
|
-
self.rig_control.get_modes()
|
3274
|
+
if self.rig_control and self.rig_control.online:
|
3275
|
+
self.rig_control.get_modes()
|
3181
3276
|
|
3182
3277
|
if self.radio_state.get("mode") != mode:
|
3183
3278
|
info_dirty = True
|
@@ -3191,7 +3286,19 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
3191
3286
|
self.setmode(mode)
|
3192
3287
|
if mode == "LSB" or mode == "USB":
|
3193
3288
|
self.setmode("SSB")
|
3194
|
-
if mode
|
3289
|
+
if mode in (
|
3290
|
+
"RTTY",
|
3291
|
+
"RTTY-R",
|
3292
|
+
"LSB-D",
|
3293
|
+
"USB-D",
|
3294
|
+
"AM-D",
|
3295
|
+
"FM-D",
|
3296
|
+
"DIGI-U",
|
3297
|
+
"DIGI-L",
|
3298
|
+
"RTTYR",
|
3299
|
+
"PKTLSB",
|
3300
|
+
"PKTUSB",
|
3301
|
+
):
|
3195
3302
|
self.setmode("RTTY")
|
3196
3303
|
|
3197
3304
|
if info_dirty:
|
not1mm/data/main.ui
CHANGED
@@ -778,6 +778,12 @@
|
|
778
778
|
</item>
|
779
779
|
<item>
|
780
780
|
<widget class="QLineEdit" name="sent">
|
781
|
+
<property name="minimumSize">
|
782
|
+
<size>
|
783
|
+
<width>60</width>
|
784
|
+
<height>0</height>
|
785
|
+
</size>
|
786
|
+
</property>
|
781
787
|
<property name="font">
|
782
788
|
<font>
|
783
789
|
<family>JetBrains Mono ExtraLight</family>
|
@@ -813,6 +819,12 @@
|
|
813
819
|
</item>
|
814
820
|
<item>
|
815
821
|
<widget class="QLineEdit" name="receive">
|
822
|
+
<property name="minimumSize">
|
823
|
+
<size>
|
824
|
+
<width>60</width>
|
825
|
+
<height>0</height>
|
826
|
+
</size>
|
827
|
+
</property>
|
816
828
|
<property name="font">
|
817
829
|
<font>
|
818
830
|
<family>JetBrains Mono ExtraLight</family>
|
not1mm/lib/version.py
CHANGED
not1mm/radio.py
CHANGED
@@ -90,30 +90,39 @@ class Radio(QObject):
|
|
90
90
|
self.cat.sendcw(texttosend)
|
91
91
|
|
92
92
|
def set_vfo(self, vfo):
|
93
|
+
self.vfoa = vfo
|
94
|
+
|
93
95
|
if self.cat:
|
94
96
|
self.cat.set_vfo(vfo)
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
97
|
+
try:
|
98
|
+
self.poll_callback.emit(
|
99
|
+
{
|
100
|
+
"vfoa": self.vfoa,
|
101
|
+
"mode": self.mode,
|
102
|
+
"bw": self.bw,
|
103
|
+
"online": self.online,
|
104
|
+
}
|
105
|
+
)
|
106
|
+
except RuntimeError:
|
107
|
+
...
|
104
108
|
|
105
109
|
def set_mode(self, mode):
|
110
|
+
self.mode = mode
|
111
|
+
|
106
112
|
if self.cat:
|
107
113
|
self.cat.set_mode(mode)
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
114
|
+
|
115
|
+
try:
|
116
|
+
self.poll_callback.emit(
|
117
|
+
{
|
118
|
+
"vfoa": self.vfoa,
|
119
|
+
"mode": self.mode,
|
120
|
+
"bw": self.bw,
|
121
|
+
"online": self.online,
|
122
|
+
}
|
123
|
+
)
|
124
|
+
except RuntimeError:
|
125
|
+
...
|
117
126
|
|
118
127
|
def get_modes(self):
|
119
128
|
return self.modes
|
not1mm/test.py
CHANGED
@@ -31,10 +31,17 @@
|
|
31
31
|
# from not1mm.radio import Radio
|
32
32
|
from not1mm.lib.cat_interface import CAT
|
33
33
|
|
34
|
+
rig_control = None
|
35
|
+
|
36
|
+
print(f"{rig_control and rig_control.online}")
|
37
|
+
|
34
38
|
rig_control = CAT("rigctld", "127.0.0.1", 4532)
|
35
39
|
|
40
|
+
print(f"{rig_control and rig_control.online}")
|
41
|
+
|
36
42
|
modes = rig_control.get_mode_list()
|
43
|
+
mode = rig_control.get_mode()
|
37
44
|
vfo = rig_control.get_vfo()
|
38
45
|
|
39
46
|
print(f"{modes=}\n")
|
40
|
-
print(f"{vfo=}")
|
47
|
+
print(f"{vfo=} {mode=}")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.9.
|
3
|
+
Version: 24.9.28
|
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
|
@@ -230,6 +230,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
230
230
|
|
231
231
|
## Recent Changes
|
232
232
|
|
233
|
+
- [24-9-28] Fixed crash with CAT None, Display tweek. Refactored a couple conditionals.
|
233
234
|
- [24-9-25-1] Added WARC and 4M bands.
|
234
235
|
- [24-9-25] Fix QRZ lookup crash on non-existant call.
|
235
236
|
- [24-9-24] Correct crash in CWT.
|
@@ -1,12 +1,12 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=OfJVg-K9ej-huBPzrTaY0wcRBNiLnvzhjelFx0T7nEY,129231
|
3
3
|
not1mm/bandmap.py,sha256=1b5tXCfGTnpqqn6hPNt7zRA8SmuwSXzSwNHZXhCRt70,31434
|
4
4
|
not1mm/checkwindow.py,sha256=aI-nr8OF90IWV7R_XRdmitvBJ9M85evCs72HoU3Jnvc,10374
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
6
6
|
not1mm/logwindow.py,sha256=pwhiwolmGnW01LF4sjlu3ywLsgfxL6KuGuKuYKYmgeY,44403
|
7
7
|
not1mm/lookupservice.py,sha256=jsFg5tsB9cVnahLP-hI3CMwbjlEpMx944O8RLWntAy4,3342
|
8
|
-
not1mm/radio.py,sha256=
|
9
|
-
not1mm/test.py,sha256=
|
8
|
+
not1mm/radio.py,sha256=3X38i3jzZG9D1QN7p4pYZpMzRz6xyuWuN8rxLK3UNik,3662
|
9
|
+
not1mm/test.py,sha256=HI1lUcKncR-5QXpBuepliRc4HYSSOcwZJWXrP6yjXb8,2453
|
10
10
|
not1mm/vfo.py,sha256=IvmUQYMIPzLJw_BHQGis4J_IEW-vlBtdfxZLXPh7OzI,12335
|
11
11
|
not1mm/voice_keying.py,sha256=sA3gw5_k7kShTg2qhG7HkKDM5M6KheJVRkAc_C7mxDk,3006
|
12
12
|
not1mm/data/JetBrainsMono-ExtraLight.ttf,sha256=g5Hn7BPounWMGDj1a8zZcyKMz03HSqW__pUluRR7Evg,274144
|
@@ -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=IOrAJfJDhG30bWi08pLBGzDKjBvjKfPNI9-GNpvu0vI,61886
|
34
34
|
not1mm/data/new_contest.ui,sha256=jR_bQMvsKgqD3az9iNS2fvPSs3WTf_phs5JXp1Ra8nA,23008
|
35
35
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
36
36
|
not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
|
@@ -114,7 +114,7 @@ not1mm/lib/plugin_common.py,sha256=HbphFFzU1XIIHgsCHOb_tCAnQyqT-nYnxoiz1oZ2_cg,9
|
|
114
114
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
115
115
|
not1mm/lib/settings.py,sha256=0Su8BQM4haVhc_P74q8UhzRZxtgWhM40UmVtQdMJQeM,10022
|
116
116
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
117
|
-
not1mm/lib/version.py,sha256=
|
117
|
+
not1mm/lib/version.py,sha256=xJwA0FCG5-fYglNvxnhp4t5R1Y5yj0T8ddodCCyOGME,48
|
118
118
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
119
119
|
not1mm/plugins/10_10_fall_cw.py,sha256=IttjX1yy4nDdACGsiYlPteFG8eVseX_WtoFio6bqHE8,10953
|
120
120
|
not1mm/plugins/10_10_spring_cw.py,sha256=ThCptdM3dX4ywhoy2JRcOEyHSqcJolFaT7O_PYzM1Mg,10958
|
@@ -140,7 +140,7 @@ not1mm/plugins/cq_ww_cw.py,sha256=m4Xkqb_qFyXWEgkxqbanvtiCTvI8NNPKNXzHgFZzhnE,12
|
|
140
140
|
not1mm/plugins/cq_ww_rtty.py,sha256=RK7xmZN3f_7Pk1bFKXvqEQd1NAsoJFO-xuhLrtp0qhw,16279
|
141
141
|
not1mm/plugins/cq_ww_ssb.py,sha256=hZwG88-hPLmwIGXHX_S_ty8Nhn1kIuPjSuTRpCWoN9g,12631
|
142
142
|
not1mm/plugins/cwt.py,sha256=k5yX_2Ma_arVxzDP2E9mwA08LUVFLOk8vUpHwHt2aGA,12777
|
143
|
-
not1mm/plugins/general_logging.py,sha256=
|
143
|
+
not1mm/plugins/general_logging.py,sha256=n-2es7erqK1ptwq_wwIKIwktptKN7ra2eWjAQlpXUac,3479
|
144
144
|
not1mm/plugins/helvetia.py,sha256=6aOO4uiLzFFgHA-A3xz6IRdCJpqPOAm0egKxP5Y_Ie0,15432
|
145
145
|
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=B_kh8d8LkC0va_iIiIzImOKAT8724yf9ceF-2eQdx1w,13301
|
146
146
|
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=5hIL60cfGBzVlb70XFtI3OeGZT2966LoryTgKK6kDEc,13306
|
@@ -156,9 +156,9 @@ not1mm/plugins/ref_cw.py,sha256=aWjHHkqIKutjRUtzh09y5haFfnZK9poRQDWRQMDRxxU,1632
|
|
156
156
|
not1mm/plugins/stew_perry_topband.py,sha256=CKBQbYl4ETxhXJd2dma4fg_C5pag_s7Nf61SCztZtqE,10668
|
157
157
|
not1mm/plugins/weekly_rtty.py,sha256=DQcy3SY0Zn56EdlYGf3NxrRhTnkNa5IqRQPRQdKDSPs,14255
|
158
158
|
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
159
|
-
not1mm-24.9.
|
160
|
-
not1mm-24.9.
|
161
|
-
not1mm-24.9.
|
162
|
-
not1mm-24.9.
|
163
|
-
not1mm-24.9.
|
164
|
-
not1mm-24.9.
|
159
|
+
not1mm-24.9.28.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
160
|
+
not1mm-24.9.28.dist-info/METADATA,sha256=DFYxDeIDI6L48rN6I73typUeVY5aRBh2ryaSTbvSwTo,31639
|
161
|
+
not1mm-24.9.28.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
162
|
+
not1mm-24.9.28.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
163
|
+
not1mm-24.9.28.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
164
|
+
not1mm-24.9.28.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|