Fix compatibility issues with Qt/PyQt6 versions
Some checks failed
build / build-win64 (push) Waiting to run
build / build-macos (push) Waiting to run
build / build-pip (push) Failing after 11s

- Add null check for message.message in search filter
- Handle missing colorScheme/colorSchemeChanged methods for older Qt versions
- Add display check to prevent hanging in headless environments
- Update build documentation with system package alternative
- Update PyInstaller spec for Python 3.12
- Improve run.sh script with venv management
This commit is contained in:
kdusek
2025-12-06 04:00:10 +01:00
parent 2b3d9eb07f
commit 7b695d7b7f
11 changed files with 64 additions and 14 deletions

View File

@@ -65,7 +65,7 @@ class MessagesProxyModel(QtCore.QSortFilterProxyModel):
return False
if self.text_filter:
title = (message.title or "").lower()
msg = message.message.lower()
msg = (message.message or "").lower()
if self.text_filter not in title and self.text_filter not in msg:
return False
return True