summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2023-06-30qt6: Reduce duplicate misc_checks.py codeFlorian Bruhin
2023-06-30qt6: Make sure KeyInfo never has ints as membersFlorian Bruhin
This used to be possible in some situations and was handled in somewhat unexpected places (e.g. .to_qt()). Instead, we now assume that KeyInfo is always "clean", and we handle the conversion from an int to a Qt.Key elsewhere. This only seems to affect tests, since otherwise we already made sure we get a Qt.Key and Qt.KeyboardModifier(s) e.g. in .from_event().
2023-06-30qt6: Update selection commentFlorian Bruhin
2023-06-30scripts: Upgrade to Qt 6Florian Bruhin
Using qutebrowser.qt where we import from qutebrowser already anyways
2023-06-30Update userscripts to PyQt6Florian Bruhin
2023-06-30qt 6: Document purpose of wrappersFlorian Bruhin
2023-06-30qt6: Keep pylint import order checks disabledFlorian Bruhin
2023-06-30qt6: Widen env auto testsFlorian Bruhin
2023-06-30Update vultureFlorian Bruhin
2023-06-30ci: Fix issuesFlorian Bruhin
2023-06-30Fix mypyFlorian Bruhin
2023-06-30More qt 6 toolingFlorian Bruhin
2023-06-30qt6: Add a Qt 5 warningFlorian Bruhin
Closes #7742
2023-06-30qt6: Switch most tooling/linting to Qt 6Florian Bruhin
Only mypy missing now...
2023-06-30qt 6: Update mkvenv.py for Qt 6 by defaultFlorian Bruhin
2023-06-30qt 6: Update changelogFlorian Bruhin
2023-06-30qt: Introduce _WRAPPER_OVERRIDE for packagersFlorian Bruhin
2023-06-30qt: Switch to autoselection of Qt backend by defaultFlorian Bruhin
2023-06-30qt: blackifyFlorian Bruhin
2023-06-30Remove new modelineFlorian Bruhin
2023-06-30typing updates after Python 3.7 dropFlorian Bruhin
2023-06-30Fix test_qtargs on Qt 5Florian Bruhin
2023-06-30Merge pull request #7761 from pylbrecht/remove-vim-modelinesFlorian Bruhin
Remove vim modelines in favor of .editorconfig
2023-06-30Enable replaceAll quirk by defaultFlorian Bruhin
See #7639
2023-06-30Add experimental_web_platform_features settingFlorian Bruhin
Closes #7639
2023-06-30Revert "Fix bad keyutils merge"Florian Bruhin
This reverts commit 127a4bf7561a97ac31c23ccfd6120bf4c5769cc5.
2023-06-30Remove --enable-webengine-inspectorFlorian Bruhin
Fixes #7134
2023-06-30Fix bad keyutils mergeFlorian Bruhin
2023-06-30Also move Pyright / VS Code to Qt 6Florian Bruhin
See #7370
2023-06-30qt6 mypy: Fix lintqt6-mypyFlorian Bruhin
2023-06-30Add misc check to prevent vim modelinesPhilipp Albrecht
We deprecated vim modelines. The introduced misc check will keep old pull requests from re-introducing vim modelines.
2023-06-30Remove vim modelinesPhilipp Albrecht
We're deprecating vim modelines in favor of `.editorconfig`. Removing vim modelines could be done using two one-liners. Most of the vim modelines were followed by an empty line, so this one-liner took care of these ones: ```sh rg '^# vim: .+\n\n' -l | xargs sed -i '/^# vim: /,+1d' ``` Then some of the vim modelines were followed by a pylint configuration line, so running this one-liner afterwards took care of that: ```sh rg '^# vim:' -l | xargs sed -i '/^# vim: /d' ```
2023-06-30Remove vim modeline hint from contributing docsPhilipp Albrecht
We're deprecating vim modelines in favor of `.editorconfig`.
2023-06-30Remove modeline pylint checkerPhilipp Albrecht
We're deprecating vim modelines in favor of `.editorconfig`.
2023-06-30mypy: Make misc.sql fully typedFlorian Bruhin
That was an oversight apparently