summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-03Release v1.3.0v1.3.0Florian Bruhin
2018-05-03Update changelog for v1.3.0Florian Bruhin
2018-05-03Add test for #3753Florian Bruhin
2018-05-03Disable spellcheck when it's unneeded.Florian Bruhin
Fixes #3753
2018-05-03Update changelogFlorian Bruhin
2018-05-03Merge remote-tracking branch 'origin/pr/3702'Florian Bruhin
2018-05-03Call setFocus() when navigatingFlorian Bruhin
See #3661: https://github.com/qutebrowser/qutebrowser/issues/3661#issuecomment-386308601 This doesn't seem to fully fix this, but at least the top four failed tests there... This should not regress #3872. Might affect #3834 in some way.
2018-05-03Revert "Always set FocusOnNavigationEnabled"Florian Bruhin
This reverts commit fa41af63b67b007a67cbac1b119729d030b9e533. See #3661 Fixes #3872
2018-05-03Call _handle_search before leaving the modeFlorian Bruhin
2018-05-03Fix lintFlorian Bruhin
2018-05-03Add a stop-gap solution for AssertionError when retrying downloadsFlorian Bruhin
See #3847
2018-05-03Handle event_target() being NoneFlorian Bruhin
As a stop-gap solution for #3888
2018-05-03Update changelogFlorian Bruhin
2018-05-03Refactor handling search in command.pyFlorian Bruhin
2018-05-03Merge remote-tracking branch 'origin/pr/3796'Florian Bruhin
2018-05-03Refactor matching of Greasemonkey scriptsFlorian Bruhin
2018-05-03Update changelogFlorian Bruhin
2018-05-03Merge remote-tracking branch 'origin/pr/3804'Florian Bruhin
2018-05-03Update changelogFlorian Bruhin
2018-05-03Merge remote-tracking branch 'origin/pr/3756'Florian Bruhin
2018-05-03Update changelogFlorian Bruhin
2018-05-03Merge remote-tracking branch 'origin/pr/3858'Florian Bruhin
2018-05-03Update changelogFlorian Bruhin
2018-05-03Merge remote-tracking branch 'origin/pr/3884'Florian Bruhin
2018-05-02Merge pull request #3876 from qutebrowser/pyup-scheduled-update-2018-04-30Florian Bruhin
Scheduled weekly dependency update for week 17
2018-05-02Update PyPI api URL.Jimmy
Flask 1.0 is out, pip made breaking changes, warehouse is a thing, new requests soon. So much fun in python world lately.
2018-05-02Make HTTPClient follow redirects by default.toofar
Closes #3875 The autoupdator, which uses `qutebrowser.misc.httpclient` has been failing recently because the URL that it hits to check version information is now serving a 301 moved permanently. By default QNetworkRequest doesn't follow redirects so it was getting back a (non-json, despite the request) body pointing to the new location, instead or version information. This changes fixes that by changing HTTPClient to use a QNetworkRequest subclass which follows redirects by default. It lookes like HTTPClient is currently only used in autoupdate.py, version.py, and crashdialog.py so I don't expect any breakage. 5.6-5.8 Only had a boolean setting available which allows redirects, but not from the https scheme to http, 5.9 introduces a more nuanced setting. I have tested locally on 5.7.1 and 5.10.
2018-04-30Update pytest from 3.5.0 to 3.5.1pyup-bot
2018-04-30Update flask from 0.12.2 to 1.0.1pyup-bot
2018-04-30Update setuptools from 39.0.1 to 39.1.0pyup-bot
2018-04-30Update flake8-builtins from 1.3.0 to 1.3.1pyup-bot
2018-04-29qute-pass: Improve fake_key_raw()cryzed
2018-04-24Merge pull request #3862 from qutebrowser/pyup-scheduled-update-2018-04-23Florian Bruhin
Scheduled weekly dependency update for week 16
2018-04-24Update commentFlorian Bruhin
2018-04-24Filter pycodestyle 2.4.0 for pyupFlorian Bruhin
See https://github.com/PyCQA/pycodestyle/issues/741
2018-04-24Update changelogFlorian Bruhin
2018-04-23qute-pass: Don't use f-stringscryzed
2018-04-23qute-pass: Fake strings letter-by-letter to avoid issuescryzed
2018-04-23Update pytest-mock from 1.8.0 to 1.9.0pyup-bot
2018-04-23Update hypothesis from 3.55.1 to 3.56.5pyup-bot
2018-04-23Update cheroot from 6.1.2 to 6.2.4pyup-bot
2018-04-23Update github3.py from 1.0.2 to 1.1.0pyup-bot
2018-04-23Update github3.py from 1.0.2 to 1.1.0pyup-bot
2018-04-23Update pycodestyle from 2.3.1 to 2.4.0pyup-bot
2018-04-23Update flake8-builtins from 1.2.2 to 1.3.0pyup-bot
2018-04-23Update certifi from 2018.1.18 to 2018.4.16pyup-bot
2018-04-23Update certifi from 2018.1.18 to 2018.4.16pyup-bot
2018-04-23Update certifi from 2018.1.18 to 2018.4.16pyup-bot
2018-04-23Update check-manifest from 0.36 to 0.37pyup-bot
2018-04-23Always set FocusOnNavigationEnabledFlorian Bruhin
This fixes some focus issues after Qt 5.11 changes. There might be better ways to solve them, but for now, this will work. See https://codereview.qt-project.org/#/c/221408/10 and #3661: https://github.com/qutebrowser/qutebrowser/issues/3661#issuecomment-375969315 Might also negatively affect #3834 as it essentially reintroduces QTBUG-52999 on any Qt version: https://bugreports.qt.io/browse/QTBUG-52999 Might be reverted at a later date, but for now, I want an easy way to make tests work on Qt 5.11 to spot further issues.