summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-07-22Update changelog regarding dropped OS versionsHEADmasterFlorian Bruhin
See #7092, #6050
2023-07-22Update changelogFlorian Bruhin
2023-07-22Merge remote-tracking branch 'origin/pr/7768'Florian Bruhin
2023-07-22quitter: fix prompt_queue being None at shudownPaul Mairo
When pressing C-c if qutebrowser is not fully started yet, the prompt_queue is not initialized and prompts for an annoying crash report. Fixes #6827
2023-07-22Merge branch 'master' of https://github.com/rmpr/qutebrowserFlorian Bruhin
2023-07-22fixup! fixup! mkvenv: Fix '--pyqt-type link' without --pyqt-versionPaul Mairo
I broke it oops
2023-07-22fixup! mkvenv: Fix '--pyqt-type link' without --pyqt-versionPaul Mairo
2023-07-22mkvenv: Fix '--pyqt-type link' without --pyqt-versionPaul Mairo
This is a follow-up of #7770 which was an attempt to fix the script broken in 9212ba9. Before flipping the QT6 switch.
2023-07-22Fix Qt 5 warning opening alwaysFlorian Bruhin
The stray comma made it a tuple (False,) which was always True.
2023-07-22Merge remote-tracking branch 'origin/pr/7789'Florian Bruhin
2023-07-22Create a workaround to install PyQT 6.5.2 until releasePaul Mairo
Right now the version of PyQT available on PyPI is 6.5.1 and it's buggy with Qutebrowser, this is a quick hack to get it working until it's released early next week.
2023-07-21Merge pull request #7772 from pylbrecht/logfilterFlorian Bruhin
Don't crash on --logfilter at startup
2023-07-21Initialize logging as early as possiblePhilipp Albrecht
Now that `qutebrowser.utils.log` is a Qt-free zone, we can initialize logging before `machinery.init()` without crashing.
2023-07-21Add note on keeping qutebrowser.utils.log a Qt-free zonePhilipp Albrecht
2023-07-20Log machinery info in machinery.init()Philipp Albrecht
Now that we moved all Qt related things out of `qutebrowser.utils.log` we can import `qutebrowser.utils.log` in `qutebrowser.qt.machinery`, and therefore move the machinery log where it belongs.
2023-07-20Move qt logger from qtlog to logPhilipp Albrecht
This resolves a temporary workaround for a circular import. Now that we fully separated `qutebrowser.utils.log` and `qutebrowser.utils.qtlog`, we can go back to keeping all logger definitions in the same place.
2023-07-20Don't crash on --logfilterPhilipp Albrecht
2023-07-20Move hide_qt_warning() to qtlogPhilipp Albrecht
Just to keep related things together.
2023-07-20Move qt_message_handler() to qtlogPhilipp Albrecht
I had to create `qtlog.init()` to deal with the global variable `_args`.
2023-07-20Move disable_qt_msghandler() to qtlogPhilipp Albrecht
2023-07-20Move shutdown_log() to qtlogPhilipp Albrecht
2023-07-20Add qtlog modulePhilipp Albrecht
2023-07-20Merge pull request #7785 from qutebrowser/update-dependenciesFlorian Bruhin
Update dependencies
2023-07-20tox: Update VIRTUALENV_PIPFlorian Bruhin
2023-07-20Update dependenciesqutebrowser bot
2023-07-20Fix lintFlorian Bruhin
2023-07-19Improve handling of Optional with new PyQt stubsFlorian Bruhin
2023-07-19Initial upgrade to new PyQt6 stubsFlorian Bruhin
2023-07-13Include qutebrowser *and* qutebrowser.*Philipp Albrecht
2023-07-13Use explicit includePhilipp Albrecht
2023-07-13Map qutebrowser package to qutebrowser dirPhilipp Albrecht
2023-07-13Specify qutebrowser package via where=Philipp Albrecht
2023-07-13mypy: Remvoe some more type ignoresFlorian Bruhin
Fixed in latest PyQt snapshots
2023-07-12Include namespace packages in setuptools buildPhilipp Albrecht
Building qutebrowser showed some warnings as the following: ``` /tmp/build-env-4jb2oh0t/lib/python3.8/site-packages/setuptools/command/build_py.py:201: _Warning: Package 'qutebrowser.html' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'qutebrowser.html' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'qutebrowser.html' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'qutebrowser.html' to be distributed and are already explicitly excluding 'qutebrowser.html' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! ``` Using `find_namespace_packages()` as suggested in the setuptools docs[1] solved the issue. [1] https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#finding-namespace-packages
2023-07-10Merge pull request #7764 from pylbrecht:search-vanishedFlorian Bruhin
Don't show warning when jumping to next/prev search result without matches
2023-07-10Fix lint after dropping PyQt6-stubsFlorian Bruhin
2023-07-10Update changelog URLsFlorian Bruhin
2023-07-10Merge remote-tracking branch 'origin/update-dependencies'Florian Bruhin
2023-07-10Update dependenciesqutebrowser bot
2023-07-09mypy: Switch to upstream stubs for PyQt6Florian Bruhin
They are getting much better
2023-07-05Add aria-haspopup to hint selectorsFlorian Bruhin
Helps on https://www.keepersecurity.com/ - see https://www.reddit.com/r/qutebrowser/comments/14qtlc8/no_hint_on_drop_down_list/
2023-07-05Merge pull request #7766 from arza-zara/toxFlorian Bruhin
tox: Fix vulture-pyqtlink environment
2023-07-05tox: Fix vulture-pyqtlink environmentarza
2023-07-05Don't show warning when jumping to next/prev without matchesPhilipp Albrecht
2023-07-03ci: Keep WebKit on life support for longerFlorian Bruhin
2023-07-03Merge pull request #7763 from qutebrowser/update-dependenciestoofar
Update dependencies
2023-07-03Add exceptiongroup changelogtoofar
Ref #7763
2023-07-03Update dependenciesqutebrowser bot
2023-06-30Fix lint/test issuesqt6-autoselectFlorian Bruhin
2023-06-30tox: Inherit setenv instead of duplicatingFlorian Bruhin