not1mm 24.9.24__py3-none-any.whl → 24.9.25.1__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 +97 -140
- not1mm/data/configuration.ui +79 -44
- not1mm/data/main.ui +141 -1
- not1mm/lib/ham_utility.py +5 -0
- not1mm/lib/settings.py +17 -6
- not1mm/lib/version.py +1 -1
- {not1mm-24.9.24.dist-info → not1mm-24.9.25.1.dist-info}/METADATA +3 -1
- {not1mm-24.9.24.dist-info → not1mm-24.9.25.1.dist-info}/RECORD +12 -12
- {not1mm-24.9.24.dist-info → not1mm-24.9.25.1.dist-info}/LICENSE +0 -0
- {not1mm-24.9.24.dist-info → not1mm-24.9.25.1.dist-info}/WHEEL +0 -0
- {not1mm-24.9.24.dist-info → not1mm-24.9.25.1.dist-info}/entry_points.txt +0 -0
- {not1mm-24.9.24.dist-info → not1mm-24.9.25.1.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -95,7 +95,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
95
95
|
"command_buttons": False,
|
96
96
|
"cw_macros": True,
|
97
97
|
"bands_modes": True,
|
98
|
-
"bands": ["160", "80", "40", "20", "15", "10"],
|
98
|
+
"bands": ["160", "80", "60", "40", "30", "20", "17", "15", "12", "10"],
|
99
99
|
"current_database": "ham.db",
|
100
100
|
"contest": "",
|
101
101
|
"multicast_group": "239.1.1.1",
|
@@ -187,9 +187,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
187
187
|
}
|
188
188
|
|
189
189
|
self.setCorner(Qt.Corner.TopRightCorner, Qt.DockWidgetArea.RightDockWidgetArea)
|
190
|
-
self.setCorner(
|
191
|
-
Qt.Corner.BottomRightCorner, Qt.DockWidgetArea.RightDockWidgetArea
|
192
|
-
)
|
190
|
+
self.setCorner(Qt.Corner.BottomRightCorner, Qt.DockWidgetArea.RightDockWidgetArea)
|
193
191
|
self.setCorner(Qt.Corner.TopLeftCorner, Qt.DockWidgetArea.LeftDockWidgetArea)
|
194
192
|
self.setCorner(Qt.Corner.BottomLeftCorner, Qt.DockWidgetArea.LeftDockWidgetArea)
|
195
193
|
uic.loadUi(fsutils.APP_DATA_PATH / "main.ui", self)
|
@@ -220,9 +218,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
220
218
|
self.actionGenerate_Cabrillo.triggered.connect(self.generate_cabrillo)
|
221
219
|
self.actionGenerate_ADIF.triggered.connect(self.generate_adif)
|
222
220
|
|
223
|
-
self.actionConfiguration_Settings.triggered.connect(
|
224
|
-
self.edit_configuration_settings
|
225
|
-
)
|
221
|
+
self.actionConfiguration_Settings.triggered.connect(self.edit_configuration_settings)
|
226
222
|
self.actionStationSettings.triggered.connect(self.edit_station_settings)
|
227
223
|
|
228
224
|
self.actionNew_Contest.triggered.connect(self.new_contest_dialog)
|
@@ -303,121 +299,72 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
303
299
|
self.F12.customContextMenuRequested.connect(lambda x: self.edit_macro(self.F12))
|
304
300
|
self.F12.clicked.connect(lambda x: self.process_function_key(self.F12))
|
305
301
|
|
306
|
-
self.cw_band_160.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
307
|
-
|
308
|
-
)
|
309
|
-
self.
|
310
|
-
|
311
|
-
)
|
312
|
-
self.
|
313
|
-
|
314
|
-
)
|
315
|
-
self.
|
316
|
-
20, "CW"
|
317
|
-
)
|
318
|
-
self.cw_band_15.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
319
|
-
15, "CW"
|
320
|
-
)
|
321
|
-
self.cw_band_10.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
322
|
-
10, "CW"
|
323
|
-
)
|
302
|
+
self.cw_band_160.mousePressEvent = lambda x: self.change_to_band_and_mode(160, "CW")
|
303
|
+
self.cw_band_80.mousePressEvent = lambda x: self.change_to_band_and_mode(80, "CW")
|
304
|
+
self.cw_band_60.mousePressEvent = lambda x: self.change_to_band_and_mode(60, "CW")
|
305
|
+
self.cw_band_40.mousePressEvent = lambda x: self.change_to_band_and_mode(40, "CW")
|
306
|
+
self.cw_band_30.mousePressEvent = lambda x: self.change_to_band_and_mode(30, "CW")
|
307
|
+
self.cw_band_20.mousePressEvent = lambda x: self.change_to_band_and_mode(20, "CW")
|
308
|
+
self.cw_band_17.mousePressEvent = lambda x: self.change_to_band_and_mode(17, "CW")
|
309
|
+
self.cw_band_15.mousePressEvent = lambda x: self.change_to_band_and_mode(15, "CW")
|
310
|
+
self.cw_band_12.mousePressEvent = lambda x: self.change_to_band_and_mode(12, "CW")
|
311
|
+
self.cw_band_10.mousePressEvent = lambda x: self.change_to_band_and_mode(10, "CW")
|
324
312
|
self.cw_band_6.mousePressEvent = lambda x: self.change_to_band_and_mode(6, "CW")
|
313
|
+
self.cw_band_4.mousePressEvent = lambda x: self.change_to_band_and_mode(4, "CW")
|
325
314
|
self.cw_band_2.mousePressEvent = lambda x: self.change_to_band_and_mode(2, "CW")
|
326
|
-
self.cw_band_125.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
327
|
-
|
328
|
-
)
|
329
|
-
self.
|
330
|
-
|
331
|
-
)
|
332
|
-
self.
|
333
|
-
|
334
|
-
)
|
335
|
-
self.
|
336
|
-
|
337
|
-
)
|
338
|
-
|
339
|
-
self.
|
340
|
-
|
341
|
-
)
|
342
|
-
self.
|
343
|
-
|
344
|
-
)
|
345
|
-
self.
|
346
|
-
|
347
|
-
|
348
|
-
self.
|
349
|
-
|
350
|
-
)
|
351
|
-
self.
|
352
|
-
|
353
|
-
)
|
354
|
-
self.
|
355
|
-
|
356
|
-
)
|
357
|
-
self.
|
358
|
-
|
359
|
-
)
|
360
|
-
self.
|
361
|
-
|
362
|
-
)
|
363
|
-
self.
|
364
|
-
|
365
|
-
)
|
366
|
-
self.ssb_band_70cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
367
|
-
432, "SSB"
|
368
|
-
)
|
369
|
-
self.ssb_band_33cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
370
|
-
902, "SSB"
|
371
|
-
)
|
372
|
-
self.ssb_band_23cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
373
|
-
1240, "SSB"
|
374
|
-
)
|
375
|
-
|
376
|
-
self.rtty_band_160.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
377
|
-
160, "RTTY"
|
378
|
-
)
|
379
|
-
self.rtty_band_80.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
380
|
-
80, "RTTY"
|
381
|
-
)
|
382
|
-
self.rtty_band_40.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
383
|
-
40, "RTTY"
|
384
|
-
)
|
385
|
-
self.rtty_band_20.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
386
|
-
20, "RTTY"
|
387
|
-
)
|
388
|
-
self.rtty_band_15.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
389
|
-
15, "RTTY"
|
390
|
-
)
|
391
|
-
self.rtty_band_10.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
392
|
-
10, "RTTY"
|
393
|
-
)
|
394
|
-
self.rtty_band_6.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
395
|
-
6, "RTTY"
|
396
|
-
)
|
397
|
-
self.rtty_band_2.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
398
|
-
2, "RTTY"
|
399
|
-
)
|
400
|
-
self.rtty_band_125.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
401
|
-
222, "RTTY"
|
402
|
-
)
|
403
|
-
self.rtty_band_70cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
404
|
-
432, "RTTY"
|
405
|
-
)
|
406
|
-
self.rtty_band_33cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
407
|
-
902, "RTTY"
|
408
|
-
)
|
409
|
-
self.rtty_band_23cm.mousePressEvent = lambda x: self.change_to_band_and_mode(
|
410
|
-
1240, "RTTY"
|
411
|
-
)
|
315
|
+
self.cw_band_125.mousePressEvent = lambda x: self.change_to_band_and_mode(222, "CW")
|
316
|
+
self.cw_band_70cm.mousePressEvent = lambda x: self.change_to_band_and_mode(432, "CW")
|
317
|
+
self.cw_band_33cm.mousePressEvent = lambda x: self.change_to_band_and_mode(902, "CW")
|
318
|
+
self.cw_band_23cm.mousePressEvent = lambda x: self.change_to_band_and_mode(1240, "CW")
|
319
|
+
|
320
|
+
self.ssb_band_160.mousePressEvent = lambda x: self.change_to_band_and_mode(160, "SSB")
|
321
|
+
self.ssb_band_80.mousePressEvent = lambda x: self.change_to_band_and_mode(80, "SSB")
|
322
|
+
self.ssb_band_60.mousePressEvent = lambda x: self.change_to_band_and_mode(60, "SSB")
|
323
|
+
self.ssb_band_40.mousePressEvent = lambda x: self.change_to_band_and_mode(40, "SSB")
|
324
|
+
self.ssb_band_20.mousePressEvent = lambda x: self.change_to_band_and_mode(20, "SSB")
|
325
|
+
self.ssb_band_17.mousePressEvent = lambda x: self.change_to_band_and_mode(17, "SSB")
|
326
|
+
self.ssb_band_15.mousePressEvent = lambda x: self.change_to_band_and_mode(15, "SSB")
|
327
|
+
self.ssb_band_12.mousePressEvent = lambda x: self.change_to_band_and_mode(12, "SSB")
|
328
|
+
self.ssb_band_10.mousePressEvent = lambda x: self.change_to_band_and_mode(10, "SSB")
|
329
|
+
self.ssb_band_6.mousePressEvent = lambda x: self.change_to_band_and_mode(6, "SSB")
|
330
|
+
self.ssb_band_4.mousePressEvent = lambda x: self.change_to_band_and_mode(4, "SSB")
|
331
|
+
self.ssb_band_2.mousePressEvent = lambda x: self.change_to_band_and_mode(2, "SSB")
|
332
|
+
self.ssb_band_125.mousePressEvent = lambda x: self.change_to_band_and_mode(222, "SSB")
|
333
|
+
self.ssb_band_70cm.mousePressEvent = lambda x: self.change_to_band_and_mode(432, "SSB")
|
334
|
+
self.ssb_band_33cm.mousePressEvent = lambda x: self.change_to_band_and_mode(902, "SSB")
|
335
|
+
self.ssb_band_23cm.mousePressEvent = lambda x: self.change_to_band_and_mode(1240, "SSB")
|
336
|
+
|
337
|
+
self.rtty_band_160.mousePressEvent = lambda x: self.change_to_band_and_mode(160, "RTTY")
|
338
|
+
self.rtty_band_80.mousePressEvent = lambda x: self.change_to_band_and_mode(80, "RTTY")
|
339
|
+
self.rtty_band_60.mousePressEvent = lambda x: self.change_to_band_and_mode(60, "RTTY")
|
340
|
+
self.rtty_band_40.mousePressEvent = lambda x: self.change_to_band_and_mode(40, "RTTY")
|
341
|
+
self.rtty_band_30.mousePressEvent = lambda x: self.change_to_band_and_mode(30, "RTTY")
|
342
|
+
self.rtty_band_20.mousePressEvent = lambda x: self.change_to_band_and_mode(20, "RTTY")
|
343
|
+
self.rtty_band_17.mousePressEvent = lambda x: self.change_to_band_and_mode(17, "RTTY")
|
344
|
+
self.rtty_band_15.mousePressEvent = lambda x: self.change_to_band_and_mode(15, "RTTY")
|
345
|
+
self.rtty_band_12.mousePressEvent = lambda x: self.change_to_band_and_mode(12, "RTTY")
|
346
|
+
self.rtty_band_10.mousePressEvent = lambda x: self.change_to_band_and_mode(10, "RTTY")
|
347
|
+
self.rtty_band_6.mousePressEvent = lambda x: self.change_to_band_and_mode(6, "RTTY")
|
348
|
+
self.rtty_band_4.mousePressEvent = lambda x: self.change_to_band_and_mode(4, "RTTY")
|
349
|
+
self.rtty_band_2.mousePressEvent = lambda x: self.change_to_band_and_mode(2, "RTTY")
|
350
|
+
self.rtty_band_125.mousePressEvent = lambda x: self.change_to_band_and_mode(222, "RTTY")
|
351
|
+
self.rtty_band_70cm.mousePressEvent = lambda x: self.change_to_band_and_mode(432, "RTTY")
|
352
|
+
self.rtty_band_33cm.mousePressEvent = lambda x: self.change_to_band_and_mode(902, "RTTY")
|
353
|
+
self.rtty_band_23cm.mousePressEvent = lambda x: self.change_to_band_and_mode(1240, "RTTY")
|
412
354
|
|
413
355
|
self.band_indicators_cw = {
|
414
356
|
"160": self.cw_band_160,
|
415
357
|
"80": self.cw_band_80,
|
358
|
+
"60": self.cw_band_60,
|
416
359
|
"40": self.cw_band_40,
|
360
|
+
"30": self.cw_band_30,
|
417
361
|
"20": self.cw_band_20,
|
362
|
+
"17": self.cw_band_17,
|
418
363
|
"15": self.cw_band_15,
|
364
|
+
"12": self.cw_band_12,
|
419
365
|
"10": self.cw_band_10,
|
420
366
|
"6": self.cw_band_6,
|
367
|
+
"4": self.cw_band_4,
|
421
368
|
"2": self.cw_band_2,
|
422
369
|
"1.25": self.cw_band_125,
|
423
370
|
"70cm": self.cw_band_70cm,
|
@@ -428,11 +375,15 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
428
375
|
self.band_indicators_ssb = {
|
429
376
|
"160": self.ssb_band_160,
|
430
377
|
"80": self.ssb_band_80,
|
378
|
+
"60": self.ssb_band_60,
|
431
379
|
"40": self.ssb_band_40,
|
432
380
|
"20": self.ssb_band_20,
|
381
|
+
"17": self.ssb_band_17,
|
433
382
|
"15": self.ssb_band_15,
|
383
|
+
"12": self.ssb_band_12,
|
434
384
|
"10": self.ssb_band_10,
|
435
385
|
"6": self.ssb_band_6,
|
386
|
+
"4": self.ssb_band_4,
|
436
387
|
"2": self.ssb_band_2,
|
437
388
|
"1.25": self.ssb_band_125,
|
438
389
|
"70cm": self.ssb_band_70cm,
|
@@ -443,11 +394,16 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
443
394
|
self.band_indicators_rtty = {
|
444
395
|
"160": self.rtty_band_160,
|
445
396
|
"80": self.rtty_band_80,
|
397
|
+
"60": self.rtty_band_60,
|
446
398
|
"40": self.rtty_band_40,
|
399
|
+
"30": self.rtty_band_30,
|
447
400
|
"20": self.rtty_band_20,
|
401
|
+
"17": self.rtty_band_17,
|
448
402
|
"15": self.rtty_band_15,
|
403
|
+
"12": self.rtty_band_12,
|
449
404
|
"10": self.rtty_band_10,
|
450
405
|
"6": self.rtty_band_6,
|
406
|
+
"4": self.rtty_band_4,
|
451
407
|
"2": self.rtty_band_2,
|
452
408
|
"1.25": self.rtty_band_125,
|
453
409
|
"70cm": self.rtty_band_70cm,
|
@@ -652,8 +608,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
652
608
|
darkPalette.setColor(QPalette.ColorRole.BrightText, QColorConstants.Red)
|
653
609
|
darkPalette.setColor(QPalette.ColorRole.Link, QColor(42, 130, 218))
|
654
610
|
darkPalette.setColor(QPalette.ColorRole.Highlight, QColor(42, 130, 218))
|
655
|
-
darkPalette.setColor(
|
656
|
-
QPalette.ColorRole.HighlightedText, QColorConstants.Black
|
611
|
+
darkPalette.setColor(QPalette.ColorRole.HighlightedText, QColorConstants.Black
|
657
612
|
)
|
658
613
|
darkPalette.setColor(
|
659
614
|
QPalette.ColorGroup.Disabled,
|
@@ -2563,7 +2518,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2563
2518
|
|
2564
2519
|
# If bands list is empty fill it with HF.
|
2565
2520
|
if self.pref.get("bands", []) == []:
|
2566
|
-
self.pref["bands"] = ["160", "80", "40", "20", "15", "10"]
|
2521
|
+
self.pref["bands"] = ["160", "80", "60", "40", "30", "20", "17", "15", "12", "10"]
|
2567
2522
|
|
2568
2523
|
# Hide all the bands and then show only the wanted bands.
|
2569
2524
|
for _indicator in [
|
@@ -2661,32 +2616,34 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2661
2616
|
json_data.get("cmd", "") == "LOOKUP_RESPONSE"
|
2662
2617
|
and json_data.get("station", "") == platform.node()
|
2663
2618
|
):
|
2664
|
-
|
2665
|
-
|
2666
|
-
|
2667
|
-
|
2668
|
-
|
2669
|
-
|
2670
|
-
|
2671
|
-
|
2672
|
-
|
2673
|
-
|
2674
|
-
|
2675
|
-
|
2676
|
-
|
2677
|
-
|
2678
|
-
|
2679
|
-
|
2680
|
-
|
2681
|
-
|
2682
|
-
|
2683
|
-
|
2684
|
-
|
2685
|
-
|
2686
|
-
|
2687
|
-
|
2688
|
-
|
2689
|
-
|
2619
|
+
if json_data.get("result", None) is not None:
|
2620
|
+
fname = json_data.get("result", {}).get("fname", "")
|
2621
|
+
name = json_data.get("result", {}).get("name", "")
|
2622
|
+
grid = json_data.get("result", {}).get("grid", "")
|
2623
|
+
# error_text = json_data.get("result", {}).get("error_text", "")
|
2624
|
+
nickname = json_data.get("result", {}).get("nickname", "")
|
2625
|
+
|
2626
|
+
if self.contest:
|
2627
|
+
if "General Logging" in self.contest.name:
|
2628
|
+
if nickname:
|
2629
|
+
self.other_1.setText(nickname)
|
2630
|
+
elif fname:
|
2631
|
+
self.other_1.setText(fname)
|
2632
|
+
elif name:
|
2633
|
+
self.other_1.setText(name)
|
2634
|
+
|
2635
|
+
if grid:
|
2636
|
+
self.contact["GridSquare"] = grid
|
2637
|
+
# _theircountry = response.get("country", "")
|
2638
|
+
if self.station.get("GridSquare", ""):
|
2639
|
+
heading = bearing(self.station.get("GridSquare", ""), grid)
|
2640
|
+
kilometers = distance(
|
2641
|
+
self.station.get("GridSquare", ""), grid
|
2642
|
+
)
|
2643
|
+
self.heading_distance.setText(
|
2644
|
+
f"{grid} Hdg {heading}° LP {reciprocol(heading)}° / "
|
2645
|
+
f"distance {int(kilometers*0.621371)}mi {kilometers}km"
|
2646
|
+
)
|
2690
2647
|
|
2691
2648
|
def dark_mode_state_changed(self) -> None:
|
2692
2649
|
"""Called when the Dark Mode menu state is changed."""
|
not1mm/data/configuration.ui
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<x>0</x>
|
8
8
|
<y>0</y>
|
9
9
|
<width>703</width>
|
10
|
-
<height>
|
10
|
+
<height>443</height>
|
11
11
|
</rect>
|
12
12
|
</property>
|
13
13
|
<property name="font">
|
@@ -41,7 +41,7 @@
|
|
41
41
|
<enum>Qt::LayoutDirection::LeftToRight</enum>
|
42
42
|
</property>
|
43
43
|
<property name="orientation">
|
44
|
-
<enum>Qt::
|
44
|
+
<enum>Qt::Horizontal</enum>
|
45
45
|
</property>
|
46
46
|
<property name="standardButtons">
|
47
47
|
<set>QDialogButtonBox::StandardButton::Cancel|QDialogButtonBox::StandardButton::Save</set>
|
@@ -300,7 +300,7 @@
|
|
300
300
|
<item row="2" column="0">
|
301
301
|
<spacer name="horizontalSpacer">
|
302
302
|
<property name="orientation">
|
303
|
-
<enum>Qt::
|
303
|
+
<enum>Qt::Horizontal</enum>
|
304
304
|
</property>
|
305
305
|
<property name="sizeHint" stdset="0">
|
306
306
|
<size>
|
@@ -313,7 +313,7 @@
|
|
313
313
|
<item row="2" column="6">
|
314
314
|
<spacer name="horizontalSpacer_2">
|
315
315
|
<property name="orientation">
|
316
|
-
<enum>Qt::
|
316
|
+
<enum>Qt::Horizontal</enum>
|
317
317
|
</property>
|
318
318
|
<property name="sizeHint" stdset="0">
|
319
319
|
<size>
|
@@ -343,7 +343,7 @@
|
|
343
343
|
<item row="3" column="0">
|
344
344
|
<spacer name="verticalSpacer_4">
|
345
345
|
<property name="orientation">
|
346
|
-
<enum>Qt::
|
346
|
+
<enum>Qt::Vertical</enum>
|
347
347
|
</property>
|
348
348
|
<property name="sizeHint" stdset="0">
|
349
349
|
<size>
|
@@ -379,7 +379,7 @@
|
|
379
379
|
<item row="0" column="0">
|
380
380
|
<spacer name="verticalSpacer_5">
|
381
381
|
<property name="orientation">
|
382
|
-
<enum>Qt::
|
382
|
+
<enum>Qt::Vertical</enum>
|
383
383
|
</property>
|
384
384
|
<property name="sizeHint" stdset="0">
|
385
385
|
<size>
|
@@ -432,7 +432,7 @@
|
|
432
432
|
<item>
|
433
433
|
<spacer name="horizontalSpacer_4">
|
434
434
|
<property name="orientation">
|
435
|
-
<enum>Qt::
|
435
|
+
<enum>Qt::Horizontal</enum>
|
436
436
|
</property>
|
437
437
|
<property name="sizeHint" stdset="0">
|
438
438
|
<size>
|
@@ -527,7 +527,7 @@
|
|
527
527
|
<item>
|
528
528
|
<spacer name="horizontalSpacer_3">
|
529
529
|
<property name="orientation">
|
530
|
-
<enum>Qt::
|
530
|
+
<enum>Qt::Horizontal</enum>
|
531
531
|
</property>
|
532
532
|
<property name="sizeHint" stdset="0">
|
533
533
|
<size>
|
@@ -542,7 +542,7 @@
|
|
542
542
|
<item row="2" column="1" colspan="3">
|
543
543
|
<spacer name="verticalSpacer_2">
|
544
544
|
<property name="orientation">
|
545
|
-
<enum>Qt::
|
545
|
+
<enum>Qt::Vertical</enum>
|
546
546
|
</property>
|
547
547
|
<property name="sizeHint" stdset="0">
|
548
548
|
<size>
|
@@ -573,7 +573,7 @@
|
|
573
573
|
<item row="0" column="2">
|
574
574
|
<spacer name="verticalSpacer">
|
575
575
|
<property name="orientation">
|
576
|
-
<enum>Qt::
|
576
|
+
<enum>Qt::Vertical</enum>
|
577
577
|
</property>
|
578
578
|
<property name="sizeHint" stdset="0">
|
579
579
|
<size>
|
@@ -604,7 +604,7 @@
|
|
604
604
|
<item row="4" column="0" colspan="4">
|
605
605
|
<spacer name="verticalSpacer_3">
|
606
606
|
<property name="orientation">
|
607
|
-
<enum>Qt::
|
607
|
+
<enum>Qt::Vertical</enum>
|
608
608
|
</property>
|
609
609
|
<property name="sizeHint" stdset="0">
|
610
610
|
<size>
|
@@ -695,7 +695,7 @@
|
|
695
695
|
<item row="2" column="0">
|
696
696
|
<spacer name="horizontalSpacer_5">
|
697
697
|
<property name="orientation">
|
698
|
-
<enum>Qt::
|
698
|
+
<enum>Qt::Horizontal</enum>
|
699
699
|
</property>
|
700
700
|
<property name="sizeHint" stdset="0">
|
701
701
|
<size>
|
@@ -805,7 +805,7 @@
|
|
805
805
|
<item row="2" column="4">
|
806
806
|
<spacer name="horizontalSpacer_6">
|
807
807
|
<property name="orientation">
|
808
|
-
<enum>Qt::
|
808
|
+
<enum>Qt::Horizontal</enum>
|
809
809
|
</property>
|
810
810
|
<property name="sizeHint" stdset="0">
|
811
811
|
<size>
|
@@ -825,7 +825,7 @@
|
|
825
825
|
<item row="5" column="0">
|
826
826
|
<spacer name="horizontalSpacer_7">
|
827
827
|
<property name="orientation">
|
828
|
-
<enum>Qt::
|
828
|
+
<enum>Qt::Horizontal</enum>
|
829
829
|
</property>
|
830
830
|
<property name="sizeHint" stdset="0">
|
831
831
|
<size>
|
@@ -838,7 +838,7 @@
|
|
838
838
|
<item row="6" column="1">
|
839
839
|
<spacer name="verticalSpacer_7">
|
840
840
|
<property name="orientation">
|
841
|
-
<enum>Qt::
|
841
|
+
<enum>Qt::Vertical</enum>
|
842
842
|
</property>
|
843
843
|
<property name="sizeHint" stdset="0">
|
844
844
|
<size>
|
@@ -851,7 +851,7 @@
|
|
851
851
|
<item row="5" column="4">
|
852
852
|
<spacer name="horizontalSpacer_11">
|
853
853
|
<property name="orientation">
|
854
|
-
<enum>Qt::
|
854
|
+
<enum>Qt::Horizontal</enum>
|
855
855
|
</property>
|
856
856
|
<property name="sizeHint" stdset="0">
|
857
857
|
<size>
|
@@ -864,7 +864,7 @@
|
|
864
864
|
<item row="5" column="3">
|
865
865
|
<spacer name="horizontalSpacer_9">
|
866
866
|
<property name="orientation">
|
867
|
-
<enum>Qt::
|
867
|
+
<enum>Qt::Horizontal</enum>
|
868
868
|
</property>
|
869
869
|
<property name="sizeHint" stdset="0">
|
870
870
|
<size>
|
@@ -877,7 +877,7 @@
|
|
877
877
|
<item row="5" column="5">
|
878
878
|
<spacer name="horizontalSpacer_10">
|
879
879
|
<property name="orientation">
|
880
|
-
<enum>Qt::
|
880
|
+
<enum>Qt::Horizontal</enum>
|
881
881
|
</property>
|
882
882
|
<property name="sizeHint" stdset="0">
|
883
883
|
<size>
|
@@ -890,7 +890,7 @@
|
|
890
890
|
<item row="5" column="1">
|
891
891
|
<spacer name="horizontalSpacer_8">
|
892
892
|
<property name="orientation">
|
893
|
-
<enum>Qt::
|
893
|
+
<enum>Qt::Horizontal</enum>
|
894
894
|
</property>
|
895
895
|
<property name="sizeHint" stdset="0">
|
896
896
|
<size>
|
@@ -903,7 +903,7 @@
|
|
903
903
|
<item row="0" column="1">
|
904
904
|
<spacer name="verticalSpacer_6">
|
905
905
|
<property name="orientation">
|
906
|
-
<enum>Qt::
|
906
|
+
<enum>Qt::Vertical</enum>
|
907
907
|
</property>
|
908
908
|
<property name="sizeHint" stdset="0">
|
909
909
|
<size>
|
@@ -1499,84 +1499,119 @@
|
|
1499
1499
|
<string>Bands</string>
|
1500
1500
|
</attribute>
|
1501
1501
|
<layout class="QGridLayout" name="gridLayout_9">
|
1502
|
-
<item row="
|
1503
|
-
<widget class="QCheckBox" name="
|
1502
|
+
<item row="0" column="0">
|
1503
|
+
<widget class="QCheckBox" name="activate_160m">
|
1504
1504
|
<property name="text">
|
1505
|
-
<string>
|
1505
|
+
<string>160M</string>
|
1506
1506
|
</property>
|
1507
1507
|
</widget>
|
1508
1508
|
</item>
|
1509
|
-
<item row="
|
1510
|
-
<widget class="QCheckBox" name="
|
1509
|
+
<item row="1" column="0">
|
1510
|
+
<widget class="QCheckBox" name="activate_80m">
|
1511
1511
|
<property name="text">
|
1512
|
-
<string>
|
1512
|
+
<string>80M</string>
|
1513
1513
|
</property>
|
1514
1514
|
</widget>
|
1515
1515
|
</item>
|
1516
1516
|
<item row="2" column="0">
|
1517
|
-
<widget class="QCheckBox" name="
|
1517
|
+
<widget class="QCheckBox" name="activate_60m">
|
1518
1518
|
<property name="text">
|
1519
|
-
<string>
|
1519
|
+
<string>60M</string>
|
1520
1520
|
</property>
|
1521
1521
|
</widget>
|
1522
1522
|
</item>
|
1523
|
-
<item row="
|
1524
|
-
<widget class="QCheckBox" name="
|
1523
|
+
<item row="3" column="0">
|
1524
|
+
<widget class="QCheckBox" name="activate_40m">
|
1525
1525
|
<property name="text">
|
1526
|
-
<string>
|
1526
|
+
<string>40M</string>
|
1527
1527
|
</property>
|
1528
1528
|
</widget>
|
1529
1529
|
</item>
|
1530
|
-
<item row="
|
1531
|
-
<widget class="QCheckBox" name="
|
1530
|
+
<item row="4" column="0">
|
1531
|
+
<widget class="QCheckBox" name="activate_30m">
|
1532
1532
|
<property name="text">
|
1533
|
-
<string>
|
1533
|
+
<string>30M</string>
|
1534
1534
|
</property>
|
1535
1535
|
</widget>
|
1536
1536
|
</item>
|
1537
|
-
<item row="
|
1538
|
-
<widget class="QCheckBox" name="
|
1537
|
+
<item row="5" column="0">
|
1538
|
+
<widget class="QCheckBox" name="activate_20m">
|
1539
1539
|
<property name="text">
|
1540
|
-
<string>
|
1540
|
+
<string>20M</string>
|
1541
1541
|
</property>
|
1542
1542
|
</widget>
|
1543
1543
|
</item>
|
1544
|
-
<item row="
|
1545
|
-
<widget class="QCheckBox" name="
|
1544
|
+
<item row="6" column="0">
|
1545
|
+
<widget class="QCheckBox" name="activate_17m">
|
1546
1546
|
<property name="text">
|
1547
|
-
<string>
|
1547
|
+
<string>17M</string>
|
1548
1548
|
</property>
|
1549
1549
|
</widget>
|
1550
1550
|
</item>
|
1551
|
-
<item row="
|
1551
|
+
<item row="7" column="0">
|
1552
1552
|
<widget class="QCheckBox" name="activate_15m">
|
1553
1553
|
<property name="text">
|
1554
1554
|
<string>15M</string>
|
1555
1555
|
</property>
|
1556
1556
|
</widget>
|
1557
1557
|
</item>
|
1558
|
-
<item row="
|
1558
|
+
<item row="9" column="0">
|
1559
|
+
<widget class="QCheckBox" name="activate_12m">
|
1560
|
+
<property name="text">
|
1561
|
+
<string>12M</string>
|
1562
|
+
</property>
|
1563
|
+
</widget>
|
1564
|
+
</item>
|
1565
|
+
<item row="0" column="1">
|
1559
1566
|
<widget class="QCheckBox" name="activate_10m">
|
1560
1567
|
<property name="text">
|
1561
1568
|
<string>10M</string>
|
1562
1569
|
</property>
|
1563
1570
|
</widget>
|
1564
1571
|
</item>
|
1572
|
+
<item row="1" column="1">
|
1573
|
+
<widget class="QCheckBox" name="activate_6m">
|
1574
|
+
<property name="text">
|
1575
|
+
<string>6M</string>
|
1576
|
+
</property>
|
1577
|
+
</widget>
|
1578
|
+
</item>
|
1579
|
+
<item row="2" column="1">
|
1580
|
+
<widget class="QCheckBox" name="activate_4m">
|
1581
|
+
<property name="text">
|
1582
|
+
<string>4M</string>
|
1583
|
+
</property>
|
1584
|
+
</widget>
|
1585
|
+
</item>
|
1565
1586
|
<item row="3" column="1">
|
1587
|
+
<widget class="QCheckBox" name="activate_2m">
|
1588
|
+
<property name="text">
|
1589
|
+
<string>2M</string>
|
1590
|
+
</property>
|
1591
|
+
</widget>
|
1592
|
+
</item>
|
1593
|
+
<item row="4" column="1">
|
1594
|
+
<widget class="QCheckBox" name="activate_1dot25">
|
1595
|
+
<property name="text">
|
1596
|
+
<string>1.25M</string>
|
1597
|
+
</property>
|
1598
|
+
</widget>
|
1599
|
+
</item>
|
1600
|
+
<item row="5" column="1">
|
1566
1601
|
<widget class="QCheckBox" name="activate_70cm">
|
1567
1602
|
<property name="text">
|
1568
1603
|
<string>70cm</string>
|
1569
1604
|
</property>
|
1570
1605
|
</widget>
|
1571
1606
|
</item>
|
1572
|
-
<item row="
|
1607
|
+
<item row="6" column="1">
|
1573
1608
|
<widget class="QCheckBox" name="activate_33cm">
|
1574
1609
|
<property name="text">
|
1575
1610
|
<string>33cm</string>
|
1576
1611
|
</property>
|
1577
1612
|
</widget>
|
1578
1613
|
</item>
|
1579
|
-
<item row="
|
1614
|
+
<item row="7" column="1">
|
1580
1615
|
<widget class="QCheckBox" name="activate_23cm">
|
1581
1616
|
<property name="text">
|
1582
1617
|
<string>23cm</string>
|
not1mm/data/main.ui
CHANGED
@@ -99,7 +99,7 @@
|
|
99
99
|
<item>
|
100
100
|
<widget class="QLabel" name="cw_band_160">
|
101
101
|
<property name="accessibleName">
|
102
|
-
<string>160
|
102
|
+
<string>160</string>
|
103
103
|
</property>
|
104
104
|
<property name="text">
|
105
105
|
<string>160</string>
|
@@ -119,6 +119,16 @@
|
|
119
119
|
</property>
|
120
120
|
</widget>
|
121
121
|
</item>
|
122
|
+
<item>
|
123
|
+
<widget class="QLabel" name="cw_band_60">
|
124
|
+
<property name="text">
|
125
|
+
<string>60</string>
|
126
|
+
</property>
|
127
|
+
<property name="alignment">
|
128
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
129
|
+
</property>
|
130
|
+
</widget>
|
131
|
+
</item>
|
122
132
|
<item>
|
123
133
|
<widget class="QLabel" name="cw_band_40">
|
124
134
|
<property name="text">
|
@@ -129,6 +139,16 @@
|
|
129
139
|
</property>
|
130
140
|
</widget>
|
131
141
|
</item>
|
142
|
+
<item>
|
143
|
+
<widget class="QLabel" name="cw_band_30">
|
144
|
+
<property name="text">
|
145
|
+
<string>30</string>
|
146
|
+
</property>
|
147
|
+
<property name="alignment">
|
148
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
149
|
+
</property>
|
150
|
+
</widget>
|
151
|
+
</item>
|
132
152
|
<item>
|
133
153
|
<widget class="QLabel" name="cw_band_20">
|
134
154
|
<property name="text">
|
@@ -139,6 +159,16 @@
|
|
139
159
|
</property>
|
140
160
|
</widget>
|
141
161
|
</item>
|
162
|
+
<item>
|
163
|
+
<widget class="QLabel" name="cw_band_17">
|
164
|
+
<property name="text">
|
165
|
+
<string>17</string>
|
166
|
+
</property>
|
167
|
+
<property name="alignment">
|
168
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
169
|
+
</property>
|
170
|
+
</widget>
|
171
|
+
</item>
|
142
172
|
<item>
|
143
173
|
<widget class="QLabel" name="cw_band_15">
|
144
174
|
<property name="text">
|
@@ -149,6 +179,16 @@
|
|
149
179
|
</property>
|
150
180
|
</widget>
|
151
181
|
</item>
|
182
|
+
<item>
|
183
|
+
<widget class="QLabel" name="cw_band_12">
|
184
|
+
<property name="text">
|
185
|
+
<string>12</string>
|
186
|
+
</property>
|
187
|
+
<property name="alignment">
|
188
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
189
|
+
</property>
|
190
|
+
</widget>
|
191
|
+
</item>
|
152
192
|
<item>
|
153
193
|
<widget class="QLabel" name="cw_band_10">
|
154
194
|
<property name="text">
|
@@ -169,6 +209,16 @@
|
|
169
209
|
</property>
|
170
210
|
</widget>
|
171
211
|
</item>
|
212
|
+
<item>
|
213
|
+
<widget class="QLabel" name="cw_band_4">
|
214
|
+
<property name="text">
|
215
|
+
<string>4</string>
|
216
|
+
</property>
|
217
|
+
<property name="alignment">
|
218
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
219
|
+
</property>
|
220
|
+
</widget>
|
221
|
+
</item>
|
172
222
|
<item>
|
173
223
|
<widget class="QLabel" name="cw_band_2">
|
174
224
|
<property name="text">
|
@@ -292,6 +342,16 @@
|
|
292
342
|
</property>
|
293
343
|
</widget>
|
294
344
|
</item>
|
345
|
+
<item>
|
346
|
+
<widget class="QLabel" name="ssb_band_60">
|
347
|
+
<property name="text">
|
348
|
+
<string>60</string>
|
349
|
+
</property>
|
350
|
+
<property name="alignment">
|
351
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
352
|
+
</property>
|
353
|
+
</widget>
|
354
|
+
</item>
|
295
355
|
<item>
|
296
356
|
<widget class="QLabel" name="ssb_band_40">
|
297
357
|
<property name="text">
|
@@ -312,6 +372,16 @@
|
|
312
372
|
</property>
|
313
373
|
</widget>
|
314
374
|
</item>
|
375
|
+
<item>
|
376
|
+
<widget class="QLabel" name="ssb_band_17">
|
377
|
+
<property name="text">
|
378
|
+
<string>17</string>
|
379
|
+
</property>
|
380
|
+
<property name="alignment">
|
381
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
382
|
+
</property>
|
383
|
+
</widget>
|
384
|
+
</item>
|
315
385
|
<item>
|
316
386
|
<widget class="QLabel" name="ssb_band_15">
|
317
387
|
<property name="text">
|
@@ -322,6 +392,16 @@
|
|
322
392
|
</property>
|
323
393
|
</widget>
|
324
394
|
</item>
|
395
|
+
<item>
|
396
|
+
<widget class="QLabel" name="ssb_band_12">
|
397
|
+
<property name="text">
|
398
|
+
<string>12</string>
|
399
|
+
</property>
|
400
|
+
<property name="alignment">
|
401
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
402
|
+
</property>
|
403
|
+
</widget>
|
404
|
+
</item>
|
325
405
|
<item>
|
326
406
|
<widget class="QLabel" name="ssb_band_10">
|
327
407
|
<property name="text">
|
@@ -342,6 +422,16 @@
|
|
342
422
|
</property>
|
343
423
|
</widget>
|
344
424
|
</item>
|
425
|
+
<item>
|
426
|
+
<widget class="QLabel" name="ssb_band_4">
|
427
|
+
<property name="text">
|
428
|
+
<string>4</string>
|
429
|
+
</property>
|
430
|
+
<property name="alignment">
|
431
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
432
|
+
</property>
|
433
|
+
</widget>
|
434
|
+
</item>
|
345
435
|
<item>
|
346
436
|
<widget class="QLabel" name="ssb_band_2">
|
347
437
|
<property name="text">
|
@@ -465,6 +555,16 @@
|
|
465
555
|
</property>
|
466
556
|
</widget>
|
467
557
|
</item>
|
558
|
+
<item>
|
559
|
+
<widget class="QLabel" name="rtty_band_60">
|
560
|
+
<property name="text">
|
561
|
+
<string>60</string>
|
562
|
+
</property>
|
563
|
+
<property name="alignment">
|
564
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
565
|
+
</property>
|
566
|
+
</widget>
|
567
|
+
</item>
|
468
568
|
<item>
|
469
569
|
<widget class="QLabel" name="rtty_band_40">
|
470
570
|
<property name="text">
|
@@ -475,6 +575,16 @@
|
|
475
575
|
</property>
|
476
576
|
</widget>
|
477
577
|
</item>
|
578
|
+
<item>
|
579
|
+
<widget class="QLabel" name="rtty_band_30">
|
580
|
+
<property name="text">
|
581
|
+
<string>30</string>
|
582
|
+
</property>
|
583
|
+
<property name="alignment">
|
584
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
585
|
+
</property>
|
586
|
+
</widget>
|
587
|
+
</item>
|
478
588
|
<item>
|
479
589
|
<widget class="QLabel" name="rtty_band_20">
|
480
590
|
<property name="text">
|
@@ -485,6 +595,16 @@
|
|
485
595
|
</property>
|
486
596
|
</widget>
|
487
597
|
</item>
|
598
|
+
<item>
|
599
|
+
<widget class="QLabel" name="rtty_band_17">
|
600
|
+
<property name="text">
|
601
|
+
<string>17</string>
|
602
|
+
</property>
|
603
|
+
<property name="alignment">
|
604
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
605
|
+
</property>
|
606
|
+
</widget>
|
607
|
+
</item>
|
488
608
|
<item>
|
489
609
|
<widget class="QLabel" name="rtty_band_15">
|
490
610
|
<property name="text">
|
@@ -495,6 +615,16 @@
|
|
495
615
|
</property>
|
496
616
|
</widget>
|
497
617
|
</item>
|
618
|
+
<item>
|
619
|
+
<widget class="QLabel" name="rtty_band_12">
|
620
|
+
<property name="text">
|
621
|
+
<string>12</string>
|
622
|
+
</property>
|
623
|
+
<property name="alignment">
|
624
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
625
|
+
</property>
|
626
|
+
</widget>
|
627
|
+
</item>
|
498
628
|
<item>
|
499
629
|
<widget class="QLabel" name="rtty_band_10">
|
500
630
|
<property name="text">
|
@@ -515,6 +645,16 @@
|
|
515
645
|
</property>
|
516
646
|
</widget>
|
517
647
|
</item>
|
648
|
+
<item>
|
649
|
+
<widget class="QLabel" name="rtty_band_4">
|
650
|
+
<property name="text">
|
651
|
+
<string>4</string>
|
652
|
+
</property>
|
653
|
+
<property name="alignment">
|
654
|
+
<set>Qt::AlignmentFlag::AlignCenter</set>
|
655
|
+
</property>
|
656
|
+
</widget>
|
657
|
+
</item>
|
518
658
|
<item>
|
519
659
|
<widget class="QLabel" name="rtty_band_2">
|
520
660
|
<property name="text">
|
not1mm/lib/ham_utility.py
CHANGED
@@ -99,6 +99,8 @@ def getband(freq: str) -> str:
|
|
99
99
|
return "10"
|
100
100
|
if 54000000 > frequency > 50000000:
|
101
101
|
return "6"
|
102
|
+
if 70500000 > frequency > 70000000:
|
103
|
+
return "4"
|
102
104
|
if 148000000 > frequency > 144000000:
|
103
105
|
return "2"
|
104
106
|
if 225000000 > frequency > 222000000:
|
@@ -143,6 +145,8 @@ def get_logged_band(freq: str) -> str:
|
|
143
145
|
return "28"
|
144
146
|
if 54000000 > frequency > 50000000:
|
145
147
|
return "50"
|
148
|
+
if 70500000 > frequency > 70000000:
|
149
|
+
return "70"
|
146
150
|
if 148000000 > frequency > 144000000:
|
147
151
|
return "144"
|
148
152
|
if 225000000 > frequency > 222000000:
|
@@ -249,6 +253,7 @@ def fakefreq(band: str, mode: str) -> str:
|
|
249
253
|
"12": ["24911", "24920", "24970"],
|
250
254
|
"10": ["28065", "28070", "28400"],
|
251
255
|
"6": ["50030", "50300", "50125"],
|
256
|
+
"4": ["70030", "70300", "70125"],
|
252
257
|
"2": ["144030", "144144", "144250"],
|
253
258
|
"222": ["222100", "222070", "222100"],
|
254
259
|
"432": ["432070", "432200", "432100"],
|
not1mm/lib/settings.py
CHANGED
@@ -79,9 +79,7 @@ class Settings(QtWidgets.QDialog):
|
|
79
79
|
self.n1mm_lookupport.setText(str(self.preference.get("n1mm_lookupport", "")))
|
80
80
|
self.n1mm_scoreport.setText(str(self.preference.get("n1mm_scoreport", "")))
|
81
81
|
self.send_n1mm_radio.setChecked(bool(self.preference.get("send_n1mm_radio")))
|
82
|
-
self.send_n1mm_contact.setChecked(
|
83
|
-
bool(self.preference.get("send_n1mm_contact"))
|
84
|
-
)
|
82
|
+
self.send_n1mm_contact.setChecked(bool(self.preference.get("send_n1mm_contact")))
|
85
83
|
self.send_n1mm_lookup.setChecked(bool(self.preference.get("send_n1mm_lookup")))
|
86
84
|
self.send_n1mm_score.setChecked(bool(self.preference.get("send_n1mm_score")))
|
87
85
|
|
@@ -96,15 +94,18 @@ class Settings(QtWidgets.QDialog):
|
|
96
94
|
self.cluster_mode.setCurrentIndex(index)
|
97
95
|
self.activate_160m.setChecked(bool("160" in self.preference.get("bands", [])))
|
98
96
|
self.activate_80m.setChecked(bool("80" in self.preference.get("bands", [])))
|
97
|
+
self.activate_60m.setChecked(bool("60" in self.preference.get("bands", [])))
|
99
98
|
self.activate_40m.setChecked(bool("40" in self.preference.get("bands", [])))
|
99
|
+
self.activate_30m.setChecked(bool("30" in self.preference.get("bands", [])))
|
100
100
|
self.activate_20m.setChecked(bool("20" in self.preference.get("bands", [])))
|
101
|
+
self.activate_17m.setChecked(bool("17" in self.preference.get("bands", [])))
|
101
102
|
self.activate_15m.setChecked(bool("15" in self.preference.get("bands", [])))
|
103
|
+
self.activate_12m.setChecked(bool("12" in self.preference.get("bands", [])))
|
102
104
|
self.activate_10m.setChecked(bool("10" in self.preference.get("bands", [])))
|
103
105
|
self.activate_6m.setChecked(bool("6" in self.preference.get("bands", [])))
|
106
|
+
self.activate_4m.setChecked(bool("4" in self.preference.get("bands", [])))
|
104
107
|
self.activate_2m.setChecked(bool("2" in self.preference.get("bands", [])))
|
105
|
-
self.activate_1dot25.setChecked(
|
106
|
-
bool("1.25" in self.preference.get("bands", []))
|
107
|
-
)
|
108
|
+
self.activate_1dot25.setChecked(bool("1.25" in self.preference.get("bands", [])))
|
108
109
|
self.activate_70cm.setChecked(bool("70cm" in self.preference.get("bands", [])))
|
109
110
|
self.activate_33cm.setChecked(bool("33cm" in self.preference.get("bands", [])))
|
110
111
|
self.activate_23cm.setChecked(bool("23cm" in self.preference.get("bands", [])))
|
@@ -166,16 +167,26 @@ class Settings(QtWidgets.QDialog):
|
|
166
167
|
bandlist.append("160")
|
167
168
|
if self.activate_80m.isChecked():
|
168
169
|
bandlist.append("80")
|
170
|
+
if self.activate_60m.isChecked():
|
171
|
+
bandlist.append("60")
|
169
172
|
if self.activate_40m.isChecked():
|
170
173
|
bandlist.append("40")
|
174
|
+
if self.activate_30m.isChecked():
|
175
|
+
bandlist.append("30")
|
171
176
|
if self.activate_20m.isChecked():
|
172
177
|
bandlist.append("20")
|
178
|
+
if self.activate_17m.isChecked():
|
179
|
+
bandlist.append("17")
|
173
180
|
if self.activate_15m.isChecked():
|
174
181
|
bandlist.append("15")
|
182
|
+
if self.activate_12m.isChecked():
|
183
|
+
bandlist.append("12")
|
175
184
|
if self.activate_10m.isChecked():
|
176
185
|
bandlist.append("10")
|
177
186
|
if self.activate_6m.isChecked():
|
178
187
|
bandlist.append("6")
|
188
|
+
if self.activate_4m.isChecked():
|
189
|
+
bandlist.append("4")
|
179
190
|
if self.activate_2m.isChecked():
|
180
191
|
bandlist.append("2")
|
181
192
|
if self.activate_1dot25.isChecked():
|
not1mm/lib/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.9.
|
3
|
+
Version: 24.9.25.1
|
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,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
230
230
|
|
231
231
|
## Recent Changes
|
232
232
|
|
233
|
+
- [24-9-25-1] Added WARC and 4M bands.
|
234
|
+
- [24-9-25] Fix QRZ lookup crash on non-existant call.
|
233
235
|
- [24-9-24] Correct crash in CWT.
|
234
236
|
- [24-9-23] Improved serial interface to rigctld. Send RTTY macros to fldigi when radio modes are RTTY, USB-D, LSB-D, PKTLSB, PKTUSB, DIGI-U, DIGI-L.
|
235
237
|
- [24-9-22] Merged in changes for CQ WW RTTY
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=gDEcgbbtATlW-dc_ElvZ2EF4wrBLfkR6vA_WC6YYTQI,128195
|
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
|
@@ -16,7 +16,7 @@ not1mm/data/alpha bravo charlie delta.txt,sha256=d5QMmSWEUAe4Rj1XbNjTPLa_5Be4Se6
|
|
16
16
|
not1mm/data/bandmap.ui,sha256=hvovf1YKyfUVVbKl6Ib2zU4RdUrFsQwm-255wVeKXZE,7180
|
17
17
|
not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
|
18
18
|
not1mm/data/checkwindow.ui,sha256=Ux5EgO-JalGB9qx3M6tmMpGHO0RmuuY1w0XEbuwd1xk,4658
|
19
|
-
not1mm/data/configuration.ui,sha256=
|
19
|
+
not1mm/data/configuration.ui,sha256=L3gZPd_qaAntVIojUktJXSj6dAAs9NNWLgzxdaWEZBE,53488
|
20
20
|
not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
|
21
21
|
not1mm/data/cty.json,sha256=sBIN1raQOKeVIO5dRaWn0Yqq8XZKpM_VCzS3kMlcwp4,4871545
|
22
22
|
not1mm/data/cwmacros.txt,sha256=PvJ7TxGILq-ErHb6Gbrm-08x76BbCdXb8AY8a7st5mg,451
|
@@ -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=-u3sFY_VeTKIg34CaPxLuPxbnE182XYePJtpJR7V6Hc,61482
|
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
|
@@ -104,7 +104,7 @@ not1mm/lib/edit_station.py,sha256=doL21Hs6jzIE43ohAopdFt_iqnRJZHFcqzcnCS0-iio,19
|
|
104
104
|
not1mm/lib/fldigi_sendstring.py,sha256=EeXSBRKgyUEzNyHBjMtHiFe-iOU3TcWcCCX77t0ur_I,602
|
105
105
|
not1mm/lib/fldigi_watcher.py,sha256=reZz3fZLDoJVVZhJD9nIssk2aczCzadDSQTVu-5mTCM,919
|
106
106
|
not1mm/lib/ft8_watcher.py,sha256=BFmVIsnbwuRMWoe-dIBybuCgi0WFmr8Km0O9l4eiwMM,4624
|
107
|
-
not1mm/lib/ham_utility.py,sha256=
|
107
|
+
not1mm/lib/ham_utility.py,sha256=WMmYLDI_fJHHsn0wkpGVit2Hv8fo6r9ybexXROia8Cg,11967
|
108
108
|
not1mm/lib/lookup.py,sha256=_Awt1HjiuSrhLTrwoF8EoFQC_bYYH1vqfAo_HSaMb00,10838
|
109
109
|
not1mm/lib/multicast.py,sha256=bnFUNHyy82GmIb3_88EPBVVssj7-HzkJPaH671cK8Qw,3249
|
110
110
|
not1mm/lib/n1mm.py,sha256=H54mpgJF0GAmKavM-nb5OAq2SJFWYkux4eMWWiSRxJc,6288
|
@@ -112,9 +112,9 @@ not1mm/lib/new_contest.py,sha256=IznTDMq7yXHB6zBoGUEC_WDYPCPpsSZW4wwMJi16zK0,816
|
|
112
112
|
not1mm/lib/playsound.py,sha256=kxkcitBFbZCXJ2wxQ1lxg4rBwfxiSpuNpJSXHOPCoXA,9241
|
113
113
|
not1mm/lib/plugin_common.py,sha256=HbphFFzU1XIIHgsCHOb_tCAnQyqT-nYnxoiz1oZ2_cg,9623
|
114
114
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
115
|
-
not1mm/lib/settings.py,sha256=
|
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=mQ-AUWlNVOEt-lKkQihztOhmFGkCRT7RTkKJmJMNhw4,50
|
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
|
@@ -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.25.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
160
|
+
not1mm-24.9.25.1.dist-info/METADATA,sha256=Kgn6UayfellNIG3uslb7uRFcRU-oaSQIQEijAJMrKD4,31553
|
161
|
+
not1mm-24.9.25.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
162
|
+
not1mm-24.9.25.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
163
|
+
not1mm-24.9.25.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
164
|
+
not1mm-24.9.25.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|