Skip to content

Commit 72d0ec5

Browse files
committed
@mbridak flew too close to the sun...
1 parent c2902f4 commit 72d0ec5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
201201

202202
## Recent Changes (Polishing the Turd)
203203

204-
- [24-10-27-2] Allow BandMap, CheckWindow and LogWindow to undock from main window while using Wayland if PyQt6 version is at least 6.7.1
204+
- [24-10-27-2] Allow BandMap, CheckWindow and LogWindow to undock from main window while using Wayland if PyQt6 version is at least 6.7.2
205205
- [24-10-27-1] Fixed setting radios ssb mode when crossing 10M boundary.
206206
- [24-10-27] Fix bug where a contacts info could be carried over to new contact if no new value was written.
207207
- [24-10-26] Clear inputs when seeking to a call from the bandmap via the arrow up and down. Fixed bandmap crash from bad telnet data. Drop beacons from bandmap.

Diff for: not1mm/__main__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -598,10 +598,10 @@ def __init__(self, splash):
598598
if int(x[0]) > 6:
599599
old_Qt = False
600600
elif len(x) == 2:
601-
if int(x[0]) >= 6 and int(x[1]) > 7:
601+
if int(x[0]) >= 6 and int(x[1]) > 8:
602602
old_Qt = False
603603
elif len(x) == 3:
604-
if int(x[0]) >= 6 and int(x[1]) >= 7 and int(x[2]) >= 1:
604+
if int(x[0]) >= 6 and int(x[1]) >= 7 and int(x[2]) >= 2:
605605
old_Qt = False
606606

607607
# Featureset for wayland if pyqt is older that 6.7.1

0 commit comments

Comments
 (0)