not1mm 24.5.10__py3-none-any.whl → 24.6.1__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/main.ui CHANGED
@@ -1741,6 +1741,11 @@
1741
1741
  <property name="text">
1742
1742
  <string>HotKeys</string>
1743
1743
  </property>
1744
+ <property name="font">
1745
+ <font>
1746
+ <family>JetBrains Mono</family>
1747
+ </font>
1748
+ </property>
1744
1749
  </action>
1745
1750
  <action name="actionUpdate_MASTER_SCP">
1746
1751
  <property name="text">
@@ -1751,6 +1756,11 @@
1751
1756
  <property name="text">
1752
1757
  <string>Help</string>
1753
1758
  </property>
1759
+ <property name="font">
1760
+ <font>
1761
+ <family>JetBrains Mono</family>
1762
+ </font>
1763
+ </property>
1754
1764
  </action>
1755
1765
  <action name="actionUpdate_CTY">
1756
1766
  <property name="text">
@@ -1764,6 +1774,11 @@
1764
1774
  <property name="text">
1765
1775
  <string>Check Partial</string>
1766
1776
  </property>
1777
+ <property name="font">
1778
+ <font>
1779
+ <family>JetBrains Mono</family>
1780
+ </font>
1781
+ </property>
1767
1782
  </action>
1768
1783
  <action name="actionVFO">
1769
1784
  <property name="checkable">
@@ -1772,6 +1787,11 @@
1772
1787
  <property name="text">
1773
1788
  <string>VFO</string>
1774
1789
  </property>
1790
+ <property name="font">
1791
+ <font>
1792
+ <family>JetBrains Mono</family>
1793
+ </font>
1794
+ </property>
1775
1795
  </action>
1776
1796
  <action name="actionDark_Mode_2">
1777
1797
  <property name="checkable">
@@ -1780,6 +1800,11 @@
1780
1800
  <property name="text">
1781
1801
  <string>Dark Mode</string>
1782
1802
  </property>
1803
+ <property name="font">
1804
+ <font>
1805
+ <family>JetBrains Mono</family>
1806
+ </font>
1807
+ </property>
1783
1808
  </action>
1784
1809
  </widget>
1785
1810
  <resources/>
not1mm/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "24.5.10"
3
+ __version__ = "24.6.1"
@@ -167,9 +167,9 @@ def predupe(self):
167
167
  def prefill(self):
168
168
  """Fill sentnr"""
169
169
  result = self.database.get_serial()
170
- serial_nr = str(result.get("serial_nr", "1"))
170
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
171
171
  if serial_nr == "None":
172
- serial_nr = "1"
172
+ serial_nr = "001"
173
173
 
174
174
  exchange = self.contest_settings.get("SentExchange", "").replace("#", serial_nr)
175
175
  field = self.field3.findChild(QtWidgets.QLineEdit)
@@ -126,9 +126,9 @@ def predupe(self):
126
126
  def prefill(self):
127
127
  """Fill SentNR"""
128
128
  result = self.database.get_serial()
129
- serial_nr = str(result.get("serial_nr", "1"))
129
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
130
130
  if serial_nr == "None":
131
- serial_nr = "1"
131
+ serial_nr = "001"
132
132
  field = self.field3.findChild(QtWidgets.QLineEdit)
133
133
  if len(field.text()) == 0:
134
134
  field.setText(serial_nr)
@@ -126,9 +126,9 @@ def predupe(self):
126
126
  def prefill(self):
127
127
  """Fill SentNR"""
128
128
  result = self.database.get_serial()
129
- serial_nr = str(result.get("serial_nr", "1"))
129
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
130
130
  if serial_nr == "None":
131
- serial_nr = "1"
131
+ serial_nr = "001"
132
132
  field = self.field3.findChild(QtWidgets.QLineEdit)
133
133
  if len(field.text()) == 0:
134
134
  field.setText(serial_nr)
@@ -156,9 +156,9 @@ def predupe(self):
156
156
  def prefill(self):
157
157
  """Fill sentnr"""
158
158
  result = self.database.get_serial()
159
- serial_nr = str(result.get("serial_nr", "1"))
159
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
160
160
  if serial_nr == "None":
161
- serial_nr = "1"
161
+ serial_nr = "001"
162
162
 
163
163
  exchange = self.contest_settings.get("SentExchange", "").replace("#", serial_nr)
164
164
  field = self.field3.findChild(QtWidgets.QLineEdit)
@@ -124,9 +124,9 @@ def predupe(self):
124
124
  def prefill(self):
125
125
  """Fill sentnr"""
126
126
  result = self.database.get_serial()
127
- serial_nr = str(result.get("serial_nr", "1"))
127
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
128
128
  if serial_nr == "None":
129
- serial_nr = "1"
129
+ serial_nr = "001"
130
130
 
131
131
  exchange = self.contest_settings.get("SentExchange", "").replace("#", serial_nr)
132
132
  field = self.field3.findChild(QtWidgets.QLineEdit)
@@ -124,9 +124,9 @@ def predupe(self):
124
124
  def prefill(self):
125
125
  """Fill sentnr"""
126
126
  result = self.database.get_serial()
127
- serial_nr = str(result.get("serial_nr", "1"))
127
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
128
128
  if serial_nr == "None":
129
- serial_nr = "1"
129
+ serial_nr = "001"
130
130
 
131
131
  exchange = self.contest_settings.get("SentExchange", "").replace("#", serial_nr)
132
132
  field = self.field3.findChild(QtWidgets.QLineEdit)
@@ -155,9 +155,9 @@ def prefill(self):
155
155
  # self.other_2.setText(str(self.contact.get("ZN", "")))
156
156
 
157
157
  result = self.database.get_serial()
158
- serial_nr = str(result.get("serial_nr", "1"))
158
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
159
159
  if serial_nr == "None":
160
- serial_nr = "1"
160
+ serial_nr = "001"
161
161
 
162
162
  exchange = self.contest_settings.get("SentExchange", "").replace("#", serial_nr)
163
163
  field = self.field3.findChild(QtWidgets.QLineEdit)
@@ -157,9 +157,9 @@ def predupe(self): # pylint: disable=unused-argument
157
157
  def prefill(self):
158
158
  """Fill SentNR"""
159
159
  result = self.database.get_serial()
160
- serial_nr = str(result.get("serial_nr", "1"))
160
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
161
161
  if serial_nr == "None":
162
- serial_nr = "1"
162
+ serial_nr = "001"
163
163
  field = self.field3.findChild(QtWidgets.QLineEdit)
164
164
  if len(field.text()) == 0:
165
165
  field.setText(serial_nr)
@@ -170,35 +170,39 @@ def points(self):
170
170
  result = self.cty_lookup(self.station.get("Call", ""))
171
171
  if result:
172
172
  for item in result.items():
173
- mycountry = item[1].get("entity", "")
174
- mycontinent = item[1].get("continent", "")
173
+ my_country = item[1].get("entity", "")
174
+ my_continent = item[1].get("continent", "")
175
175
  result = self.cty_lookup(self.contact.get("Call", ""))
176
176
  band = int(int(float(self.contact.get("Freq", 0))) / 1000)
177
177
  if result:
178
178
  for item in result.items():
179
- entity = item[1].get("entity", "")
180
- continent = item[1].get("continent", "")
179
+ their_country = item[1].get("entity", "")
180
+ their_continent = item[1].get("continent", "")
181
181
 
182
- # If both are in North America
183
- if mycontinent == "NA" and continent == "NA":
182
+ # Different Continent
183
+ if my_continent != their_continent:
184
184
  if band in [28, 21, 14]:
185
- return 2
186
- return 4
185
+ return 3
186
+ return 6
187
187
 
188
- # Not NA, Both in same country
189
- if mycountry.upper() == entity.upper():
188
+ # Both in same country
189
+ if my_country.upper() == their_country.upper():
190
190
  return 1
191
191
 
192
- # Same Continent
193
- if mycontinent == continent:
192
+ # Below Same Continent Different Country
193
+
194
+ # If in North America
195
+ if my_continent == "NA":
196
+ if band in [28, 21, 14]:
197
+ return 2
198
+ return 4
199
+
200
+ # Non NA
201
+ if my_continent != "NA":
194
202
  if band in [28, 21, 14]:
195
203
  return 1
196
204
  return 2
197
-
198
- # Different Continent
199
- if band in [28, 21, 14]:
200
- return 3
201
- return 6
205
+ # Something wrong
202
206
  return 0
203
207
 
204
208
 
@@ -414,6 +418,8 @@ def recalculate_mults(self):
414
418
  """Recalculates multipliers after change in logged qso."""
415
419
  all_contacts = self.database.fetch_all_contacts_asc()
416
420
  for contact in all_contacts:
421
+ self.contact = contact
422
+ contact["Points"] = points(self)
417
423
  time_stamp = contact.get("TS", "")
418
424
  wpx = contact.get("WPXPrefix", "")
419
425
  result = self.database.fetch_wpx_exists_before_me(wpx, time_stamp)
@@ -122,9 +122,9 @@ def predupe(self): # pylint: disable=unused-argument
122
122
  def prefill(self):
123
123
  """Fill SentNR"""
124
124
  result = self.database.get_serial()
125
- serial_nr = str(result.get("serial_nr", "1"))
125
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
126
126
  if serial_nr == "None":
127
- serial_nr = "1"
127
+ serial_nr = "001"
128
128
  field = self.field3.findChild(QtWidgets.QLineEdit)
129
129
  if len(field.text()) == 0:
130
130
  field.setText(serial_nr)
@@ -135,35 +135,39 @@ def points(self):
135
135
  result = self.cty_lookup(self.station.get("Call", ""))
136
136
  if result:
137
137
  for item in result.items():
138
- mycountry = item[1].get("entity", "")
139
- mycontinent = item[1].get("continent", "")
138
+ my_country = item[1].get("entity", "")
139
+ my_continent = item[1].get("continent", "")
140
140
  result = self.cty_lookup(self.contact.get("Call", ""))
141
141
  band = int(int(float(self.contact.get("Freq", 0))) / 1000)
142
142
  if result:
143
143
  for item in result.items():
144
- entity = item[1].get("entity", "")
145
- continent = item[1].get("continent", "")
144
+ their_country = item[1].get("entity", "")
145
+ their_continent = item[1].get("continent", "")
146
146
 
147
- # If both are in North America
148
- if mycontinent == "NA" and continent == "NA":
147
+ # Different Continent
148
+ if my_continent != their_continent:
149
149
  if band in [28, 21, 14]:
150
- return 2
151
- return 4
150
+ return 3
151
+ return 6
152
152
 
153
- # Not NA, Both in same country
154
- if mycountry.upper() == entity.upper():
153
+ # Both in same country
154
+ if my_country.upper() == their_country.upper():
155
155
  return 1
156
156
 
157
- # Same Continent
158
- if mycontinent == continent:
157
+ # Below Same Continent Different Country
158
+
159
+ # If in North America
160
+ if my_continent == "NA":
161
+ if band in [28, 21, 14]:
162
+ return 2
163
+ return 4
164
+
165
+ # Non NA
166
+ if my_continent != "NA":
159
167
  if band in [28, 21, 14]:
160
168
  return 1
161
169
  return 2
162
-
163
- # Different Continent
164
- if band in [28, 21, 14]:
165
- return 3
166
- return 6
170
+ # Something wrong
167
171
  return 0
168
172
 
169
173
 
@@ -138,9 +138,9 @@ def predupe(self): # pylint: disable=unused-argument
138
138
  def prefill(self):
139
139
  """Fill SentNR"""
140
140
  result = self.database.get_serial()
141
- serial_nr = str(result.get("serial_nr", "1"))
141
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
142
142
  if serial_nr == "None":
143
- serial_nr = "1"
143
+ serial_nr = "001"
144
144
  field = self.sent
145
145
  if len(field.text()) == 0:
146
146
  field.setText(serial_nr)
not1mm/plugins/jidx_cw.py CHANGED
@@ -152,9 +152,9 @@ def prefill(self):
152
152
  SentExchange = self.contest_settings.get("SentExchange", "")
153
153
  if "#" in SentExchange:
154
154
  result = self.database.get_serial()
155
- serial_nr = str(result.get("serial_nr", "1"))
155
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
156
156
  if serial_nr == "None":
157
- serial_nr = "1"
157
+ serial_nr = "001"
158
158
  SentExchange.replace("#", str(serial_nr))
159
159
 
160
160
  field = self.field3.findChild(QtWidgets.QLineEdit)
not1mm/plugins/jidx_ph.py CHANGED
@@ -123,9 +123,9 @@ def prefill(self):
123
123
  SentExchange = self.contest_settings.get("SentExchange", "")
124
124
  if "#" in SentExchange:
125
125
  result = self.database.get_serial()
126
- serial_nr = str(result.get("serial_nr", "1"))
126
+ serial_nr = str(result.get("serial_nr", "1")).zfill(3)
127
127
  if serial_nr == "None":
128
- serial_nr = "1"
128
+ serial_nr = "001"
129
129
  SentExchange.replace("#", str(serial_nr))
130
130
 
131
131
  field = self.field3.findChild(QtWidgets.QLineEdit)
@@ -0,0 +1,24 @@
1
+ """K1USN Slow Speed Test"""
2
+
3
+ # Geographic Focus: Worldwide
4
+ # Participation: Worldwide
5
+ # Mode: CW
6
+ # Bands: 160, 80, 40, 20, 15, 10m
7
+ # Classes: Single Op (QRP/Low/High)
8
+ # Max power: HP: >100 watts
9
+ # LP: 100 watts
10
+ # QRP: 5 watts
11
+ # Exchange: Maximum 20 wpm
12
+ # Name + (state/province/country)
13
+ # Work stations: Once per band
14
+ # QSO Points: 1 point per QSO (starting with Jan 4 contest)
15
+ # Multipliers: Each state/province/country once per band
16
+ # W/VE do not count as country mults (starting with Jan 4 contest)
17
+ # Score Calculation: Total score = total QSO points x total mults
18
+ # Submit logs by: 2359Z May 26, 2024
19
+ # Post log summary at: http://www.3830scores.com
20
+ # Mail logs to: (none)
21
+ # Find rules at: http://www.k1usn.com/sst.html
22
+
23
+ import datetime
24
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: not1mm
3
- Version: 24.5.10
3
+ Version: 24.6.1
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
@@ -59,6 +59,7 @@ Requires-Dist: Levenshtein
59
59
  - [Ubuntu 24.04 LTS](#ubuntu-2404-lts)
60
60
  - [Fedora 38 \& 39](#fedora-38--39)
61
61
  - [Fedora 40](#fedora-40)
62
+ - [Manjaro](#manjaro)
62
63
  - [Python, PyPI, pip and pipx](#python-pypi-pip-and-pipx)
63
64
  - [Bootstrapping pipx](#bootstrapping-pipx)
64
65
  - [Installing with pipx](#installing-with-pipx)
@@ -181,9 +182,7 @@ I wish to thank those who've contributed to the project.
181
182
 
182
183
  ## Recent Changes
183
184
 
184
- - [24-5-10] Add sanity check for VFO freq.
185
- - [24-5-9] Add ICWC MST.
186
- - [24-5-1] Moved the voice keying into it's own thread.
185
+ - [24-6-1] Added leading zeros to S/N's less than 100.
187
186
 
188
187
  See [CHANGELOG.md](CHANGELOG.md) for prior changes.
189
188
 
@@ -264,6 +263,18 @@ sudo dnf install python3-pip python3-pyqt6 portaudio
264
263
  pip install not1mm
265
264
  ```
266
265
 
266
+ </details>
267
+
268
+ <details>
269
+
270
+ <summary><b>Manjaro</b></summary>
271
+
272
+ #### Manjaro
273
+
274
+ ```bash
275
+ pamac build not1mm-git
276
+ ```
277
+
267
278
  </details>
268
279
  <br>
269
280
 
@@ -1,5 +1,5 @@
1
1
  not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- not1mm/__main__.py,sha256=CtRVGZkQAZfIPsm73V3qrE7Ms42GugEJU4h_trp42XQ,120468
2
+ not1mm/__main__.py,sha256=_TKcKM99SBbp_ut6Q8gjMHaDMOmHbN7i7fxFkTxQ4WE,120468
3
3
  not1mm/bandmap.py,sha256=Ml5DDoybk_I56q2WLYDKE4lfmh6pb9XxW0qpl5nDFYY,32161
4
4
  not1mm/checkwindow.py,sha256=zHxkCQ4BJ-pN80dSTQdiKq8RqY4oWzJveXZhQ2bu3PY,10436
5
5
  not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
@@ -9,7 +9,7 @@ not1mm/radio.py,sha256=eiB04LPMPBeMrBRI021Z7VXth66EOYb0Ujh11T9877c,3362
9
9
  not1mm/vfo.py,sha256=FVuRjA8LCLkt8pZ3enBuCcxLJchb1ysvaMnX0txrZSs,12038
10
10
  not1mm/voice_keying.py,sha256=fkexCCwWcZsXxYVAk0QGcpGbLjbS10ToxWtdKihIVM4,3152
11
11
  not1mm/data/JetBrainsMono-Regular.ttf,sha256=UOHctAKY_PzCGh7zy-6f6egnCcSK0wzmF0csBqO9lDY,203952
12
- not1mm/data/MASTER.SCP,sha256=1vQRvEZ865brfmmajp-Lj-hgWejVGI992q8o971bUV8,366478
12
+ not1mm/data/MASTER.SCP,sha256=ejgeLdjeOQ6kZxLNGIDwbdus8vhJxsg-K1tgo19U2Mo,362528
13
13
  not1mm/data/about.ui,sha256=7TqvtXFFm0Rmcu0bmLupwpO1CsK8MekfZ09_xn6kZrQ,2067
14
14
  not1mm/data/alpha bravo charlie delta.txt,sha256=d5QMmSWEUAe4Rj1XbNjTPLa_5Be4Se6u5LUIqAYidOQ,224
15
15
  not1mm/data/bandmap.ui,sha256=NqVoAGyuf_Rsts_FnL0pYEtE08DJb6qm4KAQ_T01bM8,7125
@@ -17,7 +17,7 @@ not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
17
17
  not1mm/data/checkwindow.ui,sha256=aILeaBJB5Xium-JIFiJ39VEoGH6TIpK0lHVa2RcfeaQ,4614
18
18
  not1mm/data/configuration.ui,sha256=fRdyDusgQdUl76XC__RHwpkOlOERmnGFQ3DMCgkxh8U,51672
19
19
  not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
20
- not1mm/data/cty.json,sha256=xnLK-kNB5phKPef7R7PJZcSGGHegZ1AH2xw9ZWJwccM,4790698
20
+ not1mm/data/cty.json,sha256=TJUQGzjV1LFzza7co7_Y0U-R1mtYgfF8_Jp36Z_IuvM,4831946
21
21
  not1mm/data/cwmacros.txt,sha256=PvJ7TxGILq-ErHb6Gbrm-08x76BbCdXb8AY8a7st5mg,451
22
22
  not1mm/data/donors.html,sha256=8hNzO3Q5a6p-_3egT1hfOjimPf810tKMUM5ukLzUsGM,116
23
23
  not1mm/data/editcontact.ui,sha256=ax-pm4TeECpHl3LSb5z4L403WjPWXZ9KV2it_6gIjqk,27404
@@ -29,7 +29,7 @@ not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcC
29
29
  not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N90,2925
30
30
  not1mm/data/logwindow.ui,sha256=vfkNdzJgFs3tTOBKLDavF2zVMvNHWOZ82fAErRi6pQY,1436
31
31
  not1mm/data/logwindowx.ui,sha256=9FzDJtLRpagvAWcDjFdB9NnvNZ4bVxdTNHy1Jit2ido,1610
32
- not1mm/data/main.ui,sha256=wtfBeYdgv0VYuwlXx6WlKbKkrML_zeiSx79866Wi6cM,54585
32
+ not1mm/data/main.ui,sha256=bA4vHNtjus1k9c7wBkivevEUAoI7KMhlJuXvew73PWc,55090
33
33
  not1mm/data/new_contest.ui,sha256=qP4v6el5mZrIuHUcIZXDkNviuGJk09ZtnpwpgxzQ6TY,21928
34
34
  not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
35
35
  not1mm/data/opon.ui,sha256=mC4OhoVIfR1H9IqHAKXliPMm8VOVmxSEadpsFQ7XnS4,2247
@@ -109,44 +109,45 @@ not1mm/lib/plugin_common.py,sha256=AAKBPCXzTWZJb-h08uPNnHVG7bSCg7kwukc211gFivY,8
109
109
  not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
110
110
  not1mm/lib/settings.py,sha256=MWiKXbasaFbzeHTjfzTaTqbCBrIijudP_-0a5jNmUAA,9265
111
111
  not1mm/lib/super_check_partial.py,sha256=p5l3u2ZOCBtlWgbvskC50FpuoaIpR07tfC6zTdRWbh4,2334
112
- not1mm/lib/version.py,sha256=HLXusGD6xpUWJCM4fkD1S_BRmrYhgIXcBT2ETZm_rhY,48
112
+ not1mm/lib/version.py,sha256=xUaNiiiMWmHQIv0eFOoUZ3KpJTW_GxDDro26y3eIaAQ,47
113
113
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
114
114
  not1mm/plugins/10_10_fall_cw.py,sha256=IttjX1yy4nDdACGsiYlPteFG8eVseX_WtoFio6bqHE8,10953
115
115
  not1mm/plugins/10_10_spring_cw.py,sha256=ThCptdM3dX4ywhoy2JRcOEyHSqcJolFaT7O_PYzM1Mg,10958
116
116
  not1mm/plugins/10_10_summer_phone.py,sha256=VJTCD2JikpzVTEYG6naK_n6cGQXgxVHvLV7pmYt1hq0,10967
117
117
  not1mm/plugins/10_10_winter_phone.py,sha256=kFz4DRU850_dhHIQAhrVfGfQ8c59Rkcdurq4mk3XBQY,10970
118
118
  not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
- not1mm/plugins/arrl_10m.py,sha256=IGJyRQgDXsXuxBzJJpiWsKYFBdwyV1pAy9R8c6S8lDY,13757
119
+ not1mm/plugins/arrl_10m.py,sha256=EyNRb3Sm0Qb-GVm0p05EnadlHisVh7y-sKTBP2ddMLo,13768
120
120
  not1mm/plugins/arrl_dx_cw.py,sha256=LVnYDNFEUiIpQ1TlhOCcRK7JNwH5XPO5WzUoApSUMTY,13802
121
121
  not1mm/plugins/arrl_dx_ssb.py,sha256=fUFzuNbCAfA5sQSYm8ISV3P9Z_2xnuKeOdO6E66zn1k,13805
122
122
  not1mm/plugins/arrl_field_day.py,sha256=OSro24LsSVW41yecKziWQMjflJbo62P8C53Q3M3-Lb0,10052
123
123
  not1mm/plugins/arrl_rtty_ru.py,sha256=hKUS4isjdXo3EYxQrsqsDupPp2chW8fpoWj0T1pTgJ4,7994
124
- not1mm/plugins/arrl_ss_cw.py,sha256=pBBoUozHfgcAR6Xy-FBYYZrDSSdK8YVclNZIiCn23ho,13069
125
- not1mm/plugins/arrl_ss_phone.py,sha256=BNcE4zfhK1LphKbI2tT_NJye8tIA_rb3QtxINERSIpE,13057
126
- not1mm/plugins/arrl_vhf_jan.py,sha256=tC5FyMQNqKNVI8V3r1p71wJvvUNQ0XPXVvxEj4cMyio,12561
127
- not1mm/plugins/arrl_vhf_jun.py,sha256=F4eHxuxH-8GM7kuTWvYXeKtx-M0KC_U3T_4Fm3u4h5s,11580
128
- not1mm/plugins/arrl_vhf_sep.py,sha256=AEKCxDk3UhUWDGT1rNmJ2dk94ihXQ8jexkemkx9N-xQ,11580
129
- not1mm/plugins/canada_day.py,sha256=dZWmwbdjO4CUSu_cK6FAZxII0DhaEMji_mmrpMO5wjo,11987
124
+ not1mm/plugins/arrl_ss_cw.py,sha256=4yN68xZMuJRaSUfdiY4hafC07A3lifl5q6DEUZ-oYPQ,13080
125
+ not1mm/plugins/arrl_ss_phone.py,sha256=Yzc5sNjrY8TlnozbYF6k8hbEamyDuUAD_3-BNqHgXqY,13068
126
+ not1mm/plugins/arrl_vhf_jan.py,sha256=jkX9v2HHsjoawtTKiy8X0Td_HtfGQVT3MapJwpmM1qA,12572
127
+ not1mm/plugins/arrl_vhf_jun.py,sha256=_9h6joxVCRCoFuNnyTOlnonafvrMv7H0eBERhYCoGug,11591
128
+ not1mm/plugins/arrl_vhf_sep.py,sha256=XbS1OSAfGaYXFaTAP2HRyVvVeRD_Z6cefPc1_mOLJKw,11591
129
+ not1mm/plugins/canada_day.py,sha256=OVpcCl1Chse_zLHf6PayTrgawWM4W-pmrTw40Al-o9s,11998
130
130
  not1mm/plugins/cq_160_cw.py,sha256=e9ajqIzDRteSI7zQaFpXUJ_6SNvBlIuNq213wadReUs,14139
131
131
  not1mm/plugins/cq_160_ssb.py,sha256=7MuMC_AVlj9ds_ohvEU4Tts-z9eTvnsSIENSMFKQCBc,14182
132
- not1mm/plugins/cq_wpx_cw.py,sha256=GW_nr3ISErqMDgwA5pybxgpnSANaZaAwJOp_KTQPRP4,13845
133
- not1mm/plugins/cq_wpx_ssb.py,sha256=Ptx4GDXgnM9c38fB9LN2KSPVfnSVB2-OFySsHqxHHyw,12567
132
+ not1mm/plugins/cq_wpx_cw.py,sha256=9aNzAR-KhznIwUlxUFjAi_hbiw_6RrCMwUBk9I2f6Hs,14037
133
+ not1mm/plugins/cq_wpx_ssb.py,sha256=-hGRovqHR9rfOUnG4LPOoABTb4heH8VAX6rYdJbCqsw,12687
134
134
  not1mm/plugins/cq_ww_cw.py,sha256=ltXFnSXabCOuW70s-WOydgghZTNpztX8TKLpVIV50B4,11194
135
135
  not1mm/plugins/cq_ww_ssb.py,sha256=kt-EQofmCbynX1iXFm9ehffi_TMW25ke8Qi9MiR69ZQ,11199
136
136
  not1mm/plugins/cwt.py,sha256=4xdXN6ZJM5k-6gn0hJzNheWfFlGiqquC2p0ZMEe516M,12818
137
137
  not1mm/plugins/general_logging.py,sha256=t02xtJs601qRICGdrvLs3G9y4GCG9H4AgQNkgA18CYs,3467
138
138
  not1mm/plugins/iaru_hf.py,sha256=-ROUo2gBkw3xB89t8bd-4f7_1hROw2VXZXVHLFdB62s,11541
139
- not1mm/plugins/icwc_mst.py,sha256=v8L5NX2QmTM7x8Po1mb4yfN-dGVIuqky5MIT-OjfaVY,11831
140
- not1mm/plugins/jidx_cw.py,sha256=-cHhOFDy6lojD8cPaE6bYxrHmQ-x27QL3rh91YGZfbU,12142
141
- not1mm/plugins/jidx_ph.py,sha256=xKIYbs27uploZ5srUvsVHHskcV6-fLkGEsSJ0i-rky4,11172
139
+ not1mm/plugins/icwc_mst.py,sha256=BaUP2kzrT2D27un_WLGT4HCTTi1e7CNYC4NHcC_9r74,11842
140
+ not1mm/plugins/jidx_cw.py,sha256=9oV4hDxMiGXa9wuYUNYOCsr-mz8LYB-4WMHBN8u2dFk,12153
141
+ not1mm/plugins/jidx_ph.py,sha256=T-V7-77SIwu-Jl55VIrbVFZlsBoc97mXtgbdde0GaiQ,11183
142
+ not1mm/plugins/k1usn_sst.py,sha256=odFgK1cwT2CKC1w64LKrBDSAflb-Ak2-MTL9LzmHHIM,742
142
143
  not1mm/plugins/naqp_cw.py,sha256=c0MuKqfkIxiYFvv2z7vqrBz3m9FSnSYkPK3f-DdkTIA,12632
143
144
  not1mm/plugins/naqp_ssb.py,sha256=VLWVrSzI0UP1AhSXYn61eZ7or1rz6a_pS_xCKfgS4Jw,11595
144
145
  not1mm/plugins/phone_weekly_test.py,sha256=gCX0ESUoiQzDp9puwibt9-dRembNsiuEeBdawCVvjHA,12316
145
146
  not1mm/plugins/stew_perry_topband.py,sha256=CKBQbYl4ETxhXJd2dma4fg_C5pag_s7Nf61SCztZtqE,10668
146
147
  not1mm/plugins/winter_field_day.py,sha256=4rcfRtobwjHO6BNL3WOTHzBmyyeuX79BNGBG8PfjrI8,10238
147
- not1mm-24.5.10.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
148
- not1mm-24.5.10.dist-info/METADATA,sha256=YnhnHHFjm8QfmYue8rUl7tyXKKkK1suxJsT3CIDjLs8,27252
149
- not1mm-24.5.10.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
150
- not1mm-24.5.10.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
151
- not1mm-24.5.10.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
152
- not1mm-24.5.10.dist-info/RECORD,,
148
+ not1mm-24.6.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
149
+ not1mm-24.6.1.dist-info/METADATA,sha256=QeRmlzKcGeu8XQRocz8TD0HN5TZAXHjdYePXEt7Oqr4,27319
150
+ not1mm-24.6.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
151
+ not1mm-24.6.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
152
+ not1mm-24.6.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
153
+ not1mm-24.6.1.dist-info/RECORD,,