not1mm 25.4.9__py3-none-any.whl → 25.4.10__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 +16 -4
- not1mm/data/greendot.png +0 -0
- not1mm/lib/version.py +1 -1
- {not1mm-25.4.9.dist-info → not1mm-25.4.10.dist-info}/METADATA +9 -4
- {not1mm-25.4.9.dist-info → not1mm-25.4.10.dist-info}/RECORD +9 -9
- {not1mm-25.4.9.dist-info → not1mm-25.4.10.dist-info}/WHEEL +0 -0
- {not1mm-25.4.9.dist-info → not1mm-25.4.10.dist-info}/entry_points.txt +0 -0
- {not1mm-25.4.9.dist-info → not1mm-25.4.10.dist-info}/licenses/LICENSE +0 -0
- {not1mm-25.4.9.dist-info → not1mm-25.4.10.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -840,6 +840,15 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
840
840
|
if hasattr(self.contest, "process_esm"):
|
841
841
|
self.contest.process_esm(self, new_focused_widget=new)
|
842
842
|
|
843
|
+
def make_button_blue(self, the_button: QtWidgets.QPushButton) -> None:
|
844
|
+
"""Takes supplied QPushButton object and turns it blue."""
|
845
|
+
if the_button is not None:
|
846
|
+
pal = QPalette()
|
847
|
+
pal.isCopyOf(self.current_palette)
|
848
|
+
blueColor = QColor(0, 0, 128)
|
849
|
+
pal.setBrush(QPalette.ColorRole.Button, blueColor)
|
850
|
+
the_button.setPalette(pal)
|
851
|
+
|
843
852
|
def make_button_green(self, the_button: QtWidgets.QPushButton) -> None:
|
844
853
|
"""Takes supplied QPushButton object and turns it green."""
|
845
854
|
if the_button is not None:
|
@@ -2096,6 +2105,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2096
2105
|
def stop_cw(self):
|
2097
2106
|
""""""
|
2098
2107
|
self.auto_cq = False
|
2108
|
+
self.leftdot.hide()
|
2099
2109
|
if self.cw is not None:
|
2100
2110
|
if self.cw.servertype == 1:
|
2101
2111
|
self.cw.sendcw("\x1b4")
|
@@ -2341,6 +2351,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2341
2351
|
if event.modifiers() == Qt.KeyboardModifier.ShiftModifier:
|
2342
2352
|
self.radioButton_run.setChecked(True)
|
2343
2353
|
self.run_sp_buttons_clicked()
|
2354
|
+
# self.make_button_blue(self.F1)
|
2355
|
+
self.leftdot.show()
|
2344
2356
|
self.auto_cq = True
|
2345
2357
|
self.auto_cq_time = datetime.datetime.now() + datetime.timedelta(
|
2346
2358
|
milliseconds=self.auto_cq_delay
|
@@ -2896,8 +2908,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2896
2908
|
|
2897
2909
|
logger.debug("PTT On")
|
2898
2910
|
if self.rig_control:
|
2899
|
-
self.leftdot.setPixmap(self.greendot)
|
2900
|
-
app.processEvents()
|
2911
|
+
# self.leftdot.setPixmap(self.greendot)
|
2912
|
+
# app.processEvents()
|
2901
2913
|
self.rig_control.ptt_on()
|
2902
2914
|
|
2903
2915
|
def ptt_off(self) -> None:
|
@@ -2915,8 +2927,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
2915
2927
|
|
2916
2928
|
logger.debug("PTT Off")
|
2917
2929
|
if self.rig_control:
|
2918
|
-
self.leftdot.setPixmap(self.reddot)
|
2919
|
-
app.processEvents()
|
2930
|
+
# self.leftdot.setPixmap(self.reddot)
|
2931
|
+
# app.processEvents()
|
2920
2932
|
self.rig_control.ptt_off()
|
2921
2933
|
|
2922
2934
|
def process_function_key(self, function_key, rttysendrx=True) -> None:
|
not1mm/data/greendot.png
CHANGED
Binary file
|
not1mm/lib/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: not1mm
|
3
|
-
Version: 25.4.
|
3
|
+
Version: 25.4.10
|
4
4
|
Summary: NOT1MM Logger
|
5
5
|
Author-email: Michael Bridak <michael.bridak@gmail.com>
|
6
6
|
License: GPL-3.0-or-later
|
@@ -250,6 +250,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
250
250
|
|
251
251
|
## Recent Changes
|
252
252
|
|
253
|
+
- [25-4-10] Add Auto CQ visual indicator.
|
253
254
|
- [25-4-9] Added UKEI DX
|
254
255
|
- [25-4-8] Remove focus from statistics table widget.
|
255
256
|
- [25-4-7] Merge in changes from dj1yfk correcting SPDX Cabrillo name.
|
@@ -664,9 +665,13 @@ pressing F1 - F12. See next section on Editing macro keys.
|
|
664
665
|
### Auto CQ
|
665
666
|
|
666
667
|
If you press `SHIFT-F1` The Auto CQ mode will be activated and the F1 macro will be resent
|
667
|
-
after each Auto CQ Delay interval has passed.
|
668
|
-
|
669
|
-
|
668
|
+
after each Auto CQ Delay interval has passed. An indicator will appear to the upper left of
|
669
|
+
the F1 macro key as a visual reminder that your Auto CQ is active.
|
670
|
+
|
671
|
+

|
672
|
+
|
673
|
+
The delay can be changed by going to the `Options` TAB in the Configuration dialog. If you are in
|
674
|
+
S&P mode when you enable Auto CQ, you will be automatically switched into RUN mode.
|
670
675
|
|
671
676
|
The auto CQ can be cancelled by either typing in the call sign field, or by pressing ESC.
|
672
677
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=xtWIC2PsCIHlaeUYS7kFwUhCBAP4rZ2ib0k0ILA8pPs,152411
|
3
3
|
not1mm/bandmap.py,sha256=-zu5slsuAm2GmeW8g3yvURzsuQxemwIQfw1HEq8xKHM,29920
|
4
4
|
not1mm/checkwindow.py,sha256=zEHlw40j6Wr3rvKbCQf2lcezCoiZqaBqEvBjQU5aKW0,7630
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -26,7 +26,7 @@ not1mm/data/cwmacros.txt,sha256=NztufsX6R52gAO7VyJ2AHr7wOh41pJTwHKh5Lcs32ds,468
|
|
26
26
|
not1mm/data/donors.html,sha256=0NEh7eu9Dsfv1Gy0_f6UMp4ZjVjm7OgoQJEQd-4whoU,267
|
27
27
|
not1mm/data/editcontact.ui,sha256=TNOsXETYfDaON4wj6AkzCJ-n2SmbNRO2-g2SLl5m8s0,27437
|
28
28
|
not1mm/data/editmacro.ui,sha256=Vg-S62ogKYcWlDDlza_JYyZkCQfa8mCfF-cFqpBej-w,2700
|
29
|
-
not1mm/data/greendot.png,sha256=
|
29
|
+
not1mm/data/greendot.png,sha256=El9TomJcGtViRcHOR7kMxGzjzvYs0TSAqOb3tZv0JDA,368
|
30
30
|
not1mm/data/k6gte-not1mm.desktop,sha256=dUi-YbHbavOsL3A29eglDQ0p1_cSKzJeEGQ52Qv_eKo,243
|
31
31
|
not1mm/data/k6gte.not1mm-128.png,sha256=ZP93MfRqr4WwsFCwg1m5MZjLs8bG895vDW9DDDn1B_Q,6076
|
32
32
|
not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcCac,1526
|
@@ -118,7 +118,7 @@ not1mm/lib/plugin_common.py,sha256=D1OBjyLmX7zuSPqgTCmHwXzAKA12J_zTQItvyIem-4Y,1
|
|
118
118
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
119
119
|
not1mm/lib/settings.py,sha256=mXffn8Xaj5KATPQinNBR0V5DbHWQPsRfh24_axWGYuk,15254
|
120
120
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
121
|
-
not1mm/lib/version.py,sha256=
|
121
|
+
not1mm/lib/version.py,sha256=esZgsPgAQkPjdl-aToDOFAAErps2s6CWufrJYpsuWtU,49
|
122
122
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
123
123
|
not1mm/plugins/10_10_fall_cw.py,sha256=oJh3JKqjOpnWElSlZpiQ631UnaOd8qra5s9bl_QoInk,14783
|
124
124
|
not1mm/plugins/10_10_spring_cw.py,sha256=p7dSDtbFK0e6Xouw2V6swYn3VFVgHKyx4IfRWyBjMZY,14786
|
@@ -175,9 +175,9 @@ not1mm/plugins/stew_perry_topband.py,sha256=3U-Dr28haBTqTaZWLiC1qHQBmLsLENDL-ihy
|
|
175
175
|
not1mm/plugins/ukeidx.py,sha256=0ABGW7_9Ui0Rgr8mkPBxOJokAIerM1a4-HWnl6VsnV8,19105
|
176
176
|
not1mm/plugins/weekly_rtty.py,sha256=C8Xs3Q5UgSYx-mFFar8BVARWtmqlyrbeC98Ubzb4UN8,20128
|
177
177
|
not1mm/plugins/winter_field_day.py,sha256=hmAMgkdqIXtnCNyUp8J9Bb8liN8wj10wps6ROuG-Bok,15284
|
178
|
-
not1mm-25.4.
|
179
|
-
not1mm-25.4.
|
180
|
-
not1mm-25.4.
|
181
|
-
not1mm-25.4.
|
182
|
-
not1mm-25.4.
|
183
|
-
not1mm-25.4.
|
178
|
+
not1mm-25.4.10.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
179
|
+
not1mm-25.4.10.dist-info/METADATA,sha256=gCw9oRSa0QBMwrcqprwbz_63W6BPjHHQSO6ovRsj_uI,37832
|
180
|
+
not1mm-25.4.10.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
181
|
+
not1mm-25.4.10.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
182
|
+
not1mm-25.4.10.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
183
|
+
not1mm-25.4.10.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|