not1mm 24.3.24__py3-none-any.whl → 24.3.25__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 CHANGED
@@ -231,10 +231,9 @@ class Database:
231
231
  -------
232
232
  A dict of the spot.
233
233
  """
234
-
235
234
  self.cursor.execute(
236
235
  "select * from spots where freq > ? and freq <= ? order by freq ASC;",
237
- ({current}, limit),
236
+ (current, limit),
238
237
  )
239
238
  return self.cursor.fetchone()
240
239
 
@@ -530,7 +529,7 @@ class BandMapWindow(QtWidgets.QDockWidget):
530
529
  if packet.get("cmd", "") == "CONTESTSTATUS":
531
530
  if not self.callsignField.text():
532
531
  self.callsignField.setText(packet.get("operator", "").upper())
533
- self.callsignField.selectAll()
532
+ # self.callsignField.selectAll()
534
533
  continue
535
534
  if packet.get("cmd", "") == "DARKMODE":
536
535
  self.setDarkMode(packet.get("state", False))
not1mm/data/bandmap.ui CHANGED
@@ -18,7 +18,7 @@
18
18
  <property name="windowTitle">
19
19
  <string>BandMap</string>
20
20
  </property>
21
- <widget class="QWidget">
21
+ <widget class="QWidget" name="widget">
22
22
  <layout class="QVBoxLayout" name="verticalLayout_2">
23
23
  <property name="spacing">
24
24
  <number>6</number>
@@ -46,6 +46,9 @@
46
46
  </item>
47
47
  <item>
48
48
  <widget class="QLineEdit" name="callsignField">
49
+ <property name="focusPolicy">
50
+ <enum>Qt::ClickFocus</enum>
51
+ </property>
49
52
  <property name="accessibleName">
50
53
  <string>callsign</string>
51
54
  </property>
@@ -59,6 +62,9 @@
59
62
  </item>
60
63
  <item>
61
64
  <widget class="QPushButton" name="connectButton">
65
+ <property name="focusPolicy">
66
+ <enum>Qt::NoFocus</enum>
67
+ </property>
62
68
  <property name="accessibleName">
63
69
  <string>connect</string>
64
70
  </property>
@@ -80,6 +86,9 @@
80
86
  <pointsize>9</pointsize>
81
87
  </font>
82
88
  </property>
89
+ <property name="focusPolicy">
90
+ <enum>Qt::NoFocus</enum>
91
+ </property>
83
92
  <property name="widgetResizable">
84
93
  <bool>true</bool>
85
94
  </property>
@@ -88,8 +97,8 @@
88
97
  <rect>
89
98
  <x>0</x>
90
99
  <y>0</y>
91
- <width>367</width>
92
- <height>546</height>
100
+ <width>359</width>
101
+ <height>512</height>
93
102
  </rect>
94
103
  </property>
95
104
  <property name="font">
@@ -212,6 +221,9 @@
212
221
  </item>
213
222
  <item>
214
223
  <widget class="QSpinBox" name="clear_spot_olderSpinBox">
224
+ <property name="focusPolicy">
225
+ <enum>Qt::NoFocus</enum>
226
+ </property>
215
227
  <property name="accessibleName">
216
228
  <string>clear spots older than</string>
217
229
  </property>
@@ -19,78 +19,101 @@
19
19
  <property name="windowTitle">
20
20
  <string>Check Partial</string>
21
21
  </property>
22
- <layout class="QGridLayout" name="gridLayout">
23
- <property name="bottomMargin"><number>2</number></property>
24
- <property name="topMargin"><number>2</number></property>
25
- <property name="leftMargin"><number>2</number></property>
26
- <property name="rightMargin"><number>2</number></property>
27
- <item row="1" column="1">
28
- <widget class="QListWidget" name="masterList"/>
29
- </item>
30
- <item row="1" column="3">
31
- <widget class="QListWidget" name="callhistoryList"/>
32
- </item>
33
- <item row="1" column="2">
34
- <widget class="QListWidget" name="telnetList"/>
35
- </item>
36
- <item row="1" column="0">
37
- <widget class="QListWidget" name="logList"/>
38
- </item>
39
- <item row="0" column="0">
40
- <widget class="QLabel" name="logListLabel">
41
- <property name="font">
42
- <font>
43
- <family>JetBrains Mono</family>
44
- <pointsize>10</pointsize>
45
- </font>
46
- </property>
47
- <property name="text">
48
- <string>Log</string>
49
- </property>
50
- </widget>
51
- </item>
52
- <item row="0" column="1">
53
- <widget class="QLabel" name="masterListLabel">
54
- <property name="font">
55
- <font>
56
- <family>JetBrains Mono</family>
57
- <pointsize>10</pointsize>
58
- </font>
59
- </property>
60
- <property name="text">
61
- <string>Master</string>
62
- </property>
63
- </widget>
64
- </item>
65
- <item row="0" column="2">
66
- <widget class="QLabel" name="telnetListLabel">
67
- <property name="font">
68
- <font>
69
- <family>JetBrains Mono</family>
70
- <pointsize>10</pointsize>
71
- </font>
72
- </property>
73
- <property name="text">
74
- <string>Telnet</string>
75
- </property>
76
- </widget>
77
- </item>
78
- <item row="0" column="3">
79
- <widget class="QLabel" name="callhistoryListLabel">
80
- <property name="font">
81
- <font>
82
- <family>JetBrains Mono</family>
83
- <pointsize>10</pointsize>
84
- </font>
85
- </property>
86
- <property name="text">
87
- <string>Call</string>
88
- </property>
89
- </widget>
90
- </item>
91
- </layout>
92
- </widget>
93
-
22
+ <layout class="QGridLayout" name="gridLayout">
23
+ <property name="leftMargin">
24
+ <number>2</number>
25
+ </property>
26
+ <property name="topMargin">
27
+ <number>2</number>
28
+ </property>
29
+ <property name="rightMargin">
30
+ <number>2</number>
31
+ </property>
32
+ <property name="bottomMargin">
33
+ <number>2</number>
34
+ </property>
35
+ <item row="1" column="1">
36
+ <widget class="QListWidget" name="masterList">
37
+ <property name="focusPolicy">
38
+ <enum>Qt::NoFocus</enum>
39
+ </property>
40
+ </widget>
41
+ </item>
42
+ <item row="1" column="3">
43
+ <widget class="QListWidget" name="callhistoryList">
44
+ <property name="focusPolicy">
45
+ <enum>Qt::NoFocus</enum>
46
+ </property>
47
+ </widget>
48
+ </item>
49
+ <item row="1" column="2">
50
+ <widget class="QListWidget" name="telnetList">
51
+ <property name="focusPolicy">
52
+ <enum>Qt::NoFocus</enum>
53
+ </property>
54
+ </widget>
55
+ </item>
56
+ <item row="1" column="0">
57
+ <widget class="QListWidget" name="logList">
58
+ <property name="focusPolicy">
59
+ <enum>Qt::NoFocus</enum>
60
+ </property>
61
+ </widget>
62
+ </item>
63
+ <item row="0" column="0">
64
+ <widget class="QLabel" name="logListLabel">
65
+ <property name="font">
66
+ <font>
67
+ <family>JetBrains Mono</family>
68
+ <pointsize>10</pointsize>
69
+ </font>
70
+ </property>
71
+ <property name="text">
72
+ <string>Log</string>
73
+ </property>
74
+ </widget>
75
+ </item>
76
+ <item row="0" column="1">
77
+ <widget class="QLabel" name="masterListLabel">
78
+ <property name="font">
79
+ <font>
80
+ <family>JetBrains Mono</family>
81
+ <pointsize>10</pointsize>
82
+ </font>
83
+ </property>
84
+ <property name="text">
85
+ <string>Master</string>
86
+ </property>
87
+ </widget>
88
+ </item>
89
+ <item row="0" column="2">
90
+ <widget class="QLabel" name="telnetListLabel">
91
+ <property name="font">
92
+ <font>
93
+ <family>JetBrains Mono</family>
94
+ <pointsize>10</pointsize>
95
+ </font>
96
+ </property>
97
+ <property name="text">
98
+ <string>Telnet</string>
99
+ </property>
100
+ </widget>
101
+ </item>
102
+ <item row="0" column="3">
103
+ <widget class="QLabel" name="callhistoryListLabel">
104
+ <property name="font">
105
+ <font>
106
+ <family>JetBrains Mono</family>
107
+ <pointsize>10</pointsize>
108
+ </font>
109
+ </property>
110
+ <property name="text">
111
+ <string>Call</string>
112
+ </property>
113
+ </widget>
114
+ </item>
115
+ </layout>
116
+ </widget>
94
117
  <resources/>
95
118
  <connections/>
96
119
  </ui>
not1mm/data/logwindow.ui CHANGED
@@ -14,21 +14,35 @@
14
14
  <string>QSO Logs</string>
15
15
  </property>
16
16
  <layout class="QVBoxLayout" name="verticalLayout">
17
- <property name="bottomMargin"><number>2</number></property>
18
- <property name="topMargin"><number>2</number></property>
19
- <property name="leftMargin"><number>2</number></property>
20
- <property name="rightMargin"><number>2</number></property>
17
+ <property name="leftMargin">
18
+ <number>2</number>
19
+ </property>
20
+ <property name="topMargin">
21
+ <number>2</number>
22
+ </property>
23
+ <property name="rightMargin">
24
+ <number>2</number>
25
+ </property>
26
+ <property name="bottomMargin">
27
+ <number>2</number>
28
+ </property>
21
29
  <item>
22
- <widget class="QSplitter" name="splitter">
23
- <property name="orientation">
24
- <enum>Qt::Vertical</enum>
25
- </property>
30
+ <widget class="QSplitter" name="splitter">
31
+ <property name="orientation">
32
+ <enum>Qt::Vertical</enum>
33
+ </property>
26
34
  <widget class="QTableWidget" name="generalLog">
27
35
  <property name="font">
28
36
  <font>
29
37
  <family>JetBrains Mono</family>
30
38
  </font>
31
39
  </property>
40
+ <property name="focusPolicy">
41
+ <enum>Qt::NoFocus</enum>
42
+ </property>
43
+ <property name="tabKeyNavigation">
44
+ <bool>false</bool>
45
+ </property>
32
46
  </widget>
33
47
  <widget class="QTableWidget" name="focusedLog">
34
48
  <property name="font">
@@ -36,8 +50,14 @@
36
50
  <family>JetBrains Mono</family>
37
51
  </font>
38
52
  </property>
53
+ <property name="focusPolicy">
54
+ <enum>Qt::NoFocus</enum>
55
+ </property>
56
+ <property name="tabKeyNavigation">
57
+ <bool>false</bool>
58
+ </property>
39
59
  </widget>
40
- </widget>
60
+ </widget>
41
61
  </item>
42
62
  </layout>
43
63
  </widget>
not1mm/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "24.3.24"
3
+ __version__ = "24.3.25"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: not1mm
3
- Version: 24.3.24
3
+ Version: 24.3.25
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
@@ -167,6 +167,8 @@ I wish to thank those who've contributed to the project.
167
167
 
168
168
  ## Recent Changes
169
169
 
170
+ - [24-3-25] Yanked version 24-3-24-1. Fixed widget focus issues.
171
+ - [24-3-24-1] Killed an SQL query bug causing crash when pressing arrow down.
170
172
  - [24-3-24] Reworked fsutil.py to correct directory paths for Linux.
171
173
  - [24-3-23] Yanked version 24-3-21, too many bugs for existing userbase.
172
174
  - [24-3-21] Merged PR from @kyleboyle for docking windows. MacOS and Windows support.
@@ -1,6 +1,6 @@
1
1
  not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  not1mm/__main__.py,sha256=rbAS_BogM6bnkhvKuTpyaDeW5kJhkXy-vc7wpGmiGdw,115699
3
- not1mm/bandmap.py,sha256=RsvKJpSuz3mveB_FWPZBpujlctO91KP6JVKfmGbuKKY,32117
3
+ not1mm/bandmap.py,sha256=M6SNhQm5rAAh6q76M8__wMn1UJlglpNONtfM10HDHOo,32116
4
4
  not1mm/checkwindow.py,sha256=I7f82yO-ODwVbLH9YrNxIyoI34g9G6F3odmu5h_jVGI,7376
5
5
  not1mm/fsutils.py,sha256=Li8Tq9K7c_q7onOHOQ7u1dOOFfhIIz5Aj2LKuQtGOO4,1652
6
6
  not1mm/logwindow.py,sha256=y5xqnGPoHGSzcw6lHl7GPSsVsWyn_bxHm0PVFenjm20,43657
@@ -9,9 +9,9 @@ not1mm/data/JetBrainsMono-Regular.ttf,sha256=UOHctAKY_PzCGh7zy-6f6egnCcSK0wzmF0c
9
9
  not1mm/data/MASTER.SCP,sha256=1vQRvEZ865brfmmajp-Lj-hgWejVGI992q8o971bUV8,366478
10
10
  not1mm/data/about.ui,sha256=7TqvtXFFm0Rmcu0bmLupwpO1CsK8MekfZ09_xn6kZrQ,2067
11
11
  not1mm/data/alpha bravo charlie delta.txt,sha256=d5QMmSWEUAe4Rj1XbNjTPLa_5Be4Se6u5LUIqAYidOQ,224
12
- not1mm/data/bandmap.ui,sha256=X6BpebEQLc77OF37a_25JTndL5LPc6PJUaIF9THogQs,6746
12
+ not1mm/data/bandmap.ui,sha256=NqVoAGyuf_Rsts_FnL0pYEtE08DJb6qm4KAQ_T01bM8,7125
13
13
  not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
14
- not1mm/data/checkwindow.ui,sha256=_a22PpCNxO2TrXL0n9xT6JDkCuck2vAIrCmTf0ffAmo,2564
14
+ not1mm/data/checkwindow.ui,sha256=UTyQ_aTh1Y8qR2XM2CC5xoKK9PkWfFxuEC55Msc_lhc,2912
15
15
  not1mm/data/configuration.ui,sha256=DJZxA4zZPb4sTdVn17j1fwaTw-5lJCNQ6PspQrsdMe4,51643
16
16
  not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
17
17
  not1mm/data/cty.json,sha256=CGf_bvqr_qfr0kXLQC0JGW1BWSX-1Ce8qZwDMMN7tuM,4783134
@@ -24,7 +24,7 @@ not1mm/data/k6gte-not1mm.desktop,sha256=bSiSG7PzGygv0bBaF7Nf48PApVyrobSBVNk7j7wR
24
24
  not1mm/data/k6gte.not1mm-128.png,sha256=ZP93MfRqr4WwsFCwg1m5MZjLs8bG895vDW9DDDn1B_Q,6076
25
25
  not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcCac,1526
26
26
  not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N90,2925
27
- not1mm/data/logwindow.ui,sha256=hC_G_4UCxBogUrQ4NX-pY1cXVGQOltbRF361HbZG2cI,1229
27
+ not1mm/data/logwindow.ui,sha256=9FzDJtLRpagvAWcDjFdB9NnvNZ4bVxdTNHy1Jit2ido,1610
28
28
  not1mm/data/main.ui,sha256=X9sNqSZyKennX-7Ne4c8yLnkbN13T5YpDUeri-wPOn4,54070
29
29
  not1mm/data/new_contest.ui,sha256=Xubngdbs_V_-o8huXzKOOaQOfj1NSXu9giIcaL4d0qk,21823
30
30
  not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
@@ -103,7 +103,7 @@ not1mm/lib/plugin_common.py,sha256=AAKBPCXzTWZJb-h08uPNnHVG7bSCg7kwukc211gFivY,8
103
103
  not1mm/lib/select_contest.py,sha256=Ezc7MTZXEbQ_nXK7gmghalqfbbDyxp0pAVt0-chBJOw,359
104
104
  not1mm/lib/settings.py,sha256=9dyXiUZcrR57EVemGDrO2ad3HSMQbe5ngl_bxtZtEic,8877
105
105
  not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
106
- not1mm/lib/version.py,sha256=SJ-JVOSCJswtOP_VbxWQ4ULRpIw-sBsATLBtG4Kd5vg,48
106
+ not1mm/lib/version.py,sha256=91oLClEkzlWddlXzU2GRE18JMwYlGfPph1LTDqnCQBY,48
107
107
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
108
108
  not1mm/plugins/10_10_fall_cw.py,sha256=pG0cFmTNOFO03wXcI1a3EEaT1QK83yWIsrSdqCOU-gg,10834
109
109
  not1mm/plugins/10_10_spring_cw.py,sha256=aWTohVrnZpT0SlQuqq7zxQaYe4SExEkOl3NI8xYYJWI,10840
@@ -146,9 +146,9 @@ not1mm/testing/test.py,sha256=97xdCpTVIWx1CUMU7JBrn9PMU7DqWnz6zO96XificC4,99
146
146
  testing/detectdark.py,sha256=d2oUDqLkDLMCTFjW3lSJgaf-PgLDrk71gw2Cess5itY,895
147
147
  testing/test.py,sha256=VkkKwKTJ4lqB7ozS9OEqy3NH67xU-_Dq0xkixKUdjrY,312
148
148
  usb_vfo_knob/code.py,sha256=h59iPPlcYbkXmRcYPQHDBP0yfLEl7fY3VkiIszdQeyI,1057
149
- not1mm-24.3.24.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
150
- not1mm-24.3.24.dist-info/METADATA,sha256=LfWsz-7TEAcL2fUCqG5NAun_8v7-m7JqjC84B5O6vWA,25905
151
- not1mm-24.3.24.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
152
- not1mm-24.3.24.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
153
- not1mm-24.3.24.dist-info/top_level.txt,sha256=PBUZJeDgW5ta7ghk__UYh_ygOFIhe9ymJDaxEuVumFU,28
154
- not1mm-24.3.24.dist-info/RECORD,,
149
+ not1mm-24.3.25.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
150
+ not1mm-24.3.25.dist-info/METADATA,sha256=KDfZJeBte7vNautadXodR7Aloz8nRJTpgL45aZ93AzU,26049
151
+ not1mm-24.3.25.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
152
+ not1mm-24.3.25.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
153
+ not1mm-24.3.25.dist-info/top_level.txt,sha256=PBUZJeDgW5ta7ghk__UYh_ygOFIhe9ymJDaxEuVumFU,28
154
+ not1mm-24.3.25.dist-info/RECORD,,