summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-29Release v2.2.1v2.2.1Florian Bruhin
2021-04-29Update changelog from masterFlorian Bruhin
2021-04-29scripts: Add --no-confirm to build_releaseFlorian Bruhin
(cherry picked from commit 9aa8740ec95e147116ec7d868ac2f3bb2e8259be)
2021-04-29ci: Fix CodeQLFlorian Bruhin
(cherry picked from commit 4751890acbf3b98f93386649f2d393b5c4e3cf91)
2021-04-29ci: Lock down workflowsFlorian Bruhin
Closes #6430 (cherry picked from commit 8023b8c8fe6cfb13e4a561c87177744612bb42f9)
2021-04-29Add QUTE_QTWEBENGINE_VERSION_OVERRIDEFlorian Bruhin
See https://github.com/NixOS/nixpkgs/pull/119376#issuecomment-820073044 (cherry picked from commit febb921040b6670d9b1694a6ce55ae39384d1306)
2021-04-29tests: Fix test_version with git's init.defaultBranchFlorian Bruhin
(cherry picked from commit 32604a6651813e25ee6d328c880ef95f76c9c744)
2021-04-28qute-pass: dont run pass twice when otp-onlyafreakk
(cherry picked from commit b04f99bcfce00c72fe7b8e59d76012141a8cb02d)
2021-04-28Improved readability of statusbar.widgets documentation.Nicholas Schwab
(cherry picked from commit 38c5eba3e1e07448a3c1fd082dc418e916c13dc2)
2021-04-28Added text: to valid values of statusbar.widgets, making theNicholas Schwab
documentation more uniform. (cherry picked from commit a083728168e3c126b8b6a67aa3d4d03845da8a46)
2021-04-28Add a site-specific quirk for DiscordFlorian Bruhin
Closes #4379 (cherry picked from commit be37524f47bcb78a319eae4e1d61794dfec6cc36)
2021-04-23Revert "Set print resolution to 300dpi"Florian Bruhin
This reverts commit 1e5184bc71f0209744bc93287b4c9bdc172bc5a0.
2021-04-23Set print resolution to 300dpiFlorian Bruhin
See https://codereview.qt-project.org/c/qt/qtwebengine/+/344042 (cherry picked from commit 2e4ca779c68a65034fcd4448fa8c0952ed3f0a1d)
2021-04-23Fix tests on WindowsFlorian Bruhin
(cherry picked from commit 0ee169e497de97d13bbd1b0c50e11bd452d5d25f)
2021-04-23Fix :spawn -u -oFlorian Bruhin
Fixes #6407 (cherry picked from commit c7b3559d820ebdc8b3077fce3d782e6ab81cb732)
2021-04-22Update PE checksum patching after PyInstaller updateFlorian Bruhin
(cherry picked from commit b1265cbeffb6778951a4f2d7a53bd4fc18607a5c)
2021-04-22Update PyInstaller from masterFlorian Bruhin
2021-04-19ci: Pin Python 3.10 to Alpha 7Florian Bruhin
See https://github.com/actions/setup-python/issues/207 pytest isn't ready yet: https://github.com/pytest-dev/pytest/issues/8539 (cherry picked from commit 0c1414c6aaa419cba812b751c97c87e10cd6009e)
2021-04-19qute-pass: extract username/pw only when neededafreakk
(cherry picked from commit efcb3798729b6dedbf63baa443837720df63ce29)
2021-04-19address PR commentfrank shin
(cherry picked from commit 49e858e7d44b6e3ba24a388e2bdbffeb88d9adb8)
2021-04-19Check bitwarden CLI tool return code instead of stderr to check for errorfrank shin
(cherry picked from commit 909230a8acd0423a85322602453cddad372072d8)
2021-04-19requirements: Fully remove python_version marker for adblockFlorian Bruhin
See https://github.com/ArniDagur/python-adblock/issues/28 Follow-up to de4fff386646b305890998b4dff660fe3127026f (cherry picked from commit ffdee8534d69d5f39d49d617b9f47fc4b7b7d86a) Also updates adblock from 3b76a0d4b9613b74b104caec28ecda1445f084a5
2021-04-17mkvenv: Handle failing ldconfigFlorian Bruhin
(cherry picked from commit 1b4daf7c37782bf6a63814c5e9cdc0bebec559ea)
2021-04-17notifications: Ignore KDE's ExcessNotificationGenerationFlorian Bruhin
(cherry picked from commit 9fdfd3b4c02be01824900c5e548994495be4ccea)
2021-04-13notifications: Show adapter errors to usersFlorian Bruhin
Otherwise their notifications could suddenly stop working or otherwise change apperance. (cherry picked from commit ebf96195839c5288981c62b4c6fd18dd99e829be)
2021-04-13notifications: Handle MaxNotificationsExceeded error from GNOME FlashbackFlorian Bruhin
(cherry picked from commit 2cfc64579a22e7dd933c9591e6bb141b877b58e0)
2021-04-13Release v2.2.0v2.2.0Florian Bruhin
2021-04-13Fix quirk testsFlorian Bruhin
2021-04-13Disable replaceAll quirk by defaultFlorian Bruhin
Fixes #6208
2021-04-13Update UA completionsFlorian Bruhin
2021-04-13Avoid module-level circular importFlorian Bruhin
When running ua_fetch.py, websettings gets imported and fails: $ python3 scripts/dev/ua_fetch.py Traceback (most recent call last): File ".../scripts/dev/ua_fetch.py", line 16, in <module> import qutebrowser.config.websettings File ".../qutebrowser/config/websettings.py", line 32, in <module> from qutebrowser.config import config File ".../qutebrowser/config/config.py", line 31, in <module> from qutebrowser.config import configdata, configexc, configutils File ".../qutebrowser/config/configdata.py", line 32, in <module> from qutebrowser.config import configtypes File ".../qutebrowser/config/configtypes.py", line 65, in <module> from qutebrowser.utils import (standarddir, utils, qtutils, urlutils, urlmatch, File ".../qutebrowser/utils/standarddir.py", line 33, in <module> from qutebrowser.utils import log, debug, utils, version File ".../qutebrowser/utils/version.py", line 529, in <module> class WebEngineVersions: File ".../qutebrowser/utils/version.py", line 597, in WebEngineVersions def from_ua(cls, ua: websettings.UserAgent) -> 'WebEngineVersions': AttributeError: partially initialized module 'qutebrowser.config.websettings' has no attribute 'UserAgent' (most likely due to a circular import)
2021-04-13Edit changelogFlorian Bruhin
2021-04-12Merge pull request #6385 from qutebrowser/update-dependenciesFlorian Bruhin
Update dependencies
2021-04-12Update dependenciesqutebrowser bot
2021-04-10Update docsFlorian Bruhin
2021-04-10Update changelogFlorian Bruhin
2021-04-10Merge commit '9a836e2'Florian Bruhin
2021-04-10ci: Tune down code scanningFlorian Bruhin
Too many false positives, and it seems impossible to ignore a single rule.
2021-04-09notifications: Fix image padding assertionFlorian Bruhin
The underlying Chromium pads images so that scanlines align on 4-byte boundaries. Thus, with an image size of e.g. 239x239, we'll have 3 bytes of padding (239 mod 4 = 3; 240 mod 4 = 0). Fixes #6375
2021-04-09Remove confusing returnFlorian Bruhin
2021-04-09Merge remote-tracking branch 'origin/master'Nicholas Schwab
2021-04-09Added tests for StatusbarWidget.Nicholas Schwab
2021-04-09ci: Try additional CodeQL queriesFlorian Bruhin
2021-04-09ci: Try working around macOS DMG timeoutsFlorian Bruhin
2021-04-09notifications: Add more info to padding assertFlorian Bruhin
2021-04-09Fix clicking systray notificationsFlorian Bruhin
2021-04-09Changed str.partition to str.split.Nicholas42
Co-authored-by: Florian Bruhin <me@the-compiler.org>
2021-04-09Fixed incomplete renaming of variable.Nicholas Schwab
2021-04-09ci: Try additional CodeQL queriesFlorian Bruhin
2021-04-08Apply suggestions from code reviewNicholas42
Co-authored-by: Florian Bruhin <me@the-compiler.org>