not1mm 24.11.17__py3-none-any.whl → 24.11.19__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 +1 -1
- not1mm/data/new_contest.ui +5 -0
- not1mm/lib/plugin_common.py +20 -1
- not1mm/lib/version.py +1 -1
- not1mm/plugins/10_10_fall_cw.py +12 -24
- not1mm/plugins/10_10_spring_cw.py +12 -24
- not1mm/plugins/10_10_summer_phone.py +12 -22
- not1mm/plugins/10_10_winter_phone.py +12 -24
- not1mm/plugins/arrl_10m.py +16 -29
- not1mm/plugins/arrl_dx_cw.py +11 -22
- not1mm/plugins/arrl_dx_ssb.py +11 -22
- not1mm/plugins/arrl_field_day.py +14 -22
- not1mm/plugins/arrl_rtty_ru.py +10 -22
- not1mm/plugins/arrl_ss_cw.py +14 -29
- not1mm/plugins/arrl_ss_phone.py +14 -29
- not1mm/plugins/arrl_vhf_jan.py +14 -29
- not1mm/plugins/arrl_vhf_jun.py +14 -29
- not1mm/plugins/arrl_vhf_sep.py +14 -29
- not1mm/plugins/canada_day.py +14 -29
- not1mm/plugins/cq_160_cw.py +10 -24
- not1mm/plugins/cq_160_ssb.py +10 -24
- not1mm/plugins/cq_wpx_cw.py +12 -25
- not1mm/plugins/cq_wpx_rtty.py +12 -25
- not1mm/plugins/cq_wpx_ssb.py +14 -29
- not1mm/plugins/cq_ww_cw.py +11 -22
- not1mm/plugins/cq_ww_rtty.py +12 -26
- not1mm/plugins/cq_ww_ssb.py +11 -22
- not1mm/plugins/cwt.py +12 -26
- not1mm/plugins/darc_xmas.py +560 -0
- not1mm/plugins/general_logging.py +12 -26
- not1mm/plugins/helvetia.py +15 -26
- not1mm/plugins/iaru_fieldday_r1_cw.py +12 -25
- not1mm/plugins/iaru_fieldday_r1_ssb.py +12 -25
- not1mm/plugins/iaru_hf.py +11 -22
- not1mm/plugins/icwc_mst.py +136 -40
- not1mm/plugins/jidx_cw.py +102 -23
- not1mm/plugins/jidx_ph.py +106 -29
- not1mm/plugins/k1usn_sst.py +10 -16
- not1mm/plugins/lz-dx.py +17 -28
- not1mm/plugins/naqp_cw.py +11 -17
- not1mm/plugins/naqp_rtty.py +11 -17
- not1mm/plugins/naqp_ssb.py +11 -17
- not1mm/plugins/phone_weekly_test.py +101 -16
- not1mm/plugins/raem.py +26 -25
- not1mm/plugins/ref_cw.py +17 -28
- not1mm/plugins/ref_ssb.py +32 -28
- not1mm/plugins/stew_perry_topband.py +102 -16
- not1mm/plugins/weekly_rtty.py +17 -16
- not1mm/plugins/winter_field_day.py +28 -24
- {not1mm-24.11.17.dist-info → not1mm-24.11.19.dist-info}/METADATA +9 -5
- {not1mm-24.11.17.dist-info → not1mm-24.11.19.dist-info}/RECORD +55 -54
- {not1mm-24.11.17.dist-info → not1mm-24.11.19.dist-info}/LICENSE +0 -0
- {not1mm-24.11.17.dist-info → not1mm-24.11.19.dist-info}/WHEEL +0 -0
- {not1mm-24.11.17.dist-info → not1mm-24.11.19.dist-info}/entry_points.txt +0 -0
- {not1mm-24.11.17.dist-info → not1mm-24.11.19.dist-info}/top_level.txt +0 -0
not1mm/plugins/cq_ww_cw.py
CHANGED
@@ -88,8 +88,7 @@ def interface(self):
|
|
88
88
|
self.field4.show()
|
89
89
|
self.snt_label.setText("SNT")
|
90
90
|
self.field1.setAccessibleName("RST Sent")
|
91
|
-
|
92
|
-
label.setText("CQ Zone")
|
91
|
+
self.exch_label.setText("CQ Zone")
|
93
92
|
self.field4.setAccessibleName("C Q Zone")
|
94
93
|
|
95
94
|
|
@@ -100,32 +99,22 @@ def reset_label(self):
|
|
100
99
|
def set_tab_next(self):
|
101
100
|
"""Set TAB Advances"""
|
102
101
|
self.tab_next = {
|
103
|
-
self.callsign: self.
|
104
|
-
self.
|
105
|
-
|
106
|
-
|
107
|
-
self.
|
108
|
-
QtWidgets.QLineEdit
|
109
|
-
),
|
110
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.callsign,
|
111
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
102
|
+
self.callsign: self.sent,
|
103
|
+
self.sent: self.receive,
|
104
|
+
self.receive: self.other_2,
|
105
|
+
self.other_1: self.callsign,
|
106
|
+
self.other_2: self.callsign,
|
112
107
|
}
|
113
108
|
|
114
109
|
|
115
110
|
def set_tab_prev(self):
|
116
111
|
"""Set TAB Advances"""
|
117
112
|
self.tab_prev = {
|
118
|
-
self.callsign: self.
|
119
|
-
self.
|
120
|
-
self.
|
121
|
-
|
122
|
-
|
123
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
124
|
-
QtWidgets.QLineEdit
|
125
|
-
),
|
126
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
127
|
-
QtWidgets.QLineEdit
|
128
|
-
),
|
113
|
+
self.callsign: self.other_2,
|
114
|
+
self.sent: self.callsign,
|
115
|
+
self.receive: self.sent,
|
116
|
+
self.other_1: self.receive,
|
117
|
+
self.other_2: self.receive,
|
129
118
|
}
|
130
119
|
|
131
120
|
|
not1mm/plugins/cq_ww_rtty.py
CHANGED
@@ -93,11 +93,9 @@ def interface(self):
|
|
93
93
|
self.field4.show()
|
94
94
|
self.snt_label.setText("SNT")
|
95
95
|
self.field1.setAccessibleName("RST Sent")
|
96
|
-
|
97
|
-
label.setText("CQ Zone")
|
96
|
+
self.other_label.setText("CQ Zone")
|
98
97
|
self.field3.setAccessibleName("C Q Zone")
|
99
|
-
|
100
|
-
label.setText("State/Prov")
|
98
|
+
self.exch_label.setText("State/Prov")
|
101
99
|
self.field4.setAccessibleName("U S State or Providence")
|
102
100
|
|
103
101
|
|
@@ -108,34 +106,22 @@ def reset_label(self):
|
|
108
106
|
def set_tab_next(self):
|
109
107
|
"""Set TAB Advances"""
|
110
108
|
self.tab_next = {
|
111
|
-
self.callsign: self.
|
112
|
-
self.
|
113
|
-
|
114
|
-
|
115
|
-
self.
|
116
|
-
QtWidgets.QLineEdit
|
117
|
-
),
|
118
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field4.findChild(
|
119
|
-
QtWidgets.QLineEdit
|
120
|
-
),
|
121
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
109
|
+
self.callsign: self.sent,
|
110
|
+
self.sent: self.receive,
|
111
|
+
self.receive: self.other_1,
|
112
|
+
self.other_1: self.other_2,
|
113
|
+
self.other_2: self.callsign,
|
122
114
|
}
|
123
115
|
|
124
116
|
|
125
117
|
def set_tab_prev(self):
|
126
118
|
"""Set TAB Advances"""
|
127
119
|
self.tab_prev = {
|
128
|
-
self.callsign: self.
|
129
|
-
self.
|
130
|
-
self.
|
131
|
-
|
132
|
-
|
133
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
134
|
-
QtWidgets.QLineEdit
|
135
|
-
),
|
136
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field3.findChild(
|
137
|
-
QtWidgets.QLineEdit
|
138
|
-
),
|
120
|
+
self.callsign: self.other_2,
|
121
|
+
self.sent: self.callsign,
|
122
|
+
self.receive: self.sent,
|
123
|
+
self.other_1: self.receive,
|
124
|
+
self.other_2: self.other_1,
|
139
125
|
}
|
140
126
|
|
141
127
|
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
@@ -87,8 +87,7 @@ def interface(self):
|
|
87
87
|
self.field4.show()
|
88
88
|
self.snt_label.setText("SNT")
|
89
89
|
self.field1.setAccessibleName("RST Sent")
|
90
|
-
|
91
|
-
label.setText("CQ Zone")
|
90
|
+
self.exch_label.setText("CQ Zone")
|
92
91
|
self.field4.setAccessibleName("C Q Zone")
|
93
92
|
|
94
93
|
|
@@ -99,32 +98,22 @@ def reset_label(self):
|
|
99
98
|
def set_tab_next(self):
|
100
99
|
"""Set TAB Advances"""
|
101
100
|
self.tab_next = {
|
102
|
-
self.callsign: self.
|
103
|
-
self.
|
104
|
-
|
105
|
-
|
106
|
-
self.
|
107
|
-
QtWidgets.QLineEdit
|
108
|
-
),
|
109
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.callsign,
|
110
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
101
|
+
self.callsign: self.sent,
|
102
|
+
self.sent: self.receive,
|
103
|
+
self.receive: self.other_2,
|
104
|
+
self.other_1: self.callsign,
|
105
|
+
self.other_2: self.callsign,
|
111
106
|
}
|
112
107
|
|
113
108
|
|
114
109
|
def set_tab_prev(self):
|
115
110
|
"""Set TAB Advances"""
|
116
111
|
self.tab_prev = {
|
117
|
-
self.callsign: self.
|
118
|
-
self.
|
119
|
-
self.
|
120
|
-
|
121
|
-
|
122
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
123
|
-
QtWidgets.QLineEdit
|
124
|
-
),
|
125
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
126
|
-
QtWidgets.QLineEdit
|
127
|
-
),
|
112
|
+
self.callsign: self.other_2,
|
113
|
+
self.sent: self.callsign,
|
114
|
+
self.receive: self.sent,
|
115
|
+
self.other_1: self.receive,
|
116
|
+
self.other_2: self.receive,
|
128
117
|
}
|
129
118
|
|
130
119
|
|
not1mm/plugins/cwt.py
CHANGED
@@ -78,11 +78,9 @@ def interface(self):
|
|
78
78
|
self.field4.show()
|
79
79
|
self.snt_label.setText("SNT")
|
80
80
|
self.field1.setAccessibleName("RST Sent")
|
81
|
-
|
82
|
-
label.setText("Name")
|
81
|
+
self.other_label.setText("Name")
|
83
82
|
self.field3.setAccessibleName("Name")
|
84
|
-
|
85
|
-
label.setText("ST/DX/#")
|
83
|
+
self.exch_label.setText("ST/DX/#")
|
86
84
|
self.field4.setAccessibleName("State D X or Number")
|
87
85
|
|
88
86
|
|
@@ -93,34 +91,22 @@ def reset_label(self):
|
|
93
91
|
def set_tab_next(self):
|
94
92
|
"""Set TAB Advances"""
|
95
93
|
self.tab_next = {
|
96
|
-
self.callsign: self.
|
97
|
-
self.
|
98
|
-
|
99
|
-
|
100
|
-
self.
|
101
|
-
QtWidgets.QLineEdit
|
102
|
-
),
|
103
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field4.findChild(
|
104
|
-
QtWidgets.QLineEdit
|
105
|
-
),
|
106
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.callsign,
|
94
|
+
self.callsign: self.sent,
|
95
|
+
self.sent: self.field2.findChild(QtWidgets.QLineEdit),
|
96
|
+
self.receive: self.other_1,
|
97
|
+
self.other_1: self.other_2,
|
98
|
+
self.other_2: self.callsign,
|
107
99
|
}
|
108
100
|
|
109
101
|
|
110
102
|
def set_tab_prev(self):
|
111
103
|
"""Set TAB Advances"""
|
112
104
|
self.tab_prev = {
|
113
|
-
self.callsign: self.
|
114
|
-
self.
|
115
|
-
self.
|
116
|
-
|
117
|
-
|
118
|
-
self.field3.findChild(QtWidgets.QLineEdit): self.field2.findChild(
|
119
|
-
QtWidgets.QLineEdit
|
120
|
-
),
|
121
|
-
self.field4.findChild(QtWidgets.QLineEdit): self.field3.findChild(
|
122
|
-
QtWidgets.QLineEdit
|
123
|
-
),
|
105
|
+
self.callsign: self.other_2,
|
106
|
+
self.sent: self.callsign,
|
107
|
+
self.receive: self.sent,
|
108
|
+
self.other_1: self.receive,
|
109
|
+
self.other_2: self.other_1,
|
124
110
|
}
|
125
111
|
|
126
112
|
|