not1mm 24.4.9.1__py3-none-any.whl → 24.4.9.2__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/bandmap.py +0 -5
- not1mm/checkwindow.py +0 -5
- not1mm/lib/version.py +1 -1
- not1mm/logwindow.py +0 -5
- not1mm/vfo.py +0 -6
- {not1mm-24.4.9.1.dist-info → not1mm-24.4.9.2.dist-info}/METADATA +2 -1
- {not1mm-24.4.9.1.dist-info → not1mm-24.4.9.2.dist-info}/RECORD +11 -11
- {not1mm-24.4.9.1.dist-info → not1mm-24.4.9.2.dist-info}/LICENSE +0 -0
- {not1mm-24.4.9.1.dist-info → not1mm-24.4.9.2.dist-info}/WHEEL +0 -0
- {not1mm-24.4.9.1.dist-info → not1mm-24.4.9.2.dist-info}/entry_points.txt +0 -0
- {not1mm-24.4.9.1.dist-info → not1mm-24.4.9.2.dist-info}/top_level.txt +0 -0
not1mm/bandmap.py
CHANGED
@@ -326,11 +326,6 @@ class BandMapWindow(QDockWidget):
|
|
326
326
|
self._udpwatch = None
|
327
327
|
|
328
328
|
uic.loadUi(fsutils.APP_DATA_PATH / "bandmap.ui", self)
|
329
|
-
self.setFeatures(
|
330
|
-
QDockWidget.DockWidgetFeature.DockWidgetMovable
|
331
|
-
| QDockWidget.DockWidgetFeature.DockWidgetClosable
|
332
|
-
)
|
333
|
-
# self.setAllowedAreas(QtCore.Qt.DockWidgetArea.AllDockWidgetAreas)
|
334
329
|
self.settings = self.get_settings()
|
335
330
|
self.agetime = self.clear_spot_olderSpinBox.value()
|
336
331
|
self.clear_spot_olderSpinBox.valueChanged.connect(self.spot_aging_changed)
|
not1mm/checkwindow.py
CHANGED
@@ -50,11 +50,6 @@ class CheckWindow(QDockWidget):
|
|
50
50
|
self.database.current_contest = self.pref.get("contest", 0)
|
51
51
|
|
52
52
|
uic.loadUi(fsutils.APP_DATA_PATH / "checkwindow.ui", self)
|
53
|
-
self.setFeatures(
|
54
|
-
QDockWidget.DockWidgetFeature.DockWidgetMovable
|
55
|
-
| QDockWidget.DockWidgetFeature.DockWidgetClosable
|
56
|
-
)
|
57
|
-
# self.setAllowedAreas(QtCore.Qt.DockWidgetArea.AllDockWidgetAreas)
|
58
53
|
self.mscp = SCP(fsutils.APP_DATA_PATH)
|
59
54
|
self._udpwatch = None
|
60
55
|
self.udp_fifo = queue.Queue()
|
not1mm/lib/version.py
CHANGED
not1mm/logwindow.py
CHANGED
@@ -103,11 +103,6 @@ class LogWindow(QDockWidget):
|
|
103
103
|
self.database.current_contest = self.pref.get("contest", 0)
|
104
104
|
self.contact = self.database.empty_contact
|
105
105
|
uic.loadUi(fsutils.APP_DATA_PATH / "logwindow.ui", self)
|
106
|
-
self.setFeatures(
|
107
|
-
QDockWidget.DockWidgetFeature.DockWidgetMovable
|
108
|
-
| QDockWidget.DockWidgetFeature.DockWidgetClosable
|
109
|
-
)
|
110
|
-
# self.setAllowedAreas(QtCore.Qt.DockWidgetArea.AllDockWidgetAreas)
|
111
106
|
self.setWindowTitle(
|
112
107
|
f"QSO History - {self.pref.get('current_database', 'ham.db')}"
|
113
108
|
)
|
not1mm/vfo.py
CHANGED
@@ -39,12 +39,6 @@ class VfoWindow(QDockWidget):
|
|
39
39
|
def __init__(self):
|
40
40
|
super().__init__()
|
41
41
|
uic.loadUi(fsutils.APP_DATA_PATH / "vfo.ui", self)
|
42
|
-
|
43
|
-
self.setFeatures(
|
44
|
-
QDockWidget.DockWidgetFeature.DockWidgetMovable
|
45
|
-
| QDockWidget.DockWidgetFeature.DockWidgetClosable
|
46
|
-
)
|
47
|
-
# self.setAllowedAreas(QtCore.Qt.DockWidgetArea.AllDockWidgetAreas)
|
48
42
|
self.setWindowTitle("VFO Window")
|
49
43
|
|
50
44
|
self.rig_control = None
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.4.9.
|
3
|
+
Version: 24.4.9.2
|
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-9-2] Put back the floatable dock widgets, 'cause Wayland strikes again.
|
180
181
|
- [24-4-9-1] Removed DockWidgetFloatable from the dock widgets since my wee brain can't figure out how to add a dragable window frame to them once they are floating. Added a minimum size for the VFO LCD digits. Defaulted bandmap window to the right.
|
181
182
|
- [24-4-9] Fixed Checkwindow not showing calls from logged contacts.
|
182
183
|
- [24-4-7] Added FT8Watcher class to prep for FT8 support.
|
@@ -1,10 +1,10 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
not1mm/__main__.py,sha256=JhdnqqgaLasalLS0l9H-52LQZtBcSzhmyQ2EnIbwZ0M,123101
|
3
|
-
not1mm/bandmap.py,sha256=
|
4
|
-
not1mm/checkwindow.py,sha256=
|
3
|
+
not1mm/bandmap.py,sha256=3kmRYItrBqpjudFb2NnkGNJpDWkwOpGPQbKwHmYnQ-o,34021
|
4
|
+
not1mm/checkwindow.py,sha256=KCXtUEha4hzC87t7_0bDQtZZ0CHGB75JDLkxhK0ot8c,10168
|
5
5
|
not1mm/fsutils.py,sha256=Li8Tq9K7c_q7onOHOQ7u1dOOFfhIIz5Aj2LKuQtGOO4,1652
|
6
|
-
not1mm/logwindow.py,sha256=
|
7
|
-
not1mm/vfo.py,sha256=
|
6
|
+
not1mm/logwindow.py,sha256=UcO8mgs_E7ier2gg_1ESTaRxABEvcpCwKmSibm7hl74,44603
|
7
|
+
not1mm/vfo.py,sha256=pRRj0XTbeTU9noo3nC1dbg26VYj6gHEw_srUDbyYqC0,12169
|
8
8
|
not1mm/data/JetBrainsMono-Regular.ttf,sha256=UOHctAKY_PzCGh7zy-6f6egnCcSK0wzmF0csBqO9lDY,203952
|
9
9
|
not1mm/data/MASTER.SCP,sha256=1vQRvEZ865brfmmajp-Lj-hgWejVGI992q8o971bUV8,366478
|
10
10
|
not1mm/data/about.ui,sha256=7TqvtXFFm0Rmcu0bmLupwpO1CsK8MekfZ09_xn6kZrQ,2067
|
@@ -105,7 +105,7 @@ not1mm/lib/plugin_common.py,sha256=AAKBPCXzTWZJb-h08uPNnHVG7bSCg7kwukc211gFivY,8
|
|
105
105
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
106
106
|
not1mm/lib/settings.py,sha256=tlXlJUUZP0IFwIDc9DboM5_1by_tHNtMXvyJ0E7B6RI,8877
|
107
107
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
108
|
-
not1mm/lib/version.py,sha256=
|
108
|
+
not1mm/lib/version.py,sha256=QwvW-JtPIVn-luzLCu2sMNFbwBgDuxTxBaL5KXQja0s,49
|
109
109
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
110
110
|
not1mm/plugins/10_10_fall_cw.py,sha256=fUjfwjuscDjicXIxsO0JHh7xTR9Vu0iPsrOLb896Qak,10873
|
111
111
|
not1mm/plugins/10_10_spring_cw.py,sha256=WNaJP5mBQfaB6SxnFI0Vawt3AKDr94tKVtAK-EVhtUY,10878
|
@@ -139,9 +139,9 @@ not1mm/plugins/naqp_ssb.py,sha256=IWksulcb2_DxlkeW0h3048t8I-u00G_67KBVKkp-TV4,11
|
|
139
139
|
not1mm/plugins/phone_weekly_test.py,sha256=gCX0ESUoiQzDp9puwibt9-dRembNsiuEeBdawCVvjHA,12316
|
140
140
|
not1mm/plugins/stew_perry_topband.py,sha256=DIMI3mGMKokXXb9pPLqdhBI6JVnnIs7ZnAL23nFmshE,10588
|
141
141
|
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
142
|
-
not1mm-24.4.9.
|
143
|
-
not1mm-24.4.9.
|
144
|
-
not1mm-24.4.9.
|
145
|
-
not1mm-24.4.9.
|
146
|
-
not1mm-24.4.9.
|
147
|
-
not1mm-24.4.9.
|
142
|
+
not1mm-24.4.9.2.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
143
|
+
not1mm-24.4.9.2.dist-info/METADATA,sha256=mcGiVn4lo2-jS5SX2qKYcbWdov71ejta9QzocRkZfKs,27151
|
144
|
+
not1mm-24.4.9.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
145
|
+
not1mm-24.4.9.2.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
146
|
+
not1mm-24.4.9.2.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
147
|
+
not1mm-24.4.9.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|