summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-12-03pylint: Work around some minor false-positivesFlorian Bruhin
See #6857
2021-12-03pylint: Fix some legitimate issuesFlorian Bruhin
2021-12-02pylint: Remove bad-continuation supressionsFlorian Bruhin
Removed in https://github.com/PyCQA/pylint/pull/3571 - should use black instead
2021-12-02pylint: Ignore some minor issuesFlorian Bruhin
2021-12-02pylint: Work around used-before-assignment regressionFlorian Bruhin
See #6857 and https://github.com/PyCQA/pylint/issues/5342
2021-12-02pylint: Remove now-useless suppressionsFlorian Bruhin
2021-12-02pylint: Disable too-many-try-statementsFlorian Bruhin
See #6857
2021-12-02pylint: Disable wrong-import-order for testsFlorian Bruhin
2021-12-02pylint: Handle consider-using-withFlorian Bruhin
2021-12-02pylint: Disable raise-missing-fromFlorian Bruhin
2021-12-02pylint: Set class-const-naming-styleFlorian Bruhin
See #6857
2021-12-02pylint: Disable logging-fstring-interpolation for nowFlorian Bruhin
See #6197
2021-12-02pylint: Disable consider-using-f-stringFlorian Bruhin
Too big code churn right now, will do this for qutebrowser v3.0.0: See #3020
2021-12-02requirements: Upgrade to pylint 2.12Florian Bruhin
We pinned pylint to < 2.5 due to this issue: https://github.com/PyCQA/astroid/issues/772 ...but then for some reaosn never unpinned it after the issue was fixed.
2021-12-01Add hint test for tabindex-negativeFlorian Bruhin
2021-12-01Update docsFlorian Bruhin
2021-12-01Merge remote-tracking branch 'origin/pr/6758'Florian Bruhin
2021-12-01tests: Move invisible.html to hints/htmlFlorian Bruhin
2021-12-01Update changelogFlorian Bruhin
2021-12-01Merge remote-tracking branch 'origin/pr/6798'Florian Bruhin
2021-12-01Update changelogFlorian Bruhin
2021-12-01Merge remote-tracking branch 'origin/pr/6818'Florian Bruhin
2021-11-30Hide radio button using CSS `appearance` propertyIngrid Budau
- Hide radio button using the property `-webkit-appearance: none;` instead of `opacity` - It is also supported on older QtWebEngine version 5.12
2021-11-30Update docs/changelogFlorian Bruhin
2021-11-30Merge remote-tracking branch 'origin/pr/6846'Florian Bruhin
2021-11-30Update charset_normalizer changelog URLFlorian Bruhin
2021-11-29Update dependenciesqutebrowser bot
2021-11-28Make interpreting number keys as counts configurablePhilipp Albrecht
By default numbers are interpreted as counts for bindings. Making this behavior configurable allows for emacs-like bindings, where number keys are passed through.
2021-11-26Update changelogFlorian Bruhin
2021-11-26Catch rect parsing exceptions in :screenshotFlorian Bruhin
2021-11-22ci: Thanks YAMLFlorian Bruhin
2021-11-22Update changelogFlorian Bruhin
2021-11-22Merge remote-tracking branch 'origin/pr/6796'Florian Bruhin
2021-11-22ci: Use Python 3.10 for bleeding CIFlorian Bruhin
2021-11-22Skip failing tests on WindowsTim Gadanidis
2021-11-22Merge pull request #6839 from qutebrowser/update-dependenciesFlorian Bruhin
Update dependencies
2021-11-22Change color of unselected buttons to greyIngrid Budau
- Replace JS function with Jinja `if` statement - Delete string displaying current setting
2021-11-22Update dependenciesqutebrowser bot
2021-11-21Add tests for closing last tab when giving/takingTim Gadanidis
2021-11-17Merge remote-tracking branch 'origin/update-dependencies'Florian Bruhin
2021-11-17scripts: Adjust for new typing_extensions nameFlorian Bruhin
2021-11-17tests: Fix test_real_git with different core.abbrevFlorian Bruhin
Fixes #6825
2021-11-15Update dependenciesqutebrowser bot
2021-11-13Simplify logicTim Gadanidis
2021-11-13Rename --qute-bdd-backend and QUTE_BDD_BACKENDFlorian Bruhin
2021-11-13Update docs/changelogFlorian Bruhin
2021-11-13Merge remote-tracking branch 'origin/pr/6810'Florian Bruhin
2021-11-12Add docstring to _select_backend()Philipp Albrecht
2021-11-12Extract backend selection into functionsPhilipp Albrecht
In order to fix the issue of silently using QtWebEngine when e.g. --qute-bdd-backend=webkit is given, even though QtWebEngine is not available, I moved the selection logic into separate functions to clear things up a little. I tried to avoid the duplicate imports, in case the backend is auto-selected, but after a while of thinking I abandoned that idea in favor of moving forward with this.
2021-11-12Use config.webengine in pytest_report_header()Philipp Albrecht