Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions aw_qt/trayicon.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ def check_module_status() -> None:
# TODO: Do it in a better way, singleShot isn't pretty...
QtCore.QTimer.singleShot(2000, rebuild_modules_menu)

# TODO: Do it in a better way, singleShot isn't pretty...
QtCore.QTimer.singleShot(1000*60*5, check_module_status)
Comment thread
RTnhN marked this conversation as resolved.
Outdated

QtCore.QTimer.singleShot(2000, check_module_status)

def _build_modulemenu(self, moduleMenu: QMenu) -> None:
Expand Down
134 changes: 54 additions & 80 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ packages = [
aw-qt = "aw_qt:main"

[tool.poetry.dependencies]
python = "^3.8,<3.14" # PyInstaller needs <3.14
python = "^3.9,<3.14" # PyInstaller needs <3.14
aw-core = "^0.5"

pyobjc-framework-Cocoa = { version = "*", platform = "darwin" }
Expand All @@ -28,8 +28,8 @@ setuptools = "*"

[tool.poetry.group.pyqt.dependencies]
# keep these in sync
PyQt6 = "6.5.3"
PyQt6-Qt6 = "6.5.3"
PyQt6 = "6.8.1"
PyQt6-Qt6 = "6.8.1"

[tool.poetry.dev-dependencies]
mypy = "*"
Expand All @@ -39,7 +39,7 @@ pyinstaller = ">=6.6"
types-click = "*"

[tool.mypy]
python_version = 3.8
python_version = 3.9
ignore_missing_imports = true

[[tool.mypy.overrides]]
Expand Down