not1mm 24.9.11.2__py3-none-any.whl → 24.9.12__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 +9 -3
- not1mm/data/JetBrainsMono-ExtraLight.ttf +0 -0
- not1mm/data/about.ui +1 -1
- not1mm/data/bandmap.ui +5 -5
- not1mm/data/checkwindow.ui +4 -4
- not1mm/data/configuration.ui +51 -51
- not1mm/data/editcontact.ui +3 -3
- not1mm/data/editmacro.ui +1 -1
- not1mm/data/logwindow.ui +2 -2
- not1mm/data/logwindowx.ui +2 -2
- not1mm/data/main.ui +34 -34
- not1mm/data/new_contest.ui +2 -2
- not1mm/data/opon.ui +1 -1
- not1mm/data/pickcontest.ui +5 -0
- not1mm/data/settings.ui +1 -1
- not1mm/data/vfo.ui +2 -2
- not1mm/lib/ft8_watcher.py +1 -1
- not1mm/lib/version.py +1 -1
- not1mm/plugins/arrl_vhf_jan.py +9 -4
- not1mm/plugins/arrl_vhf_jun.py +6 -1
- not1mm/plugins/arrl_vhf_sep.py +6 -1
- {not1mm-24.9.11.2.dist-info → not1mm-24.9.12.dist-info}/METADATA +2 -1
- {not1mm-24.9.11.2.dist-info → not1mm-24.9.12.dist-info}/RECORD +27 -27
- not1mm/data/JetBrainsMono-Regular.ttf +0 -0
- {not1mm-24.9.11.2.dist-info → not1mm-24.9.12.dist-info}/LICENSE +0 -0
- {not1mm-24.9.11.2.dist-info → not1mm-24.9.12.dist-info}/WHEEL +0 -0
- {not1mm-24.9.11.2.dist-info → not1mm-24.9.12.dist-info}/entry_points.txt +0 -0
- {not1mm-24.9.11.2.dist-info → not1mm-24.9.12.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -1505,10 +1505,12 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1505
1505
|
indicator.setFrameShape(QtWidgets.QFrame.Shape.NoFrame)
|
1506
1506
|
if self.text_color == QColorConstants.Black:
|
1507
1507
|
indicator.setStyleSheet(
|
1508
|
-
"font-family: JetBrains Mono; color: black;"
|
1508
|
+
"font-family: JetBrains Mono ExtraLight; color: black;"
|
1509
1509
|
)
|
1510
1510
|
else:
|
1511
|
-
indicator.setStyleSheet(
|
1511
|
+
indicator.setStyleSheet(
|
1512
|
+
"font-family: JetBrains Mono ExtraLight; color: white"
|
1513
|
+
)
|
1512
1514
|
|
1513
1515
|
def set_band_indicator(self, band: str) -> None:
|
1514
1516
|
"""
|
@@ -1529,7 +1531,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1529
1531
|
indicator = self.all_mode_indicators[self.current_mode].get(band, None)
|
1530
1532
|
if indicator:
|
1531
1533
|
indicator.setFrameShape(QtWidgets.QFrame.Shape.Box)
|
1532
|
-
indicator.setStyleSheet(
|
1534
|
+
indicator.setStyleSheet(
|
1535
|
+
"font-family: JetBrains Mono ExtraLight; color: green;"
|
1536
|
+
)
|
1533
1537
|
|
1534
1538
|
def closeEvent(self, _event) -> None:
|
1535
1539
|
"""
|
@@ -1946,6 +1950,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1946
1950
|
"FSK441",
|
1947
1951
|
"MSK144",
|
1948
1952
|
"JT65",
|
1953
|
+
"JT9",
|
1954
|
+
"Q65"
|
1949
1955
|
):
|
1950
1956
|
self.contact["Freq"] = round(
|
1951
1957
|
float(self.radio_state.get("vfoa", 0.0)) / 1000, 2
|
Binary file
|
not1mm/data/about.ui
CHANGED
not1mm/data/bandmap.ui
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
</property>
|
13
13
|
<property name="font">
|
14
14
|
<font>
|
15
|
-
<family>JetBrains Mono</family>
|
15
|
+
<family>JetBrains Mono ExtraLight</family>
|
16
16
|
</font>
|
17
17
|
</property>
|
18
18
|
<property name="windowTitle">
|
@@ -82,7 +82,7 @@
|
|
82
82
|
<widget class="QScrollArea" name="scrollArea">
|
83
83
|
<property name="font">
|
84
84
|
<font>
|
85
|
-
<family>JetBrains Mono</family>
|
85
|
+
<family>JetBrains Mono ExtraLight</family>
|
86
86
|
<pointsize>9</pointsize>
|
87
87
|
</font>
|
88
88
|
</property>
|
@@ -103,7 +103,7 @@
|
|
103
103
|
</property>
|
104
104
|
<property name="font">
|
105
105
|
<font>
|
106
|
-
<family>JetBrains Mono</family>
|
106
|
+
<family>JetBrains Mono ExtraLight</family>
|
107
107
|
<pointsize>9</pointsize>
|
108
108
|
</font>
|
109
109
|
</property>
|
@@ -112,7 +112,7 @@
|
|
112
112
|
<widget class="QGraphicsView" name="graphicsView">
|
113
113
|
<property name="font">
|
114
114
|
<font>
|
115
|
-
<family>JetBrains Mono</family>
|
115
|
+
<family>JetBrains Mono ExtraLight</family>
|
116
116
|
<pointsize>6</pointsize>
|
117
117
|
</font>
|
118
118
|
</property>
|
@@ -207,7 +207,7 @@
|
|
207
207
|
<widget class="QLabel" name="clear_spot_olderLabel">
|
208
208
|
<property name="font">
|
209
209
|
<font>
|
210
|
-
<family>JetBrains Mono</family>
|
210
|
+
<family>JetBrains Mono ExtraLight</family>
|
211
211
|
<pointsize>11</pointsize>
|
212
212
|
</font>
|
213
213
|
</property>
|
not1mm/data/checkwindow.ui
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
</property>
|
13
13
|
<property name="font">
|
14
14
|
<font>
|
15
|
-
<family>JetBrains Mono</family>
|
15
|
+
<family>JetBrains Mono ExtraLight</family>
|
16
16
|
</font>
|
17
17
|
</property>
|
18
18
|
<property name="focusPolicy">
|
@@ -123,7 +123,7 @@
|
|
123
123
|
<widget class="QLabel" name="logListLabel">
|
124
124
|
<property name="font">
|
125
125
|
<font>
|
126
|
-
<family>JetBrains Mono</family>
|
126
|
+
<family>JetBrains Mono ExtraLight</family>
|
127
127
|
<pointsize>10</pointsize>
|
128
128
|
</font>
|
129
129
|
</property>
|
@@ -136,7 +136,7 @@
|
|
136
136
|
<widget class="QLabel" name="masterListLabel">
|
137
137
|
<property name="font">
|
138
138
|
<font>
|
139
|
-
<family>JetBrains Mono</family>
|
139
|
+
<family>JetBrains Mono ExtraLight</family>
|
140
140
|
<pointsize>10</pointsize>
|
141
141
|
</font>
|
142
142
|
</property>
|
@@ -149,7 +149,7 @@
|
|
149
149
|
<widget class="QLabel" name="telnetListLabel">
|
150
150
|
<property name="font">
|
151
151
|
<font>
|
152
|
-
<family>JetBrains Mono</family>
|
152
|
+
<family>JetBrains Mono ExtraLight</family>
|
153
153
|
<pointsize>10</pointsize>
|
154
154
|
</font>
|
155
155
|
</property>
|
not1mm/data/configuration.ui
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
</property>
|
13
13
|
<property name="font">
|
14
14
|
<font>
|
15
|
-
<family>JetBrains Mono</family>
|
15
|
+
<family>JetBrains Mono ExtraLight</family>
|
16
16
|
</font>
|
17
17
|
</property>
|
18
18
|
<property name="windowTitle">
|
@@ -32,7 +32,7 @@
|
|
32
32
|
</property>
|
33
33
|
<property name="font">
|
34
34
|
<font>
|
35
|
-
<family>JetBrains Mono</family>
|
35
|
+
<family>JetBrains Mono ExtraLight</family>
|
36
36
|
<pointsize>12</pointsize>
|
37
37
|
<bold>false</bold>
|
38
38
|
</font>
|
@@ -58,7 +58,7 @@
|
|
58
58
|
</property>
|
59
59
|
<property name="font">
|
60
60
|
<font>
|
61
|
-
<family>JetBrains Mono</family>
|
61
|
+
<family>JetBrains Mono ExtraLight</family>
|
62
62
|
<pointsize>12</pointsize>
|
63
63
|
<strikeout>false</strikeout>
|
64
64
|
</font>
|
@@ -96,7 +96,7 @@
|
|
96
96
|
<widget class="QWidget" name="lookup_tab">
|
97
97
|
<property name="font">
|
98
98
|
<font>
|
99
|
-
<family>JetBrains Mono</family>
|
99
|
+
<family>JetBrains Mono ExtraLight</family>
|
100
100
|
<pointsize>12</pointsize>
|
101
101
|
<strikeout>false</strikeout>
|
102
102
|
</font>
|
@@ -109,7 +109,7 @@
|
|
109
109
|
<widget class="QRadioButton" name="usehamqth_radioButton">
|
110
110
|
<property name="font">
|
111
111
|
<font>
|
112
|
-
<family>JetBrains Mono</family>
|
112
|
+
<family>JetBrains Mono ExtraLight</family>
|
113
113
|
<pointsize>12</pointsize>
|
114
114
|
<strikeout>false</strikeout>
|
115
115
|
</font>
|
@@ -135,7 +135,7 @@
|
|
135
135
|
<widget class="QRadioButton" name="useqrz_radioButton">
|
136
136
|
<property name="font">
|
137
137
|
<font>
|
138
|
-
<family>JetBrains Mono</family>
|
138
|
+
<family>JetBrains Mono ExtraLight</family>
|
139
139
|
<pointsize>12</pointsize>
|
140
140
|
<bold>false</bold>
|
141
141
|
<strikeout>false</strikeout>
|
@@ -165,7 +165,7 @@
|
|
165
165
|
<widget class="QRadioButton" name="radioButton_3">
|
166
166
|
<property name="font">
|
167
167
|
<font>
|
168
|
-
<family>JetBrains Mono</family>
|
168
|
+
<family>JetBrains Mono ExtraLight</family>
|
169
169
|
<pointsize>12</pointsize>
|
170
170
|
<strikeout>false</strikeout>
|
171
171
|
</font>
|
@@ -188,7 +188,7 @@
|
|
188
188
|
<widget class="QLineEdit" name="lookup_user_name_field">
|
189
189
|
<property name="font">
|
190
190
|
<font>
|
191
|
-
<family>JetBrains Mono</family>
|
191
|
+
<family>JetBrains Mono ExtraLight</family>
|
192
192
|
<pointsize>12</pointsize>
|
193
193
|
<bold>false</bold>
|
194
194
|
<strikeout>false</strikeout>
|
@@ -215,7 +215,7 @@
|
|
215
215
|
</property>
|
216
216
|
<property name="font">
|
217
217
|
<font>
|
218
|
-
<family>JetBrains Mono</family>
|
218
|
+
<family>JetBrains Mono ExtraLight</family>
|
219
219
|
<pointsize>12</pointsize>
|
220
220
|
<strikeout>false</strikeout>
|
221
221
|
</font>
|
@@ -241,7 +241,7 @@
|
|
241
241
|
<widget class="QLabel" name="label_2">
|
242
242
|
<property name="font">
|
243
243
|
<font>
|
244
|
-
<family>JetBrains Mono</family>
|
244
|
+
<family>JetBrains Mono ExtraLight</family>
|
245
245
|
<pointsize>12</pointsize>
|
246
246
|
<bold>false</bold>
|
247
247
|
<strikeout>false</strikeout>
|
@@ -259,7 +259,7 @@
|
|
259
259
|
<widget class="QLabel" name="label">
|
260
260
|
<property name="font">
|
261
261
|
<font>
|
262
|
-
<family>JetBrains Mono</family>
|
262
|
+
<family>JetBrains Mono ExtraLight</family>
|
263
263
|
<pointsize>12</pointsize>
|
264
264
|
<bold>false</bold>
|
265
265
|
<strikeout>false</strikeout>
|
@@ -277,7 +277,7 @@
|
|
277
277
|
<widget class="QLineEdit" name="lookup_password_field">
|
278
278
|
<property name="font">
|
279
279
|
<font>
|
280
|
-
<family>JetBrains Mono</family>
|
280
|
+
<family>JetBrains Mono ExtraLight</family>
|
281
281
|
<pointsize>12</pointsize>
|
282
282
|
<bold>false</bold>
|
283
283
|
<strikeout>false</strikeout>
|
@@ -331,7 +331,7 @@
|
|
331
331
|
</property>
|
332
332
|
<property name="font">
|
333
333
|
<font>
|
334
|
-
<family>JetBrains Mono</family>
|
334
|
+
<family>JetBrains Mono ExtraLight</family>
|
335
335
|
<pointsize>12</pointsize>
|
336
336
|
<strikeout>false</strikeout>
|
337
337
|
</font>
|
@@ -394,7 +394,7 @@
|
|
394
394
|
<widget class="QWidget" name="cat_tab">
|
395
395
|
<property name="font">
|
396
396
|
<font>
|
397
|
-
<family>JetBrains Mono</family>
|
397
|
+
<family>JetBrains Mono ExtraLight</family>
|
398
398
|
<pointsize>12</pointsize>
|
399
399
|
<strikeout>false</strikeout>
|
400
400
|
</font>
|
@@ -407,7 +407,7 @@
|
|
407
407
|
<widget class="QLineEdit" name="rigcontrolip_field">
|
408
408
|
<property name="font">
|
409
409
|
<font>
|
410
|
-
<family>JetBrains Mono</family>
|
410
|
+
<family>JetBrains Mono ExtraLight</family>
|
411
411
|
<pointsize>12</pointsize>
|
412
412
|
<bold>false</bold>
|
413
413
|
<strikeout>false</strikeout>
|
@@ -452,7 +452,7 @@
|
|
452
452
|
</property>
|
453
453
|
<property name="font">
|
454
454
|
<font>
|
455
|
-
<family>JetBrains Mono</family>
|
455
|
+
<family>JetBrains Mono ExtraLight</family>
|
456
456
|
<pointsize>12</pointsize>
|
457
457
|
<bold>false</bold>
|
458
458
|
<strikeout>false</strikeout>
|
@@ -479,7 +479,7 @@
|
|
479
479
|
<widget class="QRadioButton" name="useflrig_radioButton">
|
480
480
|
<property name="font">
|
481
481
|
<font>
|
482
|
-
<family>JetBrains Mono</family>
|
482
|
+
<family>JetBrains Mono ExtraLight</family>
|
483
483
|
<pointsize>12</pointsize>
|
484
484
|
<strikeout>false</strikeout>
|
485
485
|
</font>
|
@@ -505,7 +505,7 @@
|
|
505
505
|
<widget class="QRadioButton" name="radioButton">
|
506
506
|
<property name="font">
|
507
507
|
<font>
|
508
|
-
<family>JetBrains Mono</family>
|
508
|
+
<family>JetBrains Mono ExtraLight</family>
|
509
509
|
<pointsize>12</pointsize>
|
510
510
|
<strikeout>false</strikeout>
|
511
511
|
</font>
|
@@ -556,7 +556,7 @@
|
|
556
556
|
<widget class="QLabel" name="label_6">
|
557
557
|
<property name="font">
|
558
558
|
<font>
|
559
|
-
<family>JetBrains Mono</family>
|
559
|
+
<family>JetBrains Mono ExtraLight</family>
|
560
560
|
<pointsize>12</pointsize>
|
561
561
|
<bold>false</bold>
|
562
562
|
<strikeout>false</strikeout>
|
@@ -587,7 +587,7 @@
|
|
587
587
|
<widget class="QLabel" name="label_7">
|
588
588
|
<property name="font">
|
589
589
|
<font>
|
590
|
-
<family>JetBrains Mono</family>
|
590
|
+
<family>JetBrains Mono ExtraLight</family>
|
591
591
|
<pointsize>12</pointsize>
|
592
592
|
<bold>false</bold>
|
593
593
|
<strikeout>false</strikeout>
|
@@ -618,7 +618,7 @@
|
|
618
618
|
<widget class="QLineEdit" name="rigcontrolport_field">
|
619
619
|
<property name="font">
|
620
620
|
<font>
|
621
|
-
<family>JetBrains Mono</family>
|
621
|
+
<family>JetBrains Mono ExtraLight</family>
|
622
622
|
<pointsize>12</pointsize>
|
623
623
|
<bold>false</bold>
|
624
624
|
<strikeout>false</strikeout>
|
@@ -643,7 +643,7 @@
|
|
643
643
|
<widget class="QWidget" name="cw_tab">
|
644
644
|
<property name="font">
|
645
645
|
<font>
|
646
|
-
<family>JetBrains Mono</family>
|
646
|
+
<family>JetBrains Mono ExtraLight</family>
|
647
647
|
<pointsize>12</pointsize>
|
648
648
|
<strikeout>false</strikeout>
|
649
649
|
</font>
|
@@ -656,7 +656,7 @@
|
|
656
656
|
<widget class="QLineEdit" name="cwport_field">
|
657
657
|
<property name="font">
|
658
658
|
<font>
|
659
|
-
<family>JetBrains Mono</family>
|
659
|
+
<family>JetBrains Mono ExtraLight</family>
|
660
660
|
<pointsize>12</pointsize>
|
661
661
|
<strikeout>false</strikeout>
|
662
662
|
</font>
|
@@ -679,7 +679,7 @@
|
|
679
679
|
<widget class="QLabel" name="label_11">
|
680
680
|
<property name="font">
|
681
681
|
<font>
|
682
|
-
<family>JetBrains Mono</family>
|
682
|
+
<family>JetBrains Mono ExtraLight</family>
|
683
683
|
<pointsize>12</pointsize>
|
684
684
|
<strikeout>false</strikeout>
|
685
685
|
</font>
|
@@ -709,7 +709,7 @@
|
|
709
709
|
<widget class="QRadioButton" name="usepywinkeyer_radioButton">
|
710
710
|
<property name="font">
|
711
711
|
<font>
|
712
|
-
<family>JetBrains Mono</family>
|
712
|
+
<family>JetBrains Mono ExtraLight</family>
|
713
713
|
<pointsize>12</pointsize>
|
714
714
|
<strikeout>false</strikeout>
|
715
715
|
</font>
|
@@ -729,7 +729,7 @@
|
|
729
729
|
<widget class="QRadioButton" name="usecwviacat_radioButton">
|
730
730
|
<property name="font">
|
731
731
|
<font>
|
732
|
-
<family>JetBrains Mono</family>
|
732
|
+
<family>JetBrains Mono ExtraLight</family>
|
733
733
|
<pointsize>12</pointsize>
|
734
734
|
<strikeout>false</strikeout>
|
735
735
|
</font>
|
@@ -749,7 +749,7 @@
|
|
749
749
|
<widget class="QLineEdit" name="cwip_field">
|
750
750
|
<property name="font">
|
751
751
|
<font>
|
752
|
-
<family>JetBrains Mono</family>
|
752
|
+
<family>JetBrains Mono ExtraLight</family>
|
753
753
|
<pointsize>12</pointsize>
|
754
754
|
<strikeout>false</strikeout>
|
755
755
|
</font>
|
@@ -769,7 +769,7 @@
|
|
769
769
|
<widget class="QRadioButton" name="usecwdaemon_radioButton">
|
770
770
|
<property name="font">
|
771
771
|
<font>
|
772
|
-
<family>JetBrains Mono</family>
|
772
|
+
<family>JetBrains Mono ExtraLight</family>
|
773
773
|
<pointsize>12</pointsize>
|
774
774
|
<strikeout>false</strikeout>
|
775
775
|
</font>
|
@@ -789,7 +789,7 @@
|
|
789
789
|
<widget class="QLabel" name="label_10">
|
790
790
|
<property name="font">
|
791
791
|
<font>
|
792
|
-
<family>JetBrains Mono</family>
|
792
|
+
<family>JetBrains Mono ExtraLight</family>
|
793
793
|
<pointsize>12</pointsize>
|
794
794
|
<strikeout>false</strikeout>
|
795
795
|
</font>
|
@@ -1011,7 +1011,7 @@
|
|
1011
1011
|
</property>
|
1012
1012
|
<property name="font">
|
1013
1013
|
<font>
|
1014
|
-
<family>JetBrains Mono</family>
|
1014
|
+
<family>JetBrains Mono ExtraLight</family>
|
1015
1015
|
<pointsize>12</pointsize>
|
1016
1016
|
<strikeout>false</strikeout>
|
1017
1017
|
</font>
|
@@ -1024,7 +1024,7 @@
|
|
1024
1024
|
<widget class="QCheckBox" name="connect_to_server">
|
1025
1025
|
<property name="font">
|
1026
1026
|
<font>
|
1027
|
-
<family>JetBrains Mono</family>
|
1027
|
+
<family>JetBrains Mono ExtraLight</family>
|
1028
1028
|
<pointsize>12</pointsize>
|
1029
1029
|
<strikeout>false</strikeout>
|
1030
1030
|
</font>
|
@@ -1038,7 +1038,7 @@
|
|
1038
1038
|
<widget class="QLabel" name="label_3">
|
1039
1039
|
<property name="font">
|
1040
1040
|
<font>
|
1041
|
-
<family>JetBrains Mono</family>
|
1041
|
+
<family>JetBrains Mono ExtraLight</family>
|
1042
1042
|
<pointsize>12</pointsize>
|
1043
1043
|
<strikeout>false</strikeout>
|
1044
1044
|
</font>
|
@@ -1055,7 +1055,7 @@
|
|
1055
1055
|
<widget class="QLineEdit" name="multicast_group">
|
1056
1056
|
<property name="font">
|
1057
1057
|
<font>
|
1058
|
-
<family>JetBrains Mono</family>
|
1058
|
+
<family>JetBrains Mono ExtraLight</family>
|
1059
1059
|
<pointsize>12</pointsize>
|
1060
1060
|
<strikeout>false</strikeout>
|
1061
1061
|
</font>
|
@@ -1069,7 +1069,7 @@
|
|
1069
1069
|
<widget class="QLabel" name="label_9">
|
1070
1070
|
<property name="font">
|
1071
1071
|
<font>
|
1072
|
-
<family>JetBrains Mono</family>
|
1072
|
+
<family>JetBrains Mono ExtraLight</family>
|
1073
1073
|
<pointsize>12</pointsize>
|
1074
1074
|
<strikeout>false</strikeout>
|
1075
1075
|
</font>
|
@@ -1086,7 +1086,7 @@
|
|
1086
1086
|
<widget class="QLineEdit" name="multicast_port">
|
1087
1087
|
<property name="font">
|
1088
1088
|
<font>
|
1089
|
-
<family>JetBrains Mono</family>
|
1089
|
+
<family>JetBrains Mono ExtraLight</family>
|
1090
1090
|
<pointsize>12</pointsize>
|
1091
1091
|
<strikeout>false</strikeout>
|
1092
1092
|
</font>
|
@@ -1103,7 +1103,7 @@
|
|
1103
1103
|
<widget class="QLabel" name="label_12">
|
1104
1104
|
<property name="font">
|
1105
1105
|
<font>
|
1106
|
-
<family>JetBrains Mono</family>
|
1106
|
+
<family>JetBrains Mono ExtraLight</family>
|
1107
1107
|
<pointsize>12</pointsize>
|
1108
1108
|
<strikeout>false</strikeout>
|
1109
1109
|
</font>
|
@@ -1120,7 +1120,7 @@
|
|
1120
1120
|
<widget class="QLineEdit" name="interface_ip">
|
1121
1121
|
<property name="font">
|
1122
1122
|
<font>
|
1123
|
-
<family>JetBrains Mono</family>
|
1123
|
+
<family>JetBrains Mono ExtraLight</family>
|
1124
1124
|
<pointsize>12</pointsize>
|
1125
1125
|
<strikeout>false</strikeout>
|
1126
1126
|
</font>
|
@@ -1138,7 +1138,7 @@
|
|
1138
1138
|
</property>
|
1139
1139
|
<property name="font">
|
1140
1140
|
<font>
|
1141
|
-
<family>JetBrains Mono</family>
|
1141
|
+
<family>JetBrains Mono ExtraLight</family>
|
1142
1142
|
<pointsize>12</pointsize>
|
1143
1143
|
<strikeout>false</strikeout>
|
1144
1144
|
</font>
|
@@ -1151,7 +1151,7 @@
|
|
1151
1151
|
<widget class="QLabel" name="label_14">
|
1152
1152
|
<property name="font">
|
1153
1153
|
<font>
|
1154
|
-
<family>JetBrains Mono</family>
|
1154
|
+
<family>JetBrains Mono ExtraLight</family>
|
1155
1155
|
<pointsize>12</pointsize>
|
1156
1156
|
<strikeout>false</strikeout>
|
1157
1157
|
</font>
|
@@ -1165,7 +1165,7 @@
|
|
1165
1165
|
<widget class="QLineEdit" name="n1mm_operator">
|
1166
1166
|
<property name="font">
|
1167
1167
|
<font>
|
1168
|
-
<family>JetBrains Mono</family>
|
1168
|
+
<family>JetBrains Mono ExtraLight</family>
|
1169
1169
|
<pointsize>12</pointsize>
|
1170
1170
|
<strikeout>false</strikeout>
|
1171
1171
|
</font>
|
@@ -1185,7 +1185,7 @@
|
|
1185
1185
|
<widget class="QCheckBox" name="send_n1mm_packets">
|
1186
1186
|
<property name="font">
|
1187
1187
|
<font>
|
1188
|
-
<family>JetBrains Mono</family>
|
1188
|
+
<family>JetBrains Mono ExtraLight</family>
|
1189
1189
|
<pointsize>12</pointsize>
|
1190
1190
|
<strikeout>false</strikeout>
|
1191
1191
|
</font>
|
@@ -1208,7 +1208,7 @@
|
|
1208
1208
|
<widget class="QLabel" name="label_13">
|
1209
1209
|
<property name="font">
|
1210
1210
|
<font>
|
1211
|
-
<family>JetBrains Mono</family>
|
1211
|
+
<family>JetBrains Mono ExtraLight</family>
|
1212
1212
|
<pointsize>12</pointsize>
|
1213
1213
|
<strikeout>false</strikeout>
|
1214
1214
|
</font>
|
@@ -1222,7 +1222,7 @@
|
|
1222
1222
|
<widget class="QLineEdit" name="n1mm_station_name">
|
1223
1223
|
<property name="font">
|
1224
1224
|
<font>
|
1225
|
-
<family>JetBrains Mono</family>
|
1225
|
+
<family>JetBrains Mono ExtraLight</family>
|
1226
1226
|
<pointsize>12</pointsize>
|
1227
1227
|
<strikeout>false</strikeout>
|
1228
1228
|
</font>
|
@@ -1242,7 +1242,7 @@
|
|
1242
1242
|
<widget class="QLabel" name="label_16">
|
1243
1243
|
<property name="font">
|
1244
1244
|
<font>
|
1245
|
-
<family>JetBrains Mono</family>
|
1245
|
+
<family>JetBrains Mono ExtraLight</family>
|
1246
1246
|
<pointsize>12</pointsize>
|
1247
1247
|
<strikeout>false</strikeout>
|
1248
1248
|
</font>
|
@@ -1259,7 +1259,7 @@
|
|
1259
1259
|
<widget class="QLabel" name="label_17">
|
1260
1260
|
<property name="font">
|
1261
1261
|
<font>
|
1262
|
-
<family>JetBrains Mono</family>
|
1262
|
+
<family>JetBrains Mono ExtraLight</family>
|
1263
1263
|
<pointsize>12</pointsize>
|
1264
1264
|
<strikeout>false</strikeout>
|
1265
1265
|
</font>
|
@@ -1276,7 +1276,7 @@
|
|
1276
1276
|
<widget class="QLabel" name="label_18">
|
1277
1277
|
<property name="font">
|
1278
1278
|
<font>
|
1279
|
-
<family>JetBrains Mono</family>
|
1279
|
+
<family>JetBrains Mono ExtraLight</family>
|
1280
1280
|
<pointsize>12</pointsize>
|
1281
1281
|
<strikeout>false</strikeout>
|
1282
1282
|
</font>
|
@@ -1293,7 +1293,7 @@
|
|
1293
1293
|
<widget class="QLabel" name="label_19">
|
1294
1294
|
<property name="font">
|
1295
1295
|
<font>
|
1296
|
-
<family>JetBrains Mono</family>
|
1296
|
+
<family>JetBrains Mono ExtraLight</family>
|
1297
1297
|
<pointsize>12</pointsize>
|
1298
1298
|
<strikeout>false</strikeout>
|
1299
1299
|
</font>
|
@@ -1392,7 +1392,7 @@
|
|
1392
1392
|
<widget class="QLineEdit" name="n1mm_radioport">
|
1393
1393
|
<property name="font">
|
1394
1394
|
<font>
|
1395
|
-
<family>JetBrains Mono</family>
|
1395
|
+
<family>JetBrains Mono ExtraLight</family>
|
1396
1396
|
<pointsize>12</pointsize>
|
1397
1397
|
<strikeout>false</strikeout>
|
1398
1398
|
</font>
|
@@ -1418,7 +1418,7 @@
|
|
1418
1418
|
<widget class="QLineEdit" name="n1mm_contactport">
|
1419
1419
|
<property name="font">
|
1420
1420
|
<font>
|
1421
|
-
<family>JetBrains Mono</family>
|
1421
|
+
<family>JetBrains Mono ExtraLight</family>
|
1422
1422
|
<pointsize>12</pointsize>
|
1423
1423
|
<strikeout>false</strikeout>
|
1424
1424
|
</font>
|
@@ -1444,7 +1444,7 @@
|
|
1444
1444
|
<widget class="QLineEdit" name="n1mm_lookupport">
|
1445
1445
|
<property name="font">
|
1446
1446
|
<font>
|
1447
|
-
<family>JetBrains Mono</family>
|
1447
|
+
<family>JetBrains Mono ExtraLight</family>
|
1448
1448
|
<pointsize>12</pointsize>
|
1449
1449
|
<strikeout>false</strikeout>
|
1450
1450
|
</font>
|
@@ -1470,7 +1470,7 @@
|
|
1470
1470
|
<widget class="QLineEdit" name="n1mm_scoreport">
|
1471
1471
|
<property name="font">
|
1472
1472
|
<font>
|
1473
|
-
<family>JetBrains Mono</family>
|
1473
|
+
<family>JetBrains Mono ExtraLight</family>
|
1474
1474
|
<pointsize>12</pointsize>
|
1475
1475
|
<strikeout>false</strikeout>
|
1476
1476
|
</font>
|
not1mm/data/editcontact.ui
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
</property>
|
13
13
|
<property name="font">
|
14
14
|
<font>
|
15
|
-
<family>JetBrains Mono</family>
|
15
|
+
<family>JetBrains Mono ExtraLight</family>
|
16
16
|
</font>
|
17
17
|
</property>
|
18
18
|
<property name="windowTitle">
|
@@ -742,7 +742,7 @@
|
|
742
742
|
<widget class="QPushButton" name="delete_2">
|
743
743
|
<property name="font">
|
744
744
|
<font>
|
745
|
-
<family>JetBrains Mono</family>
|
745
|
+
<family>JetBrains Mono ExtraLight</family>
|
746
746
|
</font>
|
747
747
|
</property>
|
748
748
|
<property name="accessibleName">
|
@@ -772,7 +772,7 @@
|
|
772
772
|
<widget class="QDialogButtonBox" name="buttonBox">
|
773
773
|
<property name="font">
|
774
774
|
<font>
|
775
|
-
<family>JetBrains Mono</family>
|
775
|
+
<family>JetBrains Mono ExtraLight</family>
|
776
776
|
</font>
|
777
777
|
</property>
|
778
778
|
<property name="accessibleName">
|
not1mm/data/editmacro.ui
CHANGED
not1mm/data/logwindow.ui
CHANGED
@@ -23,7 +23,7 @@
|
|
23
23
|
<widget class="QTableWidget" name="generalLog">
|
24
24
|
<property name="font">
|
25
25
|
<font>
|
26
|
-
<family>JetBrains Mono</family>
|
26
|
+
<family>JetBrains Mono ExtraLight</family>
|
27
27
|
</font>
|
28
28
|
</property>
|
29
29
|
<property name="focusPolicy">
|
@@ -36,7 +36,7 @@
|
|
36
36
|
<widget class="QTableWidget" name="focusedLog">
|
37
37
|
<property name="font">
|
38
38
|
<font>
|
39
|
-
<family>JetBrains Mono</family>
|
39
|
+
<family>JetBrains Mono ExtraLight</family>
|
40
40
|
</font>
|
41
41
|
</property>
|
42
42
|
<property name="focusPolicy">
|
not1mm/data/logwindowx.ui
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
<widget class="QTableWidget" name="generalLog">
|
35
35
|
<property name="font">
|
36
36
|
<font>
|
37
|
-
<family>JetBrains Mono</family>
|
37
|
+
<family>JetBrains Mono ExtraLight</family>
|
38
38
|
</font>
|
39
39
|
</property>
|
40
40
|
<property name="focusPolicy">
|
@@ -47,7 +47,7 @@
|
|
47
47
|
<widget class="QTableWidget" name="focusedLog">
|
48
48
|
<property name="font">
|
49
49
|
<font>
|
50
|
-
<family>JetBrains Mono</family>
|
50
|
+
<family>JetBrains Mono ExtraLight</family>
|
51
51
|
</font>
|
52
52
|
</property>
|
53
53
|
<property name="focusPolicy">
|
not1mm/data/main.ui
CHANGED
@@ -9,8 +9,8 @@
|
|
9
9
|
<rect>
|
10
10
|
<x>0</x>
|
11
11
|
<y>0</y>
|
12
|
-
<width>
|
13
|
-
<height>
|
12
|
+
<width>855</width>
|
13
|
+
<height>465</height>
|
14
14
|
</rect>
|
15
15
|
</property>
|
16
16
|
<property name="sizePolicy">
|
@@ -21,7 +21,7 @@
|
|
21
21
|
</property>
|
22
22
|
<property name="font">
|
23
23
|
<font>
|
24
|
-
<family>JetBrains Mono</family>
|
24
|
+
<family>JetBrains Mono ExtraLight</family>
|
25
25
|
<pointsize>11</pointsize>
|
26
26
|
</font>
|
27
27
|
</property>
|
@@ -602,7 +602,7 @@
|
|
602
602
|
<widget class="QLineEdit" name="callsign">
|
603
603
|
<property name="font">
|
604
604
|
<font>
|
605
|
-
<family>JetBrains Mono</family>
|
605
|
+
<family>JetBrains Mono ExtraLight</family>
|
606
606
|
<pointsize>20</pointsize>
|
607
607
|
</font>
|
608
608
|
</property>
|
@@ -640,7 +640,7 @@
|
|
640
640
|
<widget class="QLineEdit" name="sent">
|
641
641
|
<property name="font">
|
642
642
|
<font>
|
643
|
-
<family>JetBrains Mono</family>
|
643
|
+
<family>JetBrains Mono ExtraLight</family>
|
644
644
|
<pointsize>20</pointsize>
|
645
645
|
</font>
|
646
646
|
</property>
|
@@ -675,7 +675,7 @@
|
|
675
675
|
<widget class="QLineEdit" name="receive">
|
676
676
|
<property name="font">
|
677
677
|
<font>
|
678
|
-
<family>JetBrains Mono</family>
|
678
|
+
<family>JetBrains Mono ExtraLight</family>
|
679
679
|
<pointsize>20</pointsize>
|
680
680
|
</font>
|
681
681
|
</property>
|
@@ -710,7 +710,7 @@
|
|
710
710
|
<widget class="QLineEdit" name="other_1">
|
711
711
|
<property name="font">
|
712
712
|
<font>
|
713
|
-
<family>JetBrains Mono</family>
|
713
|
+
<family>JetBrains Mono ExtraLight</family>
|
714
714
|
<pointsize>20</pointsize>
|
715
715
|
</font>
|
716
716
|
</property>
|
@@ -751,7 +751,7 @@
|
|
751
751
|
<widget class="QLineEdit" name="other_2">
|
752
752
|
<property name="font">
|
753
753
|
<font>
|
754
|
-
<family>JetBrains Mono</family>
|
754
|
+
<family>JetBrains Mono ExtraLight</family>
|
755
755
|
<pointsize>20</pointsize>
|
756
756
|
</font>
|
757
757
|
</property>
|
@@ -873,7 +873,7 @@
|
|
873
873
|
</property>
|
874
874
|
<property name="font">
|
875
875
|
<font>
|
876
|
-
<family>JetBrains Mono</family>
|
876
|
+
<family>JetBrains Mono ExtraLight</family>
|
877
877
|
<pointsize>20</pointsize>
|
878
878
|
<bold>true</bold>
|
879
879
|
</font>
|
@@ -1301,7 +1301,7 @@
|
|
1301
1301
|
<widget class="QMenu" name="menuFile">
|
1302
1302
|
<property name="font">
|
1303
1303
|
<font>
|
1304
|
-
<family>JetBrains Mono</family>
|
1304
|
+
<family>JetBrains Mono ExtraLight</family>
|
1305
1305
|
<pointsize>11</pointsize>
|
1306
1306
|
</font>
|
1307
1307
|
</property>
|
@@ -1374,7 +1374,7 @@
|
|
1374
1374
|
</property>
|
1375
1375
|
<property name="font">
|
1376
1376
|
<font>
|
1377
|
-
<family>JetBrains Mono</family>
|
1377
|
+
<family>JetBrains Mono ExtraLight</family>
|
1378
1378
|
</font>
|
1379
1379
|
</property>
|
1380
1380
|
<property name="autoRepeat">
|
@@ -1405,7 +1405,7 @@
|
|
1405
1405
|
</property>
|
1406
1406
|
<property name="font">
|
1407
1407
|
<font>
|
1408
|
-
<family>JetBrains Mono</family>
|
1408
|
+
<family>JetBrains Mono ExtraLight</family>
|
1409
1409
|
</font>
|
1410
1410
|
</property>
|
1411
1411
|
<property name="autoRepeat">
|
@@ -1430,7 +1430,7 @@
|
|
1430
1430
|
</property>
|
1431
1431
|
<property name="font">
|
1432
1432
|
<font>
|
1433
|
-
<family>JetBrains Mono</family>
|
1433
|
+
<family>JetBrains Mono ExtraLight</family>
|
1434
1434
|
</font>
|
1435
1435
|
</property>
|
1436
1436
|
<property name="autoRepeat">
|
@@ -1455,7 +1455,7 @@
|
|
1455
1455
|
</property>
|
1456
1456
|
<property name="font">
|
1457
1457
|
<font>
|
1458
|
-
<family>JetBrains Mono</family>
|
1458
|
+
<family>JetBrains Mono ExtraLight</family>
|
1459
1459
|
</font>
|
1460
1460
|
</property>
|
1461
1461
|
</action>
|
@@ -1471,7 +1471,7 @@
|
|
1471
1471
|
</property>
|
1472
1472
|
<property name="font">
|
1473
1473
|
<font>
|
1474
|
-
<family>JetBrains Mono</family>
|
1474
|
+
<family>JetBrains Mono ExtraLight</family>
|
1475
1475
|
</font>
|
1476
1476
|
</property>
|
1477
1477
|
<property name="autoRepeat">
|
@@ -1490,7 +1490,7 @@
|
|
1490
1490
|
</property>
|
1491
1491
|
<property name="font">
|
1492
1492
|
<font>
|
1493
|
-
<family>JetBrains Mono</family>
|
1493
|
+
<family>JetBrains Mono ExtraLight</family>
|
1494
1494
|
</font>
|
1495
1495
|
</property>
|
1496
1496
|
<property name="autoRepeat">
|
@@ -1509,7 +1509,7 @@
|
|
1509
1509
|
</property>
|
1510
1510
|
<property name="font">
|
1511
1511
|
<font>
|
1512
|
-
<family>JetBrains Mono</family>
|
1512
|
+
<family>JetBrains Mono ExtraLight</family>
|
1513
1513
|
</font>
|
1514
1514
|
</property>
|
1515
1515
|
</action>
|
@@ -1519,7 +1519,7 @@
|
|
1519
1519
|
</property>
|
1520
1520
|
<property name="font">
|
1521
1521
|
<font>
|
1522
|
-
<family>JetBrains Mono</family>
|
1522
|
+
<family>JetBrains Mono ExtraLight</family>
|
1523
1523
|
</font>
|
1524
1524
|
</property>
|
1525
1525
|
<property name="autoRepeat">
|
@@ -1538,7 +1538,7 @@
|
|
1538
1538
|
</property>
|
1539
1539
|
<property name="font">
|
1540
1540
|
<font>
|
1541
|
-
<family>JetBrains Mono</family>
|
1541
|
+
<family>JetBrains Mono ExtraLight</family>
|
1542
1542
|
</font>
|
1543
1543
|
</property>
|
1544
1544
|
<property name="autoRepeat">
|
@@ -1560,7 +1560,7 @@
|
|
1560
1560
|
</property>
|
1561
1561
|
<property name="font">
|
1562
1562
|
<font>
|
1563
|
-
<family>JetBrains Mono</family>
|
1563
|
+
<family>JetBrains Mono ExtraLight</family>
|
1564
1564
|
</font>
|
1565
1565
|
</property>
|
1566
1566
|
<property name="autoRepeat">
|
@@ -1579,7 +1579,7 @@
|
|
1579
1579
|
</property>
|
1580
1580
|
<property name="font">
|
1581
1581
|
<font>
|
1582
|
-
<family>JetBrains Mono</family>
|
1582
|
+
<family>JetBrains Mono ExtraLight</family>
|
1583
1583
|
</font>
|
1584
1584
|
</property>
|
1585
1585
|
<property name="shortcut">
|
@@ -1601,7 +1601,7 @@
|
|
1601
1601
|
</property>
|
1602
1602
|
<property name="font">
|
1603
1603
|
<font>
|
1604
|
-
<family>JetBrains Mono</family>
|
1604
|
+
<family>JetBrains Mono ExtraLight</family>
|
1605
1605
|
</font>
|
1606
1606
|
</property>
|
1607
1607
|
<property name="autoRepeat">
|
@@ -1620,7 +1620,7 @@
|
|
1620
1620
|
</property>
|
1621
1621
|
<property name="font">
|
1622
1622
|
<font>
|
1623
|
-
<family>JetBrains Mono</family>
|
1623
|
+
<family>JetBrains Mono ExtraLight</family>
|
1624
1624
|
</font>
|
1625
1625
|
</property>
|
1626
1626
|
<property name="autoRepeat">
|
@@ -1639,7 +1639,7 @@
|
|
1639
1639
|
</property>
|
1640
1640
|
<property name="font">
|
1641
1641
|
<font>
|
1642
|
-
<family>JetBrains Mono</family>
|
1642
|
+
<family>JetBrains Mono ExtraLight</family>
|
1643
1643
|
</font>
|
1644
1644
|
</property>
|
1645
1645
|
<property name="autoRepeat">
|
@@ -1658,7 +1658,7 @@
|
|
1658
1658
|
</property>
|
1659
1659
|
<property name="font">
|
1660
1660
|
<font>
|
1661
|
-
<family>JetBrains Mono</family>
|
1661
|
+
<family>JetBrains Mono ExtraLight</family>
|
1662
1662
|
</font>
|
1663
1663
|
</property>
|
1664
1664
|
<property name="autoRepeat">
|
@@ -1677,7 +1677,7 @@
|
|
1677
1677
|
</property>
|
1678
1678
|
<property name="font">
|
1679
1679
|
<font>
|
1680
|
-
<family>JetBrains Mono</family>
|
1680
|
+
<family>JetBrains Mono ExtraLight</family>
|
1681
1681
|
</font>
|
1682
1682
|
</property>
|
1683
1683
|
<property name="autoRepeat">
|
@@ -1696,7 +1696,7 @@
|
|
1696
1696
|
</property>
|
1697
1697
|
<property name="font">
|
1698
1698
|
<font>
|
1699
|
-
<family>JetBrains Mono</family>
|
1699
|
+
<family>JetBrains Mono ExtraLight</family>
|
1700
1700
|
</font>
|
1701
1701
|
</property>
|
1702
1702
|
<property name="autoRepeat">
|
@@ -1715,7 +1715,7 @@
|
|
1715
1715
|
</property>
|
1716
1716
|
<property name="font">
|
1717
1717
|
<font>
|
1718
|
-
<family>JetBrains Mono</family>
|
1718
|
+
<family>JetBrains Mono ExtraLight</family>
|
1719
1719
|
</font>
|
1720
1720
|
</property>
|
1721
1721
|
</action>
|
@@ -1728,7 +1728,7 @@
|
|
1728
1728
|
</property>
|
1729
1729
|
<property name="font">
|
1730
1730
|
<font>
|
1731
|
-
<family>JetBrains Mono</family>
|
1731
|
+
<family>JetBrains Mono ExtraLight</family>
|
1732
1732
|
</font>
|
1733
1733
|
</property>
|
1734
1734
|
</action>
|
@@ -1743,7 +1743,7 @@
|
|
1743
1743
|
</property>
|
1744
1744
|
<property name="font">
|
1745
1745
|
<font>
|
1746
|
-
<family>JetBrains Mono</family>
|
1746
|
+
<family>JetBrains Mono ExtraLight</family>
|
1747
1747
|
</font>
|
1748
1748
|
</property>
|
1749
1749
|
</action>
|
@@ -1758,7 +1758,7 @@
|
|
1758
1758
|
</property>
|
1759
1759
|
<property name="font">
|
1760
1760
|
<font>
|
1761
|
-
<family>JetBrains Mono</family>
|
1761
|
+
<family>JetBrains Mono ExtraLight</family>
|
1762
1762
|
</font>
|
1763
1763
|
</property>
|
1764
1764
|
</action>
|
@@ -1776,7 +1776,7 @@
|
|
1776
1776
|
</property>
|
1777
1777
|
<property name="font">
|
1778
1778
|
<font>
|
1779
|
-
<family>JetBrains Mono</family>
|
1779
|
+
<family>JetBrains Mono ExtraLight</family>
|
1780
1780
|
</font>
|
1781
1781
|
</property>
|
1782
1782
|
</action>
|
@@ -1789,7 +1789,7 @@
|
|
1789
1789
|
</property>
|
1790
1790
|
<property name="font">
|
1791
1791
|
<font>
|
1792
|
-
<family>JetBrains Mono</family>
|
1792
|
+
<family>JetBrains Mono ExtraLight</family>
|
1793
1793
|
</font>
|
1794
1794
|
</property>
|
1795
1795
|
</action>
|
@@ -1802,7 +1802,7 @@
|
|
1802
1802
|
</property>
|
1803
1803
|
<property name="font">
|
1804
1804
|
<font>
|
1805
|
-
<family>JetBrains Mono</family>
|
1805
|
+
<family>JetBrains Mono ExtraLight</family>
|
1806
1806
|
</font>
|
1807
1807
|
</property>
|
1808
1808
|
</action>
|
not1mm/data/new_contest.ui
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
</property>
|
13
13
|
<property name="font">
|
14
14
|
<font>
|
15
|
-
<family>JetBrains Mono</family>
|
15
|
+
<family>JetBrains Mono ExtraLight</family>
|
16
16
|
</font>
|
17
17
|
</property>
|
18
18
|
<property name="windowTitle">
|
@@ -166,7 +166,7 @@
|
|
166
166
|
<widget class="QLabel" name="title">
|
167
167
|
<property name="font">
|
168
168
|
<font>
|
169
|
-
<family>JetBrains Mono</family>
|
169
|
+
<family>JetBrains Mono ExtraLight</family>
|
170
170
|
<pointsize>14</pointsize>
|
171
171
|
<bold>true</bold>
|
172
172
|
</font>
|
not1mm/data/opon.ui
CHANGED
not1mm/data/pickcontest.ui
CHANGED
not1mm/data/settings.ui
CHANGED
not1mm/data/vfo.ui
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
</property>
|
13
13
|
<property name="font">
|
14
14
|
<font>
|
15
|
-
<family>JetBrains Mono</family>
|
15
|
+
<family>JetBrains Mono ExtraLight</family>
|
16
16
|
</font>
|
17
17
|
</property>
|
18
18
|
<property name="features">
|
@@ -42,7 +42,7 @@
|
|
42
42
|
</property>
|
43
43
|
<property name="font">
|
44
44
|
<font>
|
45
|
-
<family>JetBrains Mono</family>
|
45
|
+
<family>JetBrains Mono ExtraLight</family>
|
46
46
|
<pointsize>25</pointsize>
|
47
47
|
</font>
|
48
48
|
</property>
|
not1mm/lib/ft8_watcher.py
CHANGED
not1mm/lib/version.py
CHANGED
not1mm/plugins/arrl_vhf_jan.py
CHANGED
@@ -379,6 +379,7 @@ def cabrillo(self):
|
|
379
379
|
for contact in log:
|
380
380
|
the_date_and_time = contact.get("TS", "")
|
381
381
|
themode = contact.get("Mode", "")
|
382
|
+
|
382
383
|
if themode in ("LSB", "USB", "AM"):
|
383
384
|
themode = "PH"
|
384
385
|
if themode in (
|
@@ -389,6 +390,8 @@ def cabrillo(self):
|
|
389
390
|
"FSK441",
|
390
391
|
"MSK144",
|
391
392
|
"JT65",
|
393
|
+
"JT9",
|
394
|
+
"Q65",
|
392
395
|
):
|
393
396
|
themode = "DG"
|
394
397
|
freq = int(contact.get("Freq", "0")) / 1000
|
@@ -475,7 +478,7 @@ def ft8_handler(the_packet: dict):
|
|
475
478
|
}
|
476
479
|
|
477
480
|
"""
|
478
|
-
|
481
|
+
# print(f"\n{the_packet=}\n")
|
479
482
|
if ALTEREGO is not None:
|
480
483
|
ALTEREGO.callsign.setText(the_packet.get("CALL"))
|
481
484
|
ALTEREGO.contact["Call"] = the_packet.get("CALL", "")
|
@@ -490,8 +493,10 @@ def ft8_handler(the_packet: dict):
|
|
490
493
|
if len(their_grid) > 4:
|
491
494
|
their_grid = their_grid[:4]
|
492
495
|
ALTEREGO.contact["NR"] = their_grid
|
493
|
-
|
494
|
-
|
496
|
+
if the_packet.get("SUBMODE"):
|
497
|
+
ALTEREGO.contact["Mode"] = the_packet.get("SUBMODE", "ERR")
|
498
|
+
else:
|
499
|
+
ALTEREGO.contact["Mode"] = the_packet.get("MODE", "ERR")
|
495
500
|
ALTEREGO.contact["Freq"] = round(float(the_packet.get("FREQ", "0.0")) * 1000, 2)
|
496
501
|
ALTEREGO.contact["QSXFreq"] = round(
|
497
502
|
float(the_packet.get("FREQ", "0.0")) * 1000, 2
|
@@ -499,7 +504,7 @@ def ft8_handler(the_packet: dict):
|
|
499
504
|
ALTEREGO.contact["Band"] = get_logged_band(
|
500
505
|
str(int(float(the_packet.get("FREQ", "0.0")) * 1000000))
|
501
506
|
)
|
502
|
-
|
507
|
+
# print(f"\n{ALTEREGO.contact=}\n")
|
503
508
|
ALTEREGO.other_1.setText(my_grid)
|
504
509
|
ALTEREGO.other_2.setText(their_grid)
|
505
510
|
ALTEREGO.save_contact()
|
not1mm/plugins/arrl_vhf_jun.py
CHANGED
@@ -357,6 +357,8 @@ def cabrillo(self):
|
|
357
357
|
"FSK441",
|
358
358
|
"MSK144",
|
359
359
|
"JT65",
|
360
|
+
"JT9",
|
361
|
+
"Q65",
|
360
362
|
):
|
361
363
|
themode = "DG"
|
362
364
|
freq = int(contact.get("Freq", "0")) / 1000
|
@@ -459,7 +461,10 @@ def ft8_handler(the_packet: dict):
|
|
459
461
|
their_grid = their_grid[:4]
|
460
462
|
ALTEREGO.contact["NR"] = their_grid
|
461
463
|
# ALTEREGO.contact["Sect"] = the_packet.get("ARRL_SECT", "ERR")
|
462
|
-
|
464
|
+
if the_packet.get("SUBMODE"):
|
465
|
+
ALTEREGO.contact["Mode"] = the_packet.get("SUBMODE", "ERR")
|
466
|
+
else:
|
467
|
+
ALTEREGO.contact["Mode"] = the_packet.get("MODE", "ERR")
|
463
468
|
ALTEREGO.contact["Freq"] = round(float(the_packet.get("FREQ", "0.0")) * 1000, 2)
|
464
469
|
ALTEREGO.contact["QSXFreq"] = round(
|
465
470
|
float(the_packet.get("FREQ", "0.0")) * 1000, 2
|
not1mm/plugins/arrl_vhf_sep.py
CHANGED
@@ -357,6 +357,8 @@ def cabrillo(self):
|
|
357
357
|
"FSK441",
|
358
358
|
"MSK144",
|
359
359
|
"JT65",
|
360
|
+
"JT9",
|
361
|
+
"Q65",
|
360
362
|
):
|
361
363
|
themode = "DG"
|
362
364
|
freq = int(contact.get("Freq", "0")) / 1000
|
@@ -459,7 +461,10 @@ def ft8_handler(the_packet: dict):
|
|
459
461
|
their_grid = their_grid[:4]
|
460
462
|
ALTEREGO.contact["NR"] = their_grid
|
461
463
|
# ALTEREGO.contact["Sect"] = the_packet.get("ARRL_SECT", "ERR")
|
462
|
-
|
464
|
+
if the_packet.get("SUBMODE"):
|
465
|
+
ALTEREGO.contact["Mode"] = the_packet.get("SUBMODE", "ERR")
|
466
|
+
else:
|
467
|
+
ALTEREGO.contact["Mode"] = the_packet.get("MODE", "ERR")
|
463
468
|
ALTEREGO.contact["Freq"] = round(float(the_packet.get("FREQ", "0.0")) * 1000, 2)
|
464
469
|
ALTEREGO.contact["QSXFreq"] = round(
|
465
470
|
float(the_packet.get("FREQ", "0.0")) * 1000, 2
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.9.
|
3
|
+
Version: 24.9.12
|
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
|
@@ -229,6 +229,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
229
229
|
|
230
230
|
## Recent Changes
|
231
231
|
|
232
|
+
- [24-9-12] Fixed WSJT-X MFSK submodes FT4 Q65.
|
232
233
|
- [24-9-11-2] Removed all the sketchy threaded call lookups. They're now implimented as a multicast service.
|
233
234
|
- [24-9-11-1] Fixed high clock cycle usage from the FlDigiWatcher class.
|
234
235
|
- [24-9-11] Fixed the HamQTH call lookups.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=SJmQ9s0SrzecvQSAmxogoeK6Z27dreOTZMgyHkiYbfg,126024
|
3
3
|
not1mm/bandmap.py,sha256=1b5tXCfGTnpqqn6hPNt7zRA8SmuwSXzSwNHZXhCRt70,31434
|
4
4
|
not1mm/checkwindow.py,sha256=aI-nr8OF90IWV7R_XRdmitvBJ9M85evCs72HoU3Jnvc,10374
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -9,40 +9,40 @@ not1mm/radio.py,sha256=eiB04LPMPBeMrBRI021Z7VXth66EOYb0Ujh11T9877c,3362
|
|
9
9
|
not1mm/test.py,sha256=xbGtnhdoX16C6nrqzLDydqgQtiWxYWmZ2NN74DF-VLM,1736
|
10
10
|
not1mm/vfo.py,sha256=IvmUQYMIPzLJw_BHQGis4J_IEW-vlBtdfxZLXPh7OzI,12335
|
11
11
|
not1mm/voice_keying.py,sha256=sA3gw5_k7kShTg2qhG7HkKDM5M6KheJVRkAc_C7mxDk,3006
|
12
|
-
not1mm/data/JetBrainsMono-
|
12
|
+
not1mm/data/JetBrainsMono-ExtraLight.ttf,sha256=g5Hn7BPounWMGDj1a8zZcyKMz03HSqW__pUluRR7Evg,274144
|
13
13
|
not1mm/data/MASTER.SCP,sha256=CEjRJNnjBZJlhCi3UFS1qCVMjDqQwhlfk0yZ_os6myI,366153
|
14
|
-
not1mm/data/about.ui,sha256=
|
14
|
+
not1mm/data/about.ui,sha256=IzbwKQZ_Ea06qGEjJgsa7g8-oYk549f-MEpLtChiLvw,2078
|
15
15
|
not1mm/data/alpha bravo charlie delta.txt,sha256=d5QMmSWEUAe4Rj1XbNjTPLa_5Be4Se6u5LUIqAYidOQ,224
|
16
|
-
not1mm/data/bandmap.ui,sha256=
|
16
|
+
not1mm/data/bandmap.ui,sha256=hvovf1YKyfUVVbKl6Ib2zU4RdUrFsQwm-255wVeKXZE,7180
|
17
17
|
not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
|
18
|
-
not1mm/data/checkwindow.ui,sha256=
|
19
|
-
not1mm/data/configuration.ui,sha256=
|
18
|
+
not1mm/data/checkwindow.ui,sha256=Ux5EgO-JalGB9qx3M6tmMpGHO0RmuuY1w0XEbuwd1xk,4658
|
19
|
+
not1mm/data/configuration.ui,sha256=qe6QeDmzhhAg2PuUgFZv1mINKFcuMXSMVK53o8mTcDo,52712
|
20
20
|
not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
|
21
21
|
not1mm/data/cty.json,sha256=OzC0F1nfApT4Hdq27uU3KLKkZwcAaKhzJoJwG_vAqnw,4855657
|
22
22
|
not1mm/data/cwmacros.txt,sha256=PvJ7TxGILq-ErHb6Gbrm-08x76BbCdXb8AY8a7st5mg,451
|
23
23
|
not1mm/data/donors.html,sha256=8hNzO3Q5a6p-_3egT1hfOjimPf810tKMUM5ukLzUsGM,116
|
24
|
-
not1mm/data/editcontact.ui,sha256=
|
25
|
-
not1mm/data/editmacro.ui,sha256=
|
24
|
+
not1mm/data/editcontact.ui,sha256=TNOsXETYfDaON4wj6AkzCJ-n2SmbNRO2-g2SLl5m8s0,27437
|
25
|
+
not1mm/data/editmacro.ui,sha256=Vg-S62ogKYcWlDDlza_JYyZkCQfa8mCfF-cFqpBej-w,2700
|
26
26
|
not1mm/data/greendot.png,sha256=6h6KFMj5mmu07ppPWXXewH0PLAvbOOre-5z6rpzWLLo,474
|
27
27
|
not1mm/data/k6gte-not1mm.desktop,sha256=dUi-YbHbavOsL3A29eglDQ0p1_cSKzJeEGQ52Qv_eKo,243
|
28
28
|
not1mm/data/k6gte.not1mm-128.png,sha256=ZP93MfRqr4WwsFCwg1m5MZjLs8bG895vDW9DDDn1B_Q,6076
|
29
29
|
not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcCac,1526
|
30
30
|
not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N90,2925
|
31
|
-
not1mm/data/logwindow.ui,sha256=
|
32
|
-
not1mm/data/logwindowx.ui,sha256=
|
33
|
-
not1mm/data/main.ui,sha256=
|
34
|
-
not1mm/data/new_contest.ui,sha256=
|
31
|
+
not1mm/data/logwindow.ui,sha256=f7vULj96tHIQuR1nJMyvPHHcmVgzkhv9D1isyojsnFU,1458
|
32
|
+
not1mm/data/logwindowx.ui,sha256=CwpI-h7cI1yqyldH9quKftsdHL5lTyL9ABOcf80nfqc,1632
|
33
|
+
not1mm/data/main.ui,sha256=EcOuLDTjI5PKbMy2hNthdC5Xnle5mWPncimiakQRulE,56858
|
34
|
+
not1mm/data/new_contest.ui,sha256=8ZXPTRgL9im_YPYLoLTlas40CzZ1pzfNJD8OElQh2WE,22901
|
35
35
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
36
|
-
not1mm/data/opon.ui,sha256=
|
37
|
-
not1mm/data/pickcontest.ui,sha256=
|
36
|
+
not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
|
37
|
+
not1mm/data/pickcontest.ui,sha256=4hPBszCglObThx_eIWtmK9CEcbr7WBjbB1rKZdI-o3I,1707
|
38
38
|
not1mm/data/radio_green.png,sha256=PXlvRI2x0C8yLVkxRwrZe6tex8k9GtM-1Cj2Vy6KP7o,1234
|
39
39
|
not1mm/data/radio_grey.png,sha256=9eOtMHDpQvRYY29D7_vPeacWbwotRXZTMm8EiHE9TW0,1258
|
40
40
|
not1mm/data/radio_red.png,sha256=QvkMk7thd_hCEIyK5xGAG4xVVXivl39nwOfD8USDI20,957
|
41
41
|
not1mm/data/reddot.png,sha256=M33jEMoU8W4rQ4_MVyzzKxDPDte1ypKBch5VnUMNLKE,565
|
42
|
-
not1mm/data/settings.ui,sha256=
|
42
|
+
not1mm/data/settings.ui,sha256=NyHFUb3ZFEgZ4bYB3O7qlO_0TvZwcc9SFPr7z9nF6kk,40123
|
43
43
|
not1mm/data/splash.png,sha256=85_BQotR1q24uCthrKm4SB_6ZOMwRjR-Jdp1XBHSTyg,5368
|
44
44
|
not1mm/data/ssbmacros.txt,sha256=0Qccj4y0nlK-w5da9a9ti-jILkURtwztoDuL_D0pEJM,470
|
45
|
-
not1mm/data/vfo.ui,sha256
|
45
|
+
not1mm/data/vfo.ui,sha256=-fmFMJLPDz0jmsOdCljL7vfmlAQgwyHkGZjomlIN3gc,2076
|
46
46
|
not1mm/data/phonetics/0.wav,sha256=0OpYiR-3MK6fVHE6MB-HeOxSAPiDNMjqvx5JcIZtsQk,42590
|
47
47
|
not1mm/data/phonetics/1.wav,sha256=OEAavA8cfVxFZwaT0HY9Wg9NAGEPKBhwhEdzGXkQs_U,30248
|
48
48
|
not1mm/data/phonetics/2.wav,sha256=AmCfvo8y8BT9OlHkCs_N4y_mUAjmyG_x9ahbgiwU2FE,29584
|
@@ -101,7 +101,7 @@ not1mm/lib/edit_macro.py,sha256=raKWBwsHInj5EUKmvyLQ6gqc3ZFDlstsD3xqoM4PC8E,517
|
|
101
101
|
not1mm/lib/edit_opon.py,sha256=j3qJ1aBsQoIOnQ9yiBl3lyeISvKTP0I_rtBYBPAfgeI,359
|
102
102
|
not1mm/lib/edit_station.py,sha256=doL21Hs6jzIE43ohAopdFt_iqnRJZHFcqzcnCS0-iio,1965
|
103
103
|
not1mm/lib/fldigi_watcher.py,sha256=reZz3fZLDoJVVZhJD9nIssk2aczCzadDSQTVu-5mTCM,919
|
104
|
-
not1mm/lib/ft8_watcher.py,sha256=
|
104
|
+
not1mm/lib/ft8_watcher.py,sha256=BFmVIsnbwuRMWoe-dIBybuCgi0WFmr8Km0O9l4eiwMM,4624
|
105
105
|
not1mm/lib/ham_utility.py,sha256=uRErxCxZr8dfxzekPyett0e_BABDVOCvSUUTzXq6ctE,11790
|
106
106
|
not1mm/lib/lookup.py,sha256=CDIEhnOnmfBIuDQ6xw1lo1uKSlDYaDZNZP-d8l_GFvQ,10675
|
107
107
|
not1mm/lib/multicast.py,sha256=bnFUNHyy82GmIb3_88EPBVVssj7-HzkJPaH671cK8Qw,3249
|
@@ -112,7 +112,7 @@ not1mm/lib/plugin_common.py,sha256=yefvcX61fXSjs__OPssJqVlZyg1AlcV1VDkl2MQP6kk,9
|
|
112
112
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
113
113
|
not1mm/lib/settings.py,sha256=MWiKXbasaFbzeHTjfzTaTqbCBrIijudP_-0a5jNmUAA,9265
|
114
114
|
not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
|
115
|
-
not1mm/lib/version.py,sha256=
|
115
|
+
not1mm/lib/version.py,sha256=NkBE5yGa2iQluIBEAcd60U7xXZXDklC5UKWaRwXpI2E,48
|
116
116
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
117
117
|
not1mm/plugins/10_10_fall_cw.py,sha256=IttjX1yy4nDdACGsiYlPteFG8eVseX_WtoFio6bqHE8,10953
|
118
118
|
not1mm/plugins/10_10_spring_cw.py,sha256=ThCptdM3dX4ywhoy2JRcOEyHSqcJolFaT7O_PYzM1Mg,10958
|
@@ -126,9 +126,9 @@ not1mm/plugins/arrl_field_day.py,sha256=pivtEK5j9sLpta12_wuUQYvs7MuiP3JfhlO-AOID
|
|
126
126
|
not1mm/plugins/arrl_rtty_ru.py,sha256=hKUS4isjdXo3EYxQrsqsDupPp2chW8fpoWj0T1pTgJ4,7994
|
127
127
|
not1mm/plugins/arrl_ss_cw.py,sha256=4yN68xZMuJRaSUfdiY4hafC07A3lifl5q6DEUZ-oYPQ,13080
|
128
128
|
not1mm/plugins/arrl_ss_phone.py,sha256=Yzc5sNjrY8TlnozbYF6k8hbEamyDuUAD_3-BNqHgXqY,13068
|
129
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
130
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
131
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
129
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=hSzVtV5Or47K0J5LEliXcQjDvgJVxzOJHuPEjb2XPok,15713
|
130
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=nLjRDY5sQ5ADklhObLQn4SxWg1zBlAbUWU2xA-2o24Y,14805
|
131
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=124DNVeBtN9AxV_NwjgJAMOx07sboLU-c3PX6H6N59k,14805
|
132
132
|
not1mm/plugins/canada_day.py,sha256=OVpcCl1Chse_zLHf6PayTrgawWM4W-pmrTw40Al-o9s,11998
|
133
133
|
not1mm/plugins/cq_160_cw.py,sha256=5s6rIZdJEnmWe1SI06BEyz7p5vP0N2n9mI4l_mZ0icw,14139
|
134
134
|
not1mm/plugins/cq_160_ssb.py,sha256=zIwSMAjHSt6W2edrDzVbyTf860JowHoFkU9BKO8Enag,14182
|
@@ -153,9 +153,9 @@ not1mm/plugins/ref_cw.py,sha256=aWjHHkqIKutjRUtzh09y5haFfnZK9poRQDWRQMDRxxU,1632
|
|
153
153
|
not1mm/plugins/stew_perry_topband.py,sha256=CKBQbYl4ETxhXJd2dma4fg_C5pag_s7Nf61SCztZtqE,10668
|
154
154
|
not1mm/plugins/weekly_rtty.py,sha256=DQcy3SY0Zn56EdlYGf3NxrRhTnkNa5IqRQPRQdKDSPs,14255
|
155
155
|
not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
|
156
|
-
not1mm-24.9.
|
157
|
-
not1mm-24.9.
|
158
|
-
not1mm-24.9.
|
159
|
-
not1mm-24.9.
|
160
|
-
not1mm-24.9.
|
161
|
-
not1mm-24.9.
|
156
|
+
not1mm-24.9.12.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
157
|
+
not1mm-24.9.12.dist-info/METADATA,sha256=2LtHoF9MHZyNfdDF4zJKG_u6alA0k1CuHbbEUx4Pe6M,31057
|
158
|
+
not1mm-24.9.12.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
159
|
+
not1mm-24.9.12.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
160
|
+
not1mm-24.9.12.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
161
|
+
not1mm-24.9.12.dist-info/RECORD,,
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|