not1mm 24.4.4__py3-none-any.whl → 24.4.4.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 +60 -12
- not1mm/data/main.ui +12 -1
- not1mm/lib/version.py +1 -1
- {not1mm-24.4.4.dist-info → not1mm-24.4.4.1.dist-info}/METADATA +2 -1
- {not1mm-24.4.4.dist-info → not1mm-24.4.4.1.dist-info}/RECORD +9 -9
- {not1mm-24.4.4.dist-info → not1mm-24.4.4.1.dist-info}/LICENSE +0 -0
- {not1mm-24.4.4.dist-info → not1mm-24.4.4.1.dist-info}/WHEEL +0 -0
- {not1mm-24.4.4.dist-info → not1mm-24.4.4.1.dist-info}/entry_points.txt +0 -0
- {not1mm-24.4.4.dist-info → not1mm-24.4.4.1.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -484,6 +484,40 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
484
484
|
if self.pref.get("contest"):
|
485
485
|
self.load_contest()
|
486
486
|
|
487
|
+
self.actionLog_Window.setChecked(self.pref.get("logwindow", False))
|
488
|
+
if self.log_window:
|
489
|
+
self.log_window.close()
|
490
|
+
if self.actionLog_Window.isChecked():
|
491
|
+
self.log_window = LogWindow()
|
492
|
+
self.addDockWidget(Qt.DockWidgetArea.BottomDockWidgetArea, self.log_window)
|
493
|
+
self.log_window.show()
|
494
|
+
|
495
|
+
self.actionBandmap.setChecked(self.pref.get("bandmapwindow", False))
|
496
|
+
if self.bandmap_window:
|
497
|
+
self.bandmap_window.close()
|
498
|
+
if self.actionBandmap.isChecked():
|
499
|
+
self.bandmap_window = BandMapWindow()
|
500
|
+
self.addDockWidget(
|
501
|
+
Qt.DockWidgetArea.RightDockWidgetArea, self.bandmap_window
|
502
|
+
)
|
503
|
+
self.bandmap_window.show()
|
504
|
+
|
505
|
+
self.actionCheck_Window.setChecked(self.pref.get("checkwindow", False))
|
506
|
+
if self.check_window:
|
507
|
+
self.check_window.close()
|
508
|
+
if self.actionCheck_Window.isChecked():
|
509
|
+
self.check_window = CheckWindow()
|
510
|
+
self.addDockWidget(Qt.DockWidgetArea.RightDockWidgetArea, self.check_window)
|
511
|
+
self.check_window.show()
|
512
|
+
|
513
|
+
self.actionVFO.setChecked(self.pref.get("vfowindow", False))
|
514
|
+
if self.vfo_window:
|
515
|
+
self.vfo_window.close()
|
516
|
+
if self.actionVFO.isChecked():
|
517
|
+
self.vfo_window = VfoWindow()
|
518
|
+
self.addDockWidget(Qt.DockWidgetArea.RightDockWidgetArea, self.vfo_window)
|
519
|
+
self.vfo_window.show()
|
520
|
+
|
487
521
|
if not DEBUG_ENABLED:
|
488
522
|
if VersionTest(__version__).test():
|
489
523
|
self.show_message_box(
|
@@ -1389,35 +1423,49 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1389
1423
|
|
1390
1424
|
def launch_log_window(self) -> None:
|
1391
1425
|
"""Launch the log window"""
|
1426
|
+
self.pref["logwindow"] = self.actionLog_Window.isChecked()
|
1427
|
+
self.write_preference()
|
1392
1428
|
if self.log_window:
|
1393
1429
|
self.log_window.close()
|
1394
|
-
self.
|
1395
|
-
|
1396
|
-
|
1430
|
+
if self.actionLog_Window.isChecked():
|
1431
|
+
self.log_window = LogWindow()
|
1432
|
+
self.addDockWidget(Qt.DockWidgetArea.BottomDockWidgetArea, self.log_window)
|
1433
|
+
self.log_window.show()
|
1397
1434
|
|
1398
1435
|
def launch_bandmap_window(self) -> None:
|
1399
1436
|
"""Launch the bandmap window"""
|
1437
|
+
self.pref["bandmapwindow"] = self.actionBandmap.isChecked()
|
1438
|
+
self.write_preference()
|
1400
1439
|
if self.bandmap_window:
|
1401
1440
|
self.bandmap_window.close()
|
1402
|
-
self.
|
1403
|
-
|
1404
|
-
|
1441
|
+
if self.actionBandmap.isChecked():
|
1442
|
+
self.bandmap_window = BandMapWindow()
|
1443
|
+
self.addDockWidget(
|
1444
|
+
Qt.DockWidgetArea.RightDockWidgetArea, self.bandmap_window
|
1445
|
+
)
|
1446
|
+
self.bandmap_window.show()
|
1405
1447
|
|
1406
1448
|
def launch_check_window(self) -> None:
|
1407
1449
|
"""Launch the check window"""
|
1450
|
+
self.pref["checkwindow"] = self.actionCheck_Window.isChecked()
|
1451
|
+
self.write_preference()
|
1408
1452
|
if self.check_window:
|
1409
1453
|
self.check_window.close()
|
1410
|
-
self.
|
1411
|
-
|
1412
|
-
|
1454
|
+
if self.actionCheck_Window.isChecked():
|
1455
|
+
self.check_window = CheckWindow()
|
1456
|
+
self.addDockWidget(Qt.DockWidgetArea.RightDockWidgetArea, self.check_window)
|
1457
|
+
self.check_window.show()
|
1413
1458
|
|
1414
1459
|
def launch_vfo(self) -> None:
|
1415
1460
|
"""Launch the VFO window"""
|
1461
|
+
self.pref["vfowindow"] = self.actionVFO.isChecked()
|
1462
|
+
self.write_preference()
|
1416
1463
|
if self.vfo_window:
|
1417
1464
|
self.vfo_window.close()
|
1418
|
-
self.
|
1419
|
-
|
1420
|
-
|
1465
|
+
if self.actionVFO.isChecked():
|
1466
|
+
self.vfo_window = VfoWindow()
|
1467
|
+
self.addDockWidget(Qt.DockWidgetArea.RightDockWidgetArea, self.vfo_window)
|
1468
|
+
self.vfo_window.show()
|
1421
1469
|
|
1422
1470
|
def clear_band_indicators(self) -> None:
|
1423
1471
|
"""
|
not1mm/data/main.ui
CHANGED
@@ -894,7 +894,6 @@
|
|
894
894
|
<item>
|
895
895
|
<widget class="QFrame" name="Button_Row1">
|
896
896
|
<layout class="QHBoxLayout" name="ButtonRow1">
|
897
|
-
|
898
897
|
<property name="sizeConstraint">
|
899
898
|
<enum>QLayout::SetNoConstraint</enum>
|
900
899
|
</property>
|
@@ -1543,6 +1542,9 @@
|
|
1543
1542
|
</property>
|
1544
1543
|
</action>
|
1545
1544
|
<action name="actionLog_Window">
|
1545
|
+
<property name="checkable">
|
1546
|
+
<bool>true</bool>
|
1547
|
+
</property>
|
1546
1548
|
<property name="text">
|
1547
1549
|
<string>QSO Log</string>
|
1548
1550
|
</property>
|
@@ -1708,6 +1710,9 @@
|
|
1708
1710
|
</property>
|
1709
1711
|
</action>
|
1710
1712
|
<action name="actionBandmap">
|
1713
|
+
<property name="checkable">
|
1714
|
+
<bool>true</bool>
|
1715
|
+
</property>
|
1711
1716
|
<property name="text">
|
1712
1717
|
<string>Bandmap</string>
|
1713
1718
|
</property>
|
@@ -1743,11 +1748,17 @@
|
|
1743
1748
|
</property>
|
1744
1749
|
</action>
|
1745
1750
|
<action name="actionCheck_Window">
|
1751
|
+
<property name="checkable">
|
1752
|
+
<bool>true</bool>
|
1753
|
+
</property>
|
1746
1754
|
<property name="text">
|
1747
1755
|
<string>Check Partial</string>
|
1748
1756
|
</property>
|
1749
1757
|
</action>
|
1750
1758
|
<action name="actionVFO">
|
1759
|
+
<property name="checkable">
|
1760
|
+
<bool>true</bool>
|
1761
|
+
</property>
|
1751
1762
|
<property name="text">
|
1752
1763
|
<string>VFO</string>
|
1753
1764
|
</property>
|
not1mm/lib/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.4.4
|
3
|
+
Version: 24.4.4.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
|
@@ -177,6 +177,7 @@ I wish to thank those who've contributed to the project.
|
|
177
177
|
|
178
178
|
## Recent Changes
|
179
179
|
|
180
|
+
- [24-4-4-1] Made docking widgets open state persistent.
|
180
181
|
- [24-4-4] Added per-contest echange hint when adding new contest.
|
181
182
|
- [24-4-2] Migrated to PyQt6. I'm sure there are broken things.
|
182
183
|
- [24-4-1-2] Added color text indicators to the Check Partial window. Poached the code from @kyleboyle. Thanks! Fixed the Log, VFO and Check Partial windows to be actual docking widgets. Refocus call field after double clicking on item in the check partial window.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=B-r1r8Do8Vw4FsyzgyB4P_KPU9LTlNTrmueknGmmI28,121967
|
3
3
|
not1mm/bandmap.py,sha256=-wHbUmj-zqefyFO_ydLECwTtWcs37tSkA7Xm2zOVcLA,34318
|
4
4
|
not1mm/checkwindow.py,sha256=ncIOZmuhM_eLR1gb-St8FqEefbUkD9p9VltFDJVxLeY,10465
|
5
5
|
not1mm/fsutils.py,sha256=Li8Tq9K7c_q7onOHOQ7u1dOOFfhIIz5Aj2LKuQtGOO4,1652
|
@@ -26,7 +26,7 @@ not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcC
|
|
26
26
|
not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N90,2925
|
27
27
|
not1mm/data/logwindow.ui,sha256=vfkNdzJgFs3tTOBKLDavF2zVMvNHWOZ82fAErRi6pQY,1436
|
28
28
|
not1mm/data/logwindowx.ui,sha256=9FzDJtLRpagvAWcDjFdB9NnvNZ4bVxdTNHy1Jit2ido,1610
|
29
|
-
not1mm/data/main.ui,sha256=
|
29
|
+
not1mm/data/main.ui,sha256=imj6FbVeYxz90Z4MuTy730GFjpeT0OYs7TvzybmcSY8,54341
|
30
30
|
not1mm/data/new_contest.ui,sha256=Xubngdbs_V_-o8huXzKOOaQOfj1NSXu9giIcaL4d0qk,21823
|
31
31
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
32
32
|
not1mm/data/opon.ui,sha256=mC4OhoVIfR1H9IqHAKXliPMm8VOVmxSEadpsFQ7XnS4,2247
|
@@ -104,7 +104,7 @@ not1mm/lib/plugin_common.py,sha256=AAKBPCXzTWZJb-h08uPNnHVG7bSCg7kwukc211gFivY,8
|
|
104
104
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
105
105
|
not1mm/lib/settings.py,sha256=tlXlJUUZP0IFwIDc9DboM5_1by_tHNtMXvyJ0E7B6RI,8877
|
106
106
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
107
|
-
not1mm/lib/version.py,sha256=
|
107
|
+
not1mm/lib/version.py,sha256=_FQGpyHUssH34gTKJKt464g2di65ZgL7GI1Ug-H6BCs,49
|
108
108
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
109
109
|
not1mm/plugins/10_10_fall_cw.py,sha256=fUjfwjuscDjicXIxsO0JHh7xTR9Vu0iPsrOLb896Qak,10873
|
110
110
|
not1mm/plugins/10_10_spring_cw.py,sha256=WNaJP5mBQfaB6SxnFI0Vawt3AKDr94tKVtAK-EVhtUY,10878
|
@@ -138,9 +138,9 @@ not1mm/plugins/naqp_ssb.py,sha256=IWksulcb2_DxlkeW0h3048t8I-u00G_67KBVKkp-TV4,11
|
|
138
138
|
not1mm/plugins/phone_weekly_test.py,sha256=gCX0ESUoiQzDp9puwibt9-dRembNsiuEeBdawCVvjHA,12316
|
139
139
|
not1mm/plugins/stew_perry_topband.py,sha256=DIMI3mGMKokXXb9pPLqdhBI6JVnnIs7ZnAL23nFmshE,10588
|
140
140
|
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
141
|
-
not1mm-24.4.4.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
142
|
-
not1mm-24.4.4.dist-info/METADATA,sha256=
|
143
|
-
not1mm-24.4.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
144
|
-
not1mm-24.4.4.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
145
|
-
not1mm-24.4.4.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
146
|
-
not1mm-24.4.4.dist-info/RECORD,,
|
141
|
+
not1mm-24.4.4.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
142
|
+
not1mm-24.4.4.1.dist-info/METADATA,sha256=o_y3YMD6rXzqQejTEeOdxVbusU6Ige_Mj-IWF9No2Fo,26693
|
143
|
+
not1mm-24.4.4.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
144
|
+
not1mm-24.4.4.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
145
|
+
not1mm-24.4.4.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
146
|
+
not1mm-24.4.4.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|