not1mm 24.3.27__py3-none-any.whl → 24.4.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/checkwindow.py CHANGED
@@ -13,7 +13,6 @@ from json import loads
13
13
 
14
14
  from PyQt5 import QtGui, uic
15
15
  from PyQt5.QtCore import Qt
16
- from PyQt5.QtWidgets import QListWidgetItem
17
16
  from PyQt5.QtWidgets import QWidget
18
17
 
19
18
  import not1mm.fsutils as fsutils
@@ -201,9 +200,8 @@ class CheckWindow(QWidget):
201
200
  for item in results:
202
201
  if "#" in item:
203
202
  continue
204
- listItem = QListWidgetItem(item)
205
- self.masterList.addItem(listItem)
206
- self.masterList.show()
203
+ self.masterList.addItem(item)
204
+ self.masterList.show()
207
205
 
208
206
  def log_list(self, call: str) -> None:
209
207
  """
@@ -221,10 +219,8 @@ class CheckWindow(QWidget):
221
219
  self.logList.clear()
222
220
  if call:
223
221
  result = self.database.get_like_calls_and_bands(call)
224
- for calls in result:
225
- listItem = QListWidgetItem(calls)
226
- self.logList.addItem(listItem)
227
- self.logList.show()
222
+ self.logList.addItems(result)
223
+ self.logList.show()
228
224
 
229
225
  def telnet_list(self, spots: list) -> None:
230
226
  """
@@ -243,6 +239,5 @@ class CheckWindow(QWidget):
243
239
  if spots:
244
240
  for calls in spots:
245
241
  call = calls.get("callsign", "")
246
- listItem = QListWidgetItem(call)
247
- self.telnetList.addItem(listItem)
248
- self.telnetList.show()
242
+ self.telnetList.addItem(call)
243
+ self.telnetList.show()
not1mm/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "24.3.27"
3
+ __version__ = "24.4.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: not1mm
3
- Version: 24.3.27
3
+ Version: 24.4.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
@@ -48,20 +48,20 @@ The worlds #1 unfinished contest logger <sup>*According to my daughter Corinna.<
48
48
  - [Our Code Contributors ✨](#our-code-contributors-)
49
49
  - [List of should be working contests](#list-of-should-be-working-contests)
50
50
  - [Recent Changes](#recent-changes)
51
+ - [Flatpak](#flatpak)
51
52
  - [Installation](#installation)
52
53
  - [Prerequisites](#prerequisites)
53
- - [Common recipes for Ubuntu and Fedora](#common-recipes-for-ubuntu-and-fedora)
54
+ - [Common installation recipes for Ubuntu and Fedora](#common-installation-recipes-for-ubuntu-and-fedora)
54
55
  - [Ubuntu 22.04 LTS](#ubuntu-2204-lts)
55
56
  - [Ubuntu 23.04](#ubuntu-2304)
56
57
  - [Fedora 38 \& 39](#fedora-38--39)
57
58
  - [Python, PyPI, pip and pipx](#python-pypi-pip-and-pipx)
58
- - [Bootstrapping pipx](#bootstrapping-pipx)
59
- - [Installing with pipx](#installing-with-pipx)
59
+ - [Bootstrapping pipx](#bootstrapping-pipx)
60
+ - [Installing with pipx](#installing-with-pipx)
60
61
  - [After the install](#after-the-install)
61
62
  - [You may or may not get a warning message like](#you-may-or-may-not-get-a-warning-message-like)
62
63
  - [Or this fan favorite](#or-this-fan-favorite)
63
- - [Running from source](#running-from-source)
64
- - [Wayland Compositor](#wayland-compositor)
64
+ - [Installing from GitHub source](#installing-from-github-source)
65
65
  - [Various data file locations](#various-data-file-locations)
66
66
  - [Data](#data)
67
67
  - [Config](#config)
@@ -90,25 +90,22 @@ The worlds #1 unfinished contest logger <sup>*According to my daughter Corinna.<
90
90
  - [Macro use with voice](#macro-use-with-voice)
91
91
  - [cty.dat and QRZ lookups for distance and bearing](#ctydat-and-qrz-lookups-for-distance-and-bearing)
92
92
  - [Other uses for the call field](#other-uses-for-the-call-field)
93
- - [Windows](#windows)
93
+ - [The Windows](#the-windows)
94
94
  - [The Main Window](#the-main-window)
95
- - [Keyboard commands](#keyboard-commands)
96
- - [Log Display](#log-display)
95
+ - [Keyboard commands](#keyboard-commands)
96
+ - [The Log Window](#the-log-window)
97
97
  - [Editing a contact](#editing-a-contact)
98
- - [Recalulate Mults](#recalulate-mults)
99
- - [Bandmap](#bandmap)
100
- - [Check Window](#check-window)
101
- - [Remote VFO](#remote-vfo)
98
+ - [The Bandmap Window](#the-bandmap-window)
99
+ - [The Check Window](#the-check-window)
100
+ - [The Remote VFO Window](#the-remote-vfo-window)
102
101
  - [Cabrillo](#cabrillo)
103
102
  - [ADIF](#adif)
104
- - [Dupe checking](#dupe-checking)
103
+ - [Recalulate Mults](#recalulate-mults)
105
104
  - [Contest specific notes](#contest-specific-notes)
106
105
  - [ARRL Sweekstakes](#arrl-sweekstakes)
107
106
  - [The exchange parser](#the-exchange-parser)
108
107
  - [The exchange](#the-exchange)
109
108
 
110
- [Visit the Wiki](https://github.com/mbridak/not1mm/wiki/Not1MM)
111
-
112
109
  ## What and why is Not1MM
113
110
 
114
111
  Not1MM's interface is a blatant ripoff of N1MM. It is NOT N1MM and any problem
@@ -179,24 +176,17 @@ I wish to thank those who've contributed to the project.
179
176
 
180
177
  ## Recent Changes
181
178
 
182
- - [24-3-27] Made items in the checkwindow clickable. Removed connection check in bandmap preventing marked calls from appearing.
183
- - [24-3-25-1] Dark mode sorted out. Atleast for me...
184
- - [24-3-25] Yanked version 24-3-24-1. Fixed widget focus issues.
185
- - [24-3-24-1] Killed an SQL query bug causing crash when pressing arrow down.
186
- - [24-3-24] Reworked fsutil.py to correct directory paths for Linux.
187
- - [24-3-23] Yanked version 24-3-21, too many bugs for existing userbase.
188
- - [24-3-21] Merged PR from @kyleboyle for docking windows. MacOS and Windows support.
189
- - [24-3-19] Removed some useless bloat causing slow interface on FreeBSD 13/14 and maybe others.
190
- - [24-3-16] Add Save/Fail confirmation dialogs when saving ADIF of Cabrillo files.
191
- - [24-3-15] Change 'CWR' to 'CW' in the ADIF output.
192
- - [24-3-13] Added CQ 160 CW and SSB
193
- - [24-3-9] Marked calls in the bandmap window colored Blue, until worked.
194
- - [24-3-7] Merged PR from @arodland for faster fuzzy SCP lookups.
195
- - [24-3-2-1] Added marking stations on the bandmap to work later with CTRL-M.
196
- - [24-3-2] Merged PR from @arodland for fuzzy SCP lookup.
179
+ - [24-4-1] Removed some un-needed loops and widgets from the check window.
197
180
 
198
181
  See [CHANGELOG.md](CHANGELOG.md) for prior changes.
199
182
 
183
+ ## Flatpak
184
+
185
+ I've tried for a couple days to get not1mm to build as a flatpak. I've failed.
186
+ It keeps failing at building numpy. If you happen to be a flatpak savant, please
187
+ feel free to look at com.github.mbridak.not1mm.yaml and python3-modules.yaml and
188
+ clue me into the black magic needed to get it to work.
189
+
200
190
  ## Installation
201
191
 
202
192
  ### Prerequisites
@@ -204,7 +194,10 @@ See [CHANGELOG.md](CHANGELOG.md) for prior changes.
204
194
  not1mm requires Python 3.9+, PyQt5 and libportaudio2. You should install these
205
195
  through your distribution's package manager before continuing.
206
196
 
207
- ### Common recipes for Ubuntu and Fedora
197
+ ### Common installation recipes for Ubuntu and Fedora
198
+
199
+ I've taken the time to install some common Linux distributions into a VM and
200
+ noted the minimum steps needed to install not1mm.
208
201
 
209
202
  #### Ubuntu 22.04 LTS
210
203
 
@@ -252,7 +245,7 @@ Linux distros will make you do this unless you include a command line argument
252
245
  akin to '--break-my-system' when using pip. I'm not telling you to use pipx.
253
246
  But... **Use pipx**.
254
247
 
255
- ### Bootstrapping pipx
248
+ #### Bootstrapping pipx
256
249
 
257
250
  Assuming you have only Python installed, your path to pipx is:
258
251
 
@@ -268,7 +261,7 @@ python3 -m pip install --user pipx
268
261
  python3 -m pipx ensurepath
269
262
  ```
270
263
 
271
- ### Installing with pipx
264
+ #### Installing with pipx
272
265
 
273
266
  Then installing not1mm is as simple as:
274
267
 
@@ -315,7 +308,7 @@ For a more permanent solution you can place the line
315
308
  `export QT_QPA_PLATFORM=wayland` in your home directories .bashrc file. Then
316
309
  after logging out and back in you should be able to launch it normally.
317
310
 
318
- ### Running from source
311
+ ### Installing from GitHub source
319
312
 
320
313
  Since this is packaged for PyPI, if you want to work on your own source branch,
321
314
  after cloning from github you would:
@@ -344,13 +337,6 @@ or be in some other directory and just type:
344
337
  not1mm
345
338
  ```
346
339
 
347
- ## Wayland Compositor
348
-
349
- One side effect of Wayland is that we are not able to request for a window to
350
- regain or retain focus. So if you were to click on a spot in the bandmap window
351
- to tune to that spot, you would have to then click on the main window to
352
- continue entering contest data. I'm aware of this, but I can not change it.
353
-
354
340
  ## Various data file locations
355
341
 
356
342
  ### Data
@@ -562,13 +548,13 @@ is this has happened, since the gridsquare will replace the word "Regional".
562
548
 
563
549
  **You must press the SPACE bar after entering any of the above.**
564
550
 
565
- ## Windows
551
+ ## The Windows
566
552
 
567
553
  ### The Main Window
568
554
 
569
555
  ![Main screen with callouts](https://github.com/mbridak/not1mm/raw/master/pic/mainwithcallouts.png)
570
556
 
571
- ### Keyboard commands
557
+ #### Keyboard commands
572
558
 
573
559
  | Key | Result |
574
560
  | -------------- | --- |
@@ -588,7 +574,7 @@ is this has happened, since the gridsquare will replace the word "Regional".
588
574
  | [CTRL-G] | Tune to a spot matching partial text in the callsign entry field (CAT Required). |
589
575
  | [CTRL-SHIFT-K] | Open CW text input field. |
590
576
 
591
- ### Log Display
577
+ ### The Log Window
592
578
 
593
579
  `Window`>`Log Window`
594
580
 
@@ -615,13 +601,7 @@ You can not directly edit the multiplier status of a contact. Instead see the
615
601
  next section on recalculating mults. If you change the callsign make sure the
616
602
  `WPX` field is still valid.
617
603
 
618
- ## Recalulate Mults
619
-
620
- After editing a contact and before generating a Cabrillo file. There is a Misc
621
- menu option that will recalculate the multipliers incase an edit had caused a
622
- change.
623
-
624
- ## Bandmap
604
+ ### The Bandmap Window
625
605
 
626
606
  `Window`>`Bandmap`
627
607
 
@@ -640,7 +620,7 @@ blue rectangle shows the receivers bandwidth if one is reported.
640
620
  Clicked on spots now tune the radio and set the callsign field. Previously
641
621
  worked calls are displayed in red.
642
622
 
643
- ## Check Window
623
+ ### The Check Window
644
624
 
645
625
  `Window`>`Check Window`
646
626
 
@@ -654,7 +634,7 @@ Clicking on any of these items will change the callsign field.
654
634
 
655
635
  ![Check Window](https://github.com/mbridak/not1mm/raw/master/pic/checkwindow.png)
656
636
 
657
- ## Remote VFO
637
+ ### The Remote VFO Window
658
638
 
659
639
  You can control the VFO on a remote rig by following the directions listed in
660
640
  the link below. It's a small hardware project with a BOM of under $20, and
@@ -690,9 +670,11 @@ Boom... ADIF
690
670
 
691
671
  `StationCall`\_`ContestName`\_`Date`\_`Time`.adi
692
672
 
693
- ## Dupe checking
673
+ ## Recalulate Mults
694
674
 
695
- Added dupe checking. Big Red 'Dupe' will appear if it's a dupe...
675
+ After editing a contact and before generating a Cabrillo file. There is a Misc
676
+ menu option that will recalculate the multipliers incase an edit had caused a
677
+ change.
696
678
 
697
679
  ## Contest specific notes
698
680
 
@@ -1,7 +1,7 @@
1
1
  not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  not1mm/__main__.py,sha256=GhgvGedPUhRoahp924Qi6fAwbenCmuJXiE5F5pyuRHg,118379
3
3
  not1mm/bandmap.py,sha256=a0QZj0HvPh8ixj207ANRHO29aKN3YMKolp_P47gSOtI,33404
4
- not1mm/checkwindow.py,sha256=TZbeX7IQCoKV8mKoB6HWUOZz6XxpDW7Vb3GvpDfehFs,7850
4
+ not1mm/checkwindow.py,sha256=fDCKpDQ3bO_g5M88qUKO6Xz-ZuMOxphUgZcUxRh69So,7604
5
5
  not1mm/fsutils.py,sha256=Li8Tq9K7c_q7onOHOQ7u1dOOFfhIIz5Aj2LKuQtGOO4,1652
6
6
  not1mm/logwindow.py,sha256=2uy3oduImH1QNz5tBBrevsk7iMoYCUOTO7ttf92zN5w,43830
7
7
  not1mm/vfo.py,sha256=ghtTmkhrug8YxYXUlJZOk7wN8jR8XNZKYTrcs4-E4rw,11530
@@ -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=IpjqBMjJNDsk2O3WzC_DpJzHa21DCNn_zNQC9cgEwlg,48
106
+ not1mm/lib/version.py,sha256=zyPYRGlb6qNTLHKshHMd9CAwvJzBXvKiaRdBpQav138,47
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
@@ -137,9 +137,9 @@ not1mm/plugins/naqp_ssb.py,sha256=pof1k6Eg_MDQXSaCOJLh1jfVyyIri0LdHYrZQu7P_gs,11
137
137
  not1mm/plugins/phone_weekly_test.py,sha256=EfLQzKREEXO_Ljg-q3VWg87JfbPVar9ydNhCdmHCrt8,12278
138
138
  not1mm/plugins/stew_perry_topband.py,sha256=bjcImkZhBXpw4XKogs85mpShz7QgYbVohvhFMQ050DI,10546
139
139
  not1mm/plugins/winter_field_day.py,sha256=7JK-RS1abcj1xQLnTF8rIPHRpDzmp4sAFBBML8b-Lwk,10212
140
- not1mm-24.3.27.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
141
- not1mm-24.3.27.dist-info/METADATA,sha256=9fH5dH0rYoyFXAwpZrm5xWOC9Y6HmprnJ5dAYBh4Z80,27117
142
- not1mm-24.3.27.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
143
- not1mm-24.3.27.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
144
- not1mm-24.3.27.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
145
- not1mm-24.3.27.dist-info/RECORD,,
140
+ not1mm-24.4.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
141
+ not1mm-24.4.1.dist-info/METADATA,sha256=a_dOeboBd2iCbbCsD6NFbGEV16tvyeIt2leV3jxC1-s,26175
142
+ not1mm-24.4.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
143
+ not1mm-24.4.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
144
+ not1mm-24.4.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
145
+ not1mm-24.4.1.dist-info/RECORD,,