not1mm 24.10.5__py3-none-any.whl → 24.10.5.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 +7 -2
- not1mm/bandmap.py +6 -0
- not1mm/lib/version.py +1 -1
- {not1mm-24.10.5.dist-info → not1mm-24.10.5.1.dist-info}/METADATA +2 -1
- {not1mm-24.10.5.dist-info → not1mm-24.10.5.1.dist-info}/RECORD +9 -9
- {not1mm-24.10.5.dist-info → not1mm-24.10.5.1.dist-info}/LICENSE +0 -0
- {not1mm-24.10.5.dist-info → not1mm-24.10.5.1.dist-info}/WHEEL +0 -0
- {not1mm-24.10.5.dist-info → not1mm-24.10.5.1.dist-info}/entry_points.txt +0 -0
- {not1mm-24.10.5.dist-info → not1mm-24.10.5.1.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -125,6 +125,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
125
125
|
"cluster_port": 7373,
|
126
126
|
"cluster_filter": "Set DX Filter SpotterCont=NA",
|
127
127
|
"cluster_mode": "OPEN",
|
128
|
+
"cluster_expire": 1,
|
128
129
|
"logwindow": False,
|
129
130
|
"bandmapwindow": False,
|
130
131
|
"checkwindow": False,
|
@@ -600,6 +601,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
600
601
|
self.bandmap_window.setFeatures(dockfeatures)
|
601
602
|
self.addDockWidget(Qt.DockWidgetArea.LeftDockWidgetArea, self.bandmap_window)
|
602
603
|
self.bandmap_window.hide()
|
604
|
+
self.bandmap_window.cluster_expire.connect(self.cluster_expire_updated)
|
603
605
|
|
604
606
|
self.show_splash_msg("Setting up CheckWindow.")
|
605
607
|
self.check_window = CheckWindow()
|
@@ -658,6 +660,11 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
658
660
|
)
|
659
661
|
QCoreApplication.processEvents()
|
660
662
|
|
663
|
+
def cluster_expire_updated(self, number):
|
664
|
+
"""signal from bandmap"""
|
665
|
+
self.pref["cluster_expire"] = int(number)
|
666
|
+
self.write_preference()
|
667
|
+
|
661
668
|
def fldigi_qso(self, result: str):
|
662
669
|
"""
|
663
670
|
gets called when there is a new fldigi qso logged.
|
@@ -2585,7 +2592,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2585
2592
|
self.radio_thread.finished.connect(self.rig_control.deleteLater)
|
2586
2593
|
self.rig_control.poll_callback.connect(self.poll_radio)
|
2587
2594
|
self.radio_thread.start()
|
2588
|
-
# self.rig_control.delta = 1
|
2589
2595
|
|
2590
2596
|
if self.pref.get("userigctld", False):
|
2591
2597
|
logger.debug(
|
@@ -2602,7 +2608,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2602
2608
|
self.radio_thread.finished.connect(self.rig_control.deleteLater)
|
2603
2609
|
self.rig_control.poll_callback.connect(self.poll_radio)
|
2604
2610
|
self.radio_thread.start()
|
2605
|
-
# self.rig_control.delta = 1
|
2606
2611
|
|
2607
2612
|
if self.pref.get("cwtype", 0) == 0:
|
2608
2613
|
self.cw = None
|
not1mm/bandmap.py
CHANGED
@@ -21,6 +21,7 @@ from json import loads
|
|
21
21
|
from PyQt6 import QtCore, QtGui, QtWidgets, uic, QtNetwork
|
22
22
|
from PyQt6.QtGui import QColorConstants, QPalette, QColor
|
23
23
|
from PyQt6.QtWidgets import QDockWidget
|
24
|
+
from PyQt6.QtCore import pyqtSignal
|
24
25
|
|
25
26
|
import not1mm.fsutils as fsutils
|
26
27
|
from not1mm.lib.multicast import Multicast
|
@@ -322,6 +323,7 @@ class BandMapWindow(QDockWidget):
|
|
322
323
|
worked_list = {}
|
323
324
|
multicast_interface = None
|
324
325
|
text_color = QColor(45, 45, 45)
|
326
|
+
cluster_expire = pyqtSignal(str)
|
325
327
|
|
326
328
|
def __init__(self):
|
327
329
|
super().__init__()
|
@@ -329,6 +331,9 @@ class BandMapWindow(QDockWidget):
|
|
329
331
|
|
330
332
|
uic.loadUi(fsutils.APP_DATA_PATH / "bandmap.ui", self)
|
331
333
|
self.settings = self.get_settings()
|
334
|
+
self.clear_spot_olderSpinBox.setValue(
|
335
|
+
int(self.settings.get("cluster_expire", 1))
|
336
|
+
)
|
332
337
|
self.agetime = self.clear_spot_olderSpinBox.value()
|
333
338
|
self.clear_spot_olderSpinBox.valueChanged.connect(self.spot_aging_changed)
|
334
339
|
self.clearButton.clicked.connect(self.clear_spots)
|
@@ -876,6 +881,7 @@ class BandMapWindow(QDockWidget):
|
|
876
881
|
def spot_aging_changed(self) -> None:
|
877
882
|
"""Called when spot aging spinbox is changed."""
|
878
883
|
self.agetime = self.clear_spot_olderSpinBox.value()
|
884
|
+
self.cluster_expire.emit(str(self.agetime))
|
879
885
|
|
880
886
|
def showContextMenu(self) -> None:
|
881
887
|
"""doc string for the linter"""
|
not1mm/lib/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.10.5
|
3
|
+
Version: 24.10.5.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
|
@@ -219,6 +219,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
219
219
|
|
220
220
|
## Recent Changes
|
221
221
|
|
222
|
+
- [24-10-5-1] Store the bandmap spots age timer in the preferences.
|
222
223
|
- [24-10-5] Force reselction of contest after different DB opened.
|
223
224
|
- [24-10-2] Add WPX RTTY.
|
224
225
|
- [24-10-1] Merged PR removing leading zeros from serial numbers. Merged PR correcting the parsing of lookups for previous name and state in the CWT.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
3
|
-
not1mm/bandmap.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=8bgimshIW_mPwFTv6_j2cKutj3PNYyZgB3zqRzKrhKU,131487
|
3
|
+
not1mm/bandmap.py,sha256=P91rYGmd8r5K6TRNZt7kqqW6zCBVlFA1_n9-V7as1WE,31672
|
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
|
@@ -114,7 +114,7 @@ not1mm/lib/plugin_common.py,sha256=TbFUbftjELFt4QRdsjSHbqnXSngZOlSwlCTClqosDXA,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=5uwpZq4lmKw9eq6mo-j6TGPKC-i7jRbA_5Tg5_AjOyo,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
|
@@ -157,9 +157,9 @@ not1mm/plugins/ref_cw.py,sha256=aWjHHkqIKutjRUtzh09y5haFfnZK9poRQDWRQMDRxxU,1632
|
|
157
157
|
not1mm/plugins/stew_perry_topband.py,sha256=CKBQbYl4ETxhXJd2dma4fg_C5pag_s7Nf61SCztZtqE,10668
|
158
158
|
not1mm/plugins/weekly_rtty.py,sha256=DQcy3SY0Zn56EdlYGf3NxrRhTnkNa5IqRQPRQdKDSPs,14255
|
159
159
|
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
160
|
-
not1mm-24.10.5.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
161
|
-
not1mm-24.10.5.dist-info/METADATA,sha256=
|
162
|
-
not1mm-24.10.5.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
163
|
-
not1mm-24.10.5.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
164
|
-
not1mm-24.10.5.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
165
|
-
not1mm-24.10.5.dist-info/RECORD,,
|
160
|
+
not1mm-24.10.5.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
161
|
+
not1mm-24.10.5.1.dist-info/METADATA,sha256=Cto5bth3V2_4VBPF_bV9cenpvAdRaLJ2xo_p6Xh3Mgk,30662
|
162
|
+
not1mm-24.10.5.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
163
|
+
not1mm-24.10.5.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
164
|
+
not1mm-24.10.5.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
165
|
+
not1mm-24.10.5.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|