summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-05fix more moved icons/ referencesfeat/remove_pyqt_resources_for_importlibJimmy
For Makefile installs (broke while copying stuff over) and pyinstaller installs (broke on launch).
2022-04-04Load icons via importlib.resourcesJimmy
The PyQt resources system is gone in 6.2 and deprecated before that. This should be the last usage of it. Switches icons to be read with `utils.resources.read_file_binary()` in `notification.py` (fallback desktop notification icon) and `app.py` (icon for the desktop window). importlib only loads resources under a package, so the icons are moved under the `qutebrowser/` directory. Closes: #6062
2022-04-03Adjust broken linkFlorian Bruhin
2022-04-03Fix some userscript syntax issuesFlorian Bruhin
Thanks to (a hacked) pyupgrade
2022-04-03Simplify some syntaxFlorian Bruhin
Found via pyupgrade
2022-04-02Actually mark qute-pass executableFlorian Bruhin
2022-04-02Update changelogFlorian Bruhin
2022-04-02Mark qute-pass as executable and add checkerFlorian Bruhin
Regressed in #7068
2022-04-01Release v2.5.0v2.5.0Florian Bruhin
2022-04-01Update changelogFlorian Bruhin
2022-04-01Update content.headers.user_agent completionsFlorian Bruhin
2022-04-01Update changelogFlorian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6543'Florian Bruhin
2022-03-31Fix spellingFlorian Bruhin
2022-03-31Fix lint / changelogFlorian Bruhin
2022-03-31readline: Properly delete first characterFlorian Bruhin
2022-03-31Add :rl-rubout and :rl-filename-ruboutFlorian Bruhin
Closes #4561
2022-03-31readline: Allow passing args to cmdutils.registerFlorian Bruhin
2022-03-31Restore deleted testFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6599'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Test system-data dir with flatpakFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6946'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6957'Florian Bruhin
2022-03-31Add missing spaceFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/6996'Florian Bruhin
2022-03-31Update docsFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/7010'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Remove double ifFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/7014'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/7048'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31Merge remote-tracking branch 'origin/pr/7068'Florian Bruhin
2022-03-31Update changelogFlorian Bruhin
2022-03-31cast userscript: Fix error messageFlorian Bruhin
Avoid SC2140 shellcheck false-positive: https://github.com/koalaman/shellcheck/issues/2479 Also remove extra quoting
2022-03-31Merge remote-tracking branch 'origin/pr/7074'Florian Bruhin
2022-03-30Restore lost coverage pragmaFlorian Bruhin
2022-03-30Fix test_editorFlorian Bruhin
2022-03-30Update changelogFlorian Bruhin
2022-03-30Pre-resolve guiprocess paths (work around Qt's CVE-2022-25255)Florian Bruhin
2022-03-30Adjust mailinglist URLs to new providerFlorian Bruhin
See https://listi.jpberlin.de/pipermail/qutebrowser/2022-March/000885.html
2022-03-30Update importlib.resources annotation commentsFlorian Bruhin
A zipfile.Path *is* a Traversable
2022-03-30Fix version specifiers for importlib-metadataFlorian Bruhin
2022-03-30version: Always prefer builtin importlib.metadataFlorian Bruhin
If we have a builtin importlib.metadata (Python 3.8+) and the importlib_metadata backport installed, we preferred the backport. However, the version.py tests do the opposite: They only mock the builtin if it is available. This did lead to failing tests if the backport was installed in an environment where the builtin was available too. Since we don't need any specialized functionality (only reading the version), we can prefer the builtin no matter whether a backport is available or not.
2022-03-30Do the Python 3.6 dance for palletsFlorian Bruhin
2022-03-30Update dependenciesqutebrowser bot