summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-22Release v1.8.2v1.8.2Florian Bruhin
2019-11-22Update changelog from masterFlorian Bruhin
2019-11-22Ignore imp deprecation warning in earlyinitFlorian Bruhin
See https://github.com/mhammond/pywin32/issues/1256 (cherry picked from commit 732ca70210c5664f871d7b0a987a41252ed4ac4f)
2019-11-22Reject screen sharing requests automatically on Qt < 5.13.2Florian Bruhin
It looks like there are two APIs for screen sharing: =============================================================================== Old, unstandardized ------------------- navigator[.mediaDevices].getUserMedia( {video: {mandatory: {chromeMediaSource: 'screen'}}, ...) Permission enum added in Qt 5.10. Seems to be behind a feature switch (--enable-usermedia-screen-capturing) ever since it's been added to Chromium. Demo pages: https://html5-demos.appspot.com/static/getusermedia/screenshare.html https://www.webrtc-experiment.com/screen-sharing/ New --- navigator.mediaDevices.getDisplayMedia(...) Added in Chromium 72, i.e. Qt 5.13: https://www.chromestatus.com/feature/6744724455030784 Demo page: https://www.webrtc-experiment.com/Pluginfree-Screen-Sharing/ =============================================================================== While the old API was in theory supported since Qt 5.10, it's unlikely to ever have worked, as it was hidden behind the feature switch. However, I'm not aware of any crashes related to it, so let's just let Qt handle things in that case. With Qt 5.13, the new API is supported, however, using it causes a segfault on Qt 5.13.0 and 5.13.1: https://bugreports.qt.io/browse/QTBUG-78016 Fix for Qt 5.13.2: https://codereview.qt-project.org/c/qt/qtwebengine/+/276998 Given those circumstances, disable screen capturing automatically and log a warning on Qt 5.13.0 and 5.13.1. With Qt 5.13.2, screen capturing doesn't crash anymore and works fine on Windows, but does nothing on Linux. Looks like this is getting fixed in Qt 5.14: https://bugreports.qt.io/browse/QTBUG-80055 https://codereview.qt-project.org/c/qt/qtwebengine/+/281549 (cherry picked from commit a733fa9fd0af5438057fc791f6bd78b8a75a8ef5)
2019-11-22Work around broken error pages on DebianFlorian Bruhin
See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882805 See #5078, #3773 (cherry picked from commit d741bdf2f92b9dcf897b15c9d850fff6442f1cf7)
2019-11-22Add NOTADB to known SQL errorsFlorian Bruhin
(cherry picked from commit d51ea32149085e5d33a197f7a2d1adf95545f4cf)
2019-11-22Windows: Fix Desktop typo in installerFlorian Bruhin
(cherry picked from commit 8a1768a41aa80a3565d0e48aacde60c7586f6df8)
2019-11-22Fix crash with empty conf.colors.webpage.bg on QtWebKitFlorian Bruhin
(cherry picked from commit 7eee69845348e7f39930ac3a2fa4330136334566) (cherry picked from commit a33770d50e1dad2f5b453a69cb00a2f5190ee8a7)
2019-11-22Hide/show the downloadview when entering/leaving fullscreenlufte
2019-11-22Fix :debug-log-level without a console attachedFlorian Bruhin
(cherry picked from commit 8ccea6e8000dbab70b66633167d3cea86e4de26e)
2019-11-22Handle errors while reading state configFlorian Bruhin
2019-11-22Call format on the right objectlufte
(cherry picked from commit 9520fc2d315507eb4733f8f688bbb66e04314a7e)
2019-11-22Add missing test for config.bind(..., None)Florian Bruhin
(cherry picked from commit 1ed80cd3533eca636e3279515160ce03d0448d09)
2019-11-22Allow using config.bind(key, None) but deprecate itFlorian Bruhin
Using config.bind(key, None) in a config.py file never was supposed to be possible. However, it worked by accident until v1.7.0, where it then broke because of 9ed6aaaa1646fad0710ba28bf12bd8eb9e011a72. Also, note that :config-py-write also emitted such invalid lines, which was fixed in v1.8.0 in #4949. (cherry picked from commit 2033ed1955b642cbcd2bc4ea88d361c340fb3d38)
2019-11-22Support pasting text that starts with a hyphentoofar
My password generator found this one. (cherry picked from commit a6b9e9b2a9a6af8402becf9a7950c34f6e79d627)
2019-09-27Further improve release instructionsFlorian Bruhin
(cherry picked from commit a3ec34b55db4ee46f3cb67a277b84f335ae5c992)
2019-09-27Release v1.8.1v1.8.1Florian Bruhin
2019-09-27Update changelog for v1.8.1Florian Bruhin
2019-09-26Go back to Qt 5.12 for tox/pyinstallerFlorian Bruhin
This reverts commit 548b5a17d72b42df997055c945c5e42e80b31af3. This reverts commit fe32e00a4e1b5a7cfd49638501a072df243636c2. Due to QTBUG-77364 (broken keyboard focus), we can't upgrade to qtbase 5.13.1. However, with 5.13.0 (and QtWebEngine 5.13.1), we run into two more issues: - Segfaults in QQuickWindowPrivate::updateDirtyNode() when logging into a Google account (especially on macOS). - Qt 5.13.0 with the old PyQt5 exit scheme segfaults on exit on Windows. However, pyqt5_enable_new_onexit_scheme() was added in PyQt 5.13.1. See https://bugreports.qt.io/browse/QTBUG-77364 See https://www.riverbankcomputing.com/news/pyqt-5131 Reopens #4918 (cherry picked from commit c397e9326b6d323f41e1f26157e113d792c5895b)
2019-09-26build_release: Ignore another macOS smoke test lineFlorian Bruhin
(cherry picked from commit 4f76266a4b961e8db7df8dfea084678a2e9dd39e)
2019-09-25build_release: Print uploaded fileFlorian Bruhin
2019-09-25build_release: Improve handling of half-uploaded releaseFlorian Bruhin
2019-09-25build_release: Add retry functionality for GitHub uploadFlorian Bruhin
2019-09-25Use Qt 5.13 with mkvenv-pypiFlorian Bruhin
2019-09-25Update changelog for v1.8.0Florian Bruhin
2019-09-25macOS: Ignore new smoke test lineFlorian Bruhin
See #4919
2019-09-25update_version: Improve release instructionsFlorian Bruhin
2019-09-25Release v1.8.0v1.8.0Florian Bruhin
2019-09-25Revert "Use Qt 5.12 for PyInstaller"Florian Bruhin
This reverts commit 56a2c5050892ad93492e217a21df77b6cc0013a8. Fixes #4918
2019-09-25Update content.headers.user_agent for Chrome 76Florian Bruhin
2019-09-25Update docsFlorian Bruhin
2019-09-25Add check for missing userscript descriptionFlorian Bruhin
2019-09-25Merge remote-tracking branch 'origin/pr/5031'Florian Bruhin
2019-09-24Improve readability-js docsFlorian Bruhin
See #5032
2019-09-24Update FAQFlorian Bruhin
2019-09-24Update changelogFlorian Bruhin
2019-09-24Ignore sqlite locking protocol errorFlorian Bruhin
According to https://sqlite.org/rescode.html this error should rarely happen: The SQLITE_PROTOCOL result code indicates a problem with the file locking protocol used by SQLite. The SQLITE_PROTOCOL error is currently only returned when using WAL mode and attempting to start a new transaction. There is a race condition that can occur when two separate database connections both try to start a transaction at the same time in WAL mode. The loser of the race backs off and tries again, after a brief delay. If the same connection loses the locking race dozens of times over a span of multiple seconds, it will eventually give up and return SQLITE_PROTOCOL. The SQLITE_PROTOCOL error should appear in practice very, very rarely, and only when there are many separate processes all competing intensely to write to the same database. However, in practice, this happens for some users during the sqlite initialization (while turning on WAL). Since we can't do anything, this shouldn't be handled as error.
2019-09-24Merge pull request #5039 from qutebrowser/pyup-scheduled-update-2019-09-23Florian Bruhin
Scheduled weekly dependency update for week 38
2019-09-23Update werkzeug from 0.15.6 to 0.16.0pyup-bot
2019-09-23Update vulture from 1.0 to 1.1pyup-bot
2019-09-23Update vulture from 1.0 to 1.1pyup-bot
2019-09-23Update pytest from 5.1.2 to 5.1.3pyup-bot
2019-09-23Update hypothesis from 4.36.1 to 4.36.2pyup-bot
2019-09-23Update packaging from 19.1 to 19.2pyup-bot
2019-09-23Update packaging from 19.1 to 19.2pyup-bot
2019-09-23Update packaging from 19.1 to 19.2pyup-bot
2019-09-23Update packaging from 19.1 to 19.2pyup-bot
2019-09-23Update urllib3 from 1.25.3 to 1.25.5pyup-bot
2019-09-23Update urllib3 from 1.25.3 to 1.25.5pyup-bot
2019-09-23Update urllib3 from 1.25.3 to 1.25.5pyup-bot