summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-20Update urllib3 from 1.25.8 to 1.25.9pyup-bot
2020-04-20Regenerate docsFlorian Bruhin
2020-04-20Add some hint padding by defaultFlorian Bruhin
2020-04-20Update changelogFlorian Bruhin
2020-04-20Merge remote-tracking branch 'origin/pr/5209'Florian Bruhin
2020-04-20Update changelogFlorian Bruhin
2020-04-20Merge remote-tracking branch 'origin/pr/5265'Florian Bruhin
2020-04-20Fix unknown_url_scheme_policy default valueFlorian Bruhin
2020-04-20Fix lintFlorian Bruhin
2020-04-20Update changelogFlorian Bruhin
2020-04-20Merge remote-tracking branch 'origin/pr/5297'Florian Bruhin
2020-04-20Regenerate docsFlorian Bruhin
2020-04-20Update changelogFlorian Bruhin
2020-04-20Remove unneeded dictionaryFlorian Bruhin
2020-04-20Merge remote-tracking branch 'origin/pr/5314'Florian Bruhin
2020-04-20Shorten option values for content.unknown_url_scheme_policyFlorian Bruhin
2020-04-20Update changelogFlorian Bruhin
2020-04-20Merge remote-tracking branch 'origin/pr/5299'Florian Bruhin
2020-04-20Update changelogFlorian Bruhin
2020-04-20Merge remote-tracking branch 'origin/pr/5352'Florian Bruhin
2020-04-20mypy improvementCoiby Xu
2020-04-20test webserver: Accept HTTP 206 (partial content) for faviconFlorian Bruhin
Seems to happen on Travis for Qt 5.9 for some reason.
2020-04-20Prevent wrap message when text was not foundPhilip Scherer
2020-04-20Add favicon support to test webserversFlorian Bruhin
This avoids getting a 404.
2020-04-20Add a manual editor pidfile checkFlorian Bruhin
This also reverts 083d0af1302f87a0c41f553f89f6736f2a215a92 because it turns out that didn't help in the end. Not sure what's going on there. A race condition between writing the pidfile and us waiting for the signal? An issue with the QFileSystemWatcher? Speculatively fixes #5362.
2020-04-20test_throttle: Increase delay on CI some moreFlorian Bruhin
2020-04-20Fix documentation for prompt.filebrowserFlorian Bruhin
2020-04-20TabEventFilter: Filter mouse events causing zoomFlorian Bruhin
QtWebEngine 5.15 will handle mousewheel zooming by itself: https://codereview.qt-project.org/c/qt/qtwebengine/+/297598 We could have a "return False" and let Qt handle everything with Qt 5.15, but then we don't have messages or zoom.mouse_divider anymore... In cases where we want to prevent zooming, however, we'll need to filter the event from Qt.
2020-04-20TabEventFilter: Use elif for consistencyFlorian Bruhin
2020-04-20Disable older workarounds in TabEventFilterFlorian Bruhin
- Horizontal scrolling with Shift is only needed with Qt 5.7. With Qt 5.9, it's handled by QtWebEngine. - The autorepeat workaround is only needed until Qt 5.14. - The checks should use compiled=False because we don't care about API.
2020-04-20Improve docstrings in TabEventFilterFlorian Bruhin
2020-04-19Update changelogFlorian Bruhin
2020-04-19Move import to the topFlorian Bruhin
2020-04-19Merge remote-tracking branch 'origin/pr/5322'Florian Bruhin
2020-04-18build_release: Check for existing assetsFlorian Bruhin
2020-04-18build_release: Print version when asking for confirmationFlorian Bruhin
2020-04-17Inline wrap prevention message callPhilip Scherer
Also make going_up parameter positional.
2020-04-17Fix lintFlorian Bruhin
2020-04-17Release v1.10.2Florian Bruhin
# Conflicts: # doc/changelog.asciidoc
2020-04-17Ignore another Chromium errorFlorian Bruhin
2020-04-17Fix type hint in QtWebKit search implementationPhilip Scherer
2020-04-17mkvenv: Improve checking for pyqt argsFlorian Bruhin
2020-04-17Neen't to move set_unknown_url_scheme_policy to websettings.pyCoiby Xu
2020-04-17Bug fixCoiby Xu
2020-04-16Fix version check happening late in wrap handlerPhilip Scherer
2020-04-16Remove invalid url check for search engine typeThorsten Wißmann
2020-04-16Fix test_get_search_url()Thorsten Wißmann
This also adds a test-case for the 'path-search' search engine defined in the config_stub.
2020-04-16Move all wrapping functionality into wrap handlerPhilip Scherer
2020-04-16Move wrapping-related functionality into new classPhilip Scherer
Also move config docs for search.wrap into the backend key.
2020-04-16Remove URL validity check when parsing search enginesThorsten Wißmann