not1mm 25.6.4.1__py3-none-any.whl → 25.6.7__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/data/donors.html +1 -0
- not1mm/data/dxcc_tracker.ui +7 -2
- not1mm/dxcc_tracker.py +1 -4
- not1mm/lib/version.py +1 -1
- {not1mm-25.6.4.1.dist-info → not1mm-25.6.7.dist-info}/METADATA +12 -2
- {not1mm-25.6.4.1.dist-info → not1mm-25.6.7.dist-info}/RECORD +10 -10
- {not1mm-25.6.4.1.dist-info → not1mm-25.6.7.dist-info}/WHEEL +0 -0
- {not1mm-25.6.4.1.dist-info → not1mm-25.6.7.dist-info}/entry_points.txt +0 -0
- {not1mm-25.6.4.1.dist-info → not1mm-25.6.7.dist-info}/licenses/LICENSE +0 -0
- {not1mm-25.6.4.1.dist-info → not1mm-25.6.7.dist-info}/top_level.txt +0 -0
not1mm/data/donors.html
CHANGED
not1mm/data/dxcc_tracker.ui
CHANGED
@@ -16,10 +16,15 @@
|
|
16
16
|
<widget class="QWidget" name="centralwidget">
|
17
17
|
<layout class="QVBoxLayout" name="verticalLayout">
|
18
18
|
<item>
|
19
|
-
<widget class="QTableView" name="tableView"
|
19
|
+
<widget class="QTableView" name="tableView">
|
20
|
+
<property name="focusPolicy">
|
21
|
+
<enum>Qt::FocusPolicy::NoFocus</enum>
|
22
|
+
</property>
|
23
|
+
</widget>
|
20
24
|
</item>
|
21
25
|
</layout>
|
22
26
|
</widget>
|
23
27
|
</widget>
|
28
|
+
<resources/>
|
29
|
+
<connections/>
|
24
30
|
</ui>
|
25
|
-
|
not1mm/dxcc_tracker.py
CHANGED
@@ -37,7 +37,7 @@ class DXCCWindow(QDockWidget):
|
|
37
37
|
super().__init__()
|
38
38
|
self.active = False
|
39
39
|
uic.loadUi(fsutils.APP_DATA_PATH / "dxcc_tracker.ui", self)
|
40
|
-
self.setWindowTitle("DXCC
|
40
|
+
self.setWindowTitle("DXCC Tracker")
|
41
41
|
self.load_pref()
|
42
42
|
self.db = QSqlDatabase.addDatabase("QSQLITE")
|
43
43
|
self.tableView.verticalHeader().setVisible(False)
|
@@ -120,9 +120,6 @@ class DXCCWindow(QDockWidget):
|
|
120
120
|
if not self.db.open():
|
121
121
|
print("Error: Could not open database")
|
122
122
|
return
|
123
|
-
self.setWindowTitle(
|
124
|
-
f"Log Display - {self.pref.get('current_database', 'ham.db')}"
|
125
|
-
)
|
126
123
|
|
127
124
|
def msg_from_main(self, msg):
|
128
125
|
""""""
|
not1mm/lib/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: not1mm
|
3
|
-
Version: 25.6.
|
3
|
+
Version: 25.6.7
|
4
4
|
Summary: NOT1MM Logger
|
5
5
|
Author-email: Michael Bridak <michael.bridak@gmail.com>
|
6
6
|
License: GPL-3.0-or-later
|
@@ -80,7 +80,7 @@ Dynamic: license-file
|
|
80
80
|
- [Lookup](#lookup)
|
81
81
|
- [Soundcard](#soundcard)
|
82
82
|
- [CAT Control](#cat-control)
|
83
|
-
- [CW Keyer
|
83
|
+
- [CW Keyer Interface](#cw-keyer-interface)
|
84
84
|
- [Cluster](#cluster)
|
85
85
|
- [N1MM Packets](#n1mm-packets)
|
86
86
|
- [Bands](#bands)
|
@@ -107,6 +107,7 @@ Dynamic: license-file
|
|
107
107
|
- [The Bandmap Window](#the-bandmap-window)
|
108
108
|
- [The Check Partial Window](#the-check-partial-window)
|
109
109
|
- [The Rate Window](#the-rate-window)
|
110
|
+
- [The DXCC window](#the-dxcc-window)
|
110
111
|
- [The Remote VFO Window](#the-remote-vfo-window)
|
111
112
|
- [Cabrillo](#cabrillo)
|
112
113
|
- [ADIF](#adif)
|
@@ -244,6 +245,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
244
245
|
|
245
246
|
## Recent Changes
|
246
247
|
|
248
|
+
- [25-6-7] Fix focus issue when dxcc widget is active.
|
247
249
|
- [25-6-4] Add a DXCC/Band widget.
|
248
250
|
- [25-6-3] Fix crash caused by SSL cert expiration from supercheckpartial.com.
|
249
251
|
- [25-6-2] Crash Fix. Change initial self.pref from None to a dict.
|
@@ -683,6 +685,14 @@ This window contains QSO rates and counts.
|
|
683
685
|
|
684
686
|

|
685
687
|
|
688
|
+
### The DXCC window
|
689
|
+
|
690
|
+
`Window`>`DXCC`
|
691
|
+
|
692
|
+
This window shows you a grid of DXCC entities you've aquired and on what bands.
|
693
|
+
|
694
|
+

|
695
|
+
|
686
696
|
### The Remote VFO Window
|
687
697
|
|
688
698
|
You can control the VFO on a remote rig by following the directions listed in
|
@@ -2,7 +2,7 @@ not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
not1mm/__main__.py,sha256=IHFJFKGAgKyPZUdi-aRDFIS--XJPdoPiV6utXx31_-I,172631
|
3
3
|
not1mm/bandmap.py,sha256=0JmZ32UvkaPjXs2xTgowX1GLvZo5zHU_Zo9y_GL-On4,31139
|
4
4
|
not1mm/checkwindow.py,sha256=zEHlw40j6Wr3rvKbCQf2lcezCoiZqaBqEvBjQU5aKW0,7630
|
5
|
-
not1mm/dxcc_tracker.py,sha256=
|
5
|
+
not1mm/dxcc_tracker.py,sha256=v3ctEyiB9CbA8l70T0ANS-kymo2DXpLIPEp2rj84Bjg,4302
|
6
6
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
7
7
|
not1mm/logwindow.py,sha256=O2dMaT_BYWsXA_dxsEHN92JwN-qVGy9nmH0MCMaG9gY,42830
|
8
8
|
not1mm/lookupservice.py,sha256=GkY_qHZfrW6XHf8upIoaG4hCFqm0fg6Ganu9ConGrIc,2628
|
@@ -26,8 +26,8 @@ not1mm/data/configuration.ui,sha256=Qze_mbSw3vS6Iwof5TyEz-3KycG1lconANEMXhPrFQQ,
|
|
26
26
|
not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
|
27
27
|
not1mm/data/cty.json,sha256=3Nk98AoENvBB4RwJCTheDVCjJ1AvX4ik5kg2R0iU1X0,4948509
|
28
28
|
not1mm/data/cwmacros.txt,sha256=NztufsX6R52gAO7VyJ2AHr7wOh41pJTwHKh5Lcs32ds,468
|
29
|
-
not1mm/data/donors.html,sha256=
|
30
|
-
not1mm/data/dxcc_tracker.ui,sha256=
|
29
|
+
not1mm/data/donors.html,sha256=hxxm23mHP_YUN3PnGwm12CiAutUTl5DQfDpgfyZbimY,370
|
30
|
+
not1mm/data/dxcc_tracker.ui,sha256=0TUK2yQfsSUBGrlCIAJ-jEquXN-7Ey5-qlTOLhhUthA,722
|
31
31
|
not1mm/data/editcontact.ui,sha256=ax-pm4TeECpHl3LSb5z4L403WjPWXZ9KV2it_6gIjqk,27404
|
32
32
|
not1mm/data/editmacro.ui,sha256=wbLuNwLsMBd9hEKs_6sH3ir5BynH9Bk-u8nWRjNyQ8w,2689
|
33
33
|
not1mm/data/greendot.png,sha256=El9TomJcGtViRcHOR7kMxGzjzvYs0TSAqOb3tZv0JDA,368
|
@@ -122,7 +122,7 @@ not1mm/lib/plugin_common.py,sha256=nqiUq11T9Wz8RDrRen4Zvp-KXVWUYcIp5JPZwqmu2Oo,1
|
|
122
122
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
123
123
|
not1mm/lib/settings.py,sha256=5xnsagH48qGeCDhfxPWW9yaXtv8wT13yoIVvYt8h_Qs,16023
|
124
124
|
not1mm/lib/super_check_partial.py,sha256=jX7DjHesEV4KNVQbddJui0wAsYHerikH7W0iPv7PXQw,3110
|
125
|
-
not1mm/lib/version.py,sha256=
|
125
|
+
not1mm/lib/version.py,sha256=mIAVfHe6QqNBsLnXzYiMx0-RygAnLi7Tt0D0HU_nv08,47
|
126
126
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
127
127
|
not1mm/plugins/10_10_fall_cw.py,sha256=oJh3JKqjOpnWElSlZpiQ631UnaOd8qra5s9bl_QoInk,14783
|
128
128
|
not1mm/plugins/10_10_spring_cw.py,sha256=p7dSDtbFK0e6Xouw2V6swYn3VFVgHKyx4IfRWyBjMZY,14786
|
@@ -186,9 +186,9 @@ not1mm/plugins/ukeidx.py,sha256=ZsIFXgOSwjuKNmN4W_C0TAgGqgnabJGNLMHwGkl3_bk,1910
|
|
186
186
|
not1mm/plugins/vhf_sprint.py,sha256=a9QFTpv8XUbZ_GLjdVCh7svykFa-gXOWwKFZ6MD3uQM,19289
|
187
187
|
not1mm/plugins/weekly_rtty.py,sha256=C8Xs3Q5UgSYx-mFFar8BVARWtmqlyrbeC98Ubzb4UN8,20128
|
188
188
|
not1mm/plugins/winter_field_day.py,sha256=hmAMgkdqIXtnCNyUp8J9Bb8liN8wj10wps6ROuG-Bok,15284
|
189
|
-
not1mm-25.6.
|
190
|
-
not1mm-25.6.
|
191
|
-
not1mm-25.6.
|
192
|
-
not1mm-25.6.
|
193
|
-
not1mm-25.6.
|
194
|
-
not1mm-25.6.
|
189
|
+
not1mm-25.6.7.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
190
|
+
not1mm-25.6.7.dist-info/METADATA,sha256=fiI55-39nf16sTdcSQRAp5AxKeZ1VtL8AwdjquZmAZk,34974
|
191
|
+
not1mm-25.6.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
192
|
+
not1mm-25.6.7.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
193
|
+
not1mm-25.6.7.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
194
|
+
not1mm-25.6.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|