not1mm 25.6.5__py3-none-any.whl → 25.6.8__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/database.py +6 -9
- not1mm/lib/version.py +1 -1
- {not1mm-25.6.5.dist-info → not1mm-25.6.8.dist-info}/METADATA +13 -2
- {not1mm-25.6.5.dist-info → not1mm-25.6.8.dist-info}/RECORD +11 -11
- {not1mm-25.6.5.dist-info → not1mm-25.6.8.dist-info}/WHEEL +0 -0
- {not1mm-25.6.5.dist-info → not1mm-25.6.8.dist-info}/entry_points.txt +0 -0
- {not1mm-25.6.5.dist-info → not1mm-25.6.8.dist-info}/licenses/LICENSE +0 -0
- {not1mm-25.6.5.dist-info → not1mm-25.6.8.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"DXCC Tracker - {self.pref.get('current_database', 'ham.db')}"
|
125
|
-
)
|
126
123
|
|
127
124
|
def msg_from_main(self, msg):
|
128
125
|
""""""
|
not1mm/lib/database.py
CHANGED
@@ -179,7 +179,7 @@ class DataBase:
|
|
179
179
|
");"
|
180
180
|
)
|
181
181
|
cursor.execute(sql_command)
|
182
|
-
cursor.execute("PRAGMA journal_mode=
|
182
|
+
cursor.execute("PRAGMA journal_mode=DELETE")
|
183
183
|
conn.commit()
|
184
184
|
except sqlite3.OperationalError as exception:
|
185
185
|
logger.debug("%s", exception)
|
@@ -223,7 +223,7 @@ class DataBase:
|
|
223
223
|
");"
|
224
224
|
)
|
225
225
|
cursor.execute(sql_command)
|
226
|
-
cursor.execute("PRAGMA journal_mode=
|
226
|
+
cursor.execute("PRAGMA journal_mode=DELETE")
|
227
227
|
conn.commit()
|
228
228
|
|
229
229
|
sql_command = "select * from Contest;"
|
@@ -273,7 +273,7 @@ class DataBase:
|
|
273
273
|
"TimeCategory NVARCHAR(20));"
|
274
274
|
)
|
275
275
|
cursor.execute(sql_command)
|
276
|
-
cursor.execute("PRAGMA journal_mode=
|
276
|
+
cursor.execute("PRAGMA journal_mode=DELETE")
|
277
277
|
conn.commit()
|
278
278
|
except sqlite3.OperationalError as exception:
|
279
279
|
logger.debug("%s", exception)
|
@@ -313,7 +313,7 @@ class DataBase:
|
|
313
313
|
"PRIMARY KEY([Call]));"
|
314
314
|
)
|
315
315
|
cursor.execute(sql_command)
|
316
|
-
cursor.execute("PRAGMA journal_mode=
|
316
|
+
cursor.execute("PRAGMA journal_mode=DELETE")
|
317
317
|
conn.commit()
|
318
318
|
except sqlite3.OperationalError as exception:
|
319
319
|
logger.debug("%s", exception)
|
@@ -1234,7 +1234,7 @@ class DataBase:
|
|
1234
1234
|
except sqlite3.OperationalError as exception:
|
1235
1235
|
logger.debug("%s", exception)
|
1236
1236
|
return {}
|
1237
|
-
|
1237
|
+
|
1238
1238
|
def exec_sql_params_mult(self, query: str, params=None) -> dict:
|
1239
1239
|
"""Exec one off queries returning one dict"""
|
1240
1240
|
try:
|
@@ -1271,9 +1271,7 @@ class DataBase:
|
|
1271
1271
|
logger.debug("%s", exception)
|
1272
1272
|
return []
|
1273
1273
|
|
1274
|
-
def check_dupe_on_period_mode(
|
1275
|
-
self, call, band, mode, period_1, period_2
|
1276
|
-
) -> dict:
|
1274
|
+
def check_dupe_on_period_mode(self, call, band, mode, period_1, period_2) -> dict:
|
1277
1275
|
"""Checks if a call is dupe on band/mode"""
|
1278
1276
|
try:
|
1279
1277
|
with sqlite3.connect(self.database) as conn:
|
@@ -1286,4 +1284,3 @@ class DataBase:
|
|
1286
1284
|
except sqlite3.OperationalError as exception:
|
1287
1285
|
logger.debug("%s", exception)
|
1288
1286
|
return {}
|
1289
|
-
|
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.8
|
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,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
244
245
|
|
245
246
|
## Recent Changes
|
246
247
|
|
248
|
+
- [25-6-8] Revmoved SQLite WAL mode.
|
249
|
+
- [25-6-7] Fix focus issue when dxcc widget is active.
|
247
250
|
- [25-6-4] Add a DXCC/Band widget.
|
248
251
|
- [25-6-3] Fix crash caused by SSL cert expiration from supercheckpartial.com.
|
249
252
|
- [25-6-2] Crash Fix. Change initial self.pref from None to a dict.
|
@@ -683,6 +686,14 @@ This window contains QSO rates and counts.
|
|
683
686
|
|
684
687
|

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

|
696
|
+
|
686
697
|
### The Remote VFO Window
|
687
698
|
|
688
699
|
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
|
@@ -106,7 +106,7 @@ not1mm/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
106
|
not1mm/lib/about.py,sha256=sWycfGcruN3SaEe4JmaJ61K6D8Itq0WxpUYT-lEcmYM,416
|
107
107
|
not1mm/lib/cat_interface.py,sha256=jADt45E5AcdEx8FHN4rSDbngeQqVzbtIy43luGWGDK0,27222
|
108
108
|
not1mm/lib/cwinterface.py,sha256=rKUnqljHQC_Iljq4TCmAgSPe49lWbKcfxg58cE8YX5Y,5177
|
109
|
-
not1mm/lib/database.py,sha256=
|
109
|
+
not1mm/lib/database.py,sha256=RTlY_x_O7FguDQPU4gqUTrFv_0fL6LbIt4eyl-MAuCI,52088
|
110
110
|
not1mm/lib/edit_contact.py,sha256=Ki9bGPpqyQQBB1cU8VIBDCal3lbXeQ6qxhzklmhE2_w,353
|
111
111
|
not1mm/lib/edit_macro.py,sha256=raKWBwsHInj5EUKmvyLQ6gqc3ZFDlstsD3xqoM4PC8E,517
|
112
112
|
not1mm/lib/edit_opon.py,sha256=j3qJ1aBsQoIOnQ9yiBl3lyeISvKTP0I_rtBYBPAfgeI,359
|
@@ -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=9mncf9eD9aRy6OSYsdL-31n5tWanOgAsV_qnaWSZOg4,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.8.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
190
|
+
not1mm-25.6.8.dist-info/METADATA,sha256=FhPJkZvJlJt3LAV1lYhxQMRhzed2UFpckHwTsffW2ao,35011
|
191
|
+
not1mm-25.6.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
192
|
+
not1mm-25.6.8.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
193
|
+
not1mm-25.6.8.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
194
|
+
not1mm-25.6.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|