Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-06-05 | doc: Update similar project list | Florian Bruhin | |
2024-01-12 | Typo fix | Julin S | |
Trivial typo fix | |||
2023-11-14 | Update Surfingkeys link | Florian Bruhin | |
2023-08-06 | doc: Update related projects list | Florian Bruhin | |
2023-07-23 | reuse: Adjust most license headers | Florian Bruhin | |
git ls-files | xargs grep -l "is free software" | xargs reuse annotate --license="GPL-3.0-or-later" --skip-unrecognised | |||
2023-07-23 | Move master branch references to main | Florian Bruhin | |
Closes #7097 | |||
2023-06-26 | Initial Python 3.7 drop | Florian Bruhin | |
2023-03-17 | Merge branch 'qt6-v2' into master-qt6 | Florian Bruhin | |
2023-01-25 | Update donation infos, add Liberapay | Florian Bruhin | |
See #7264 and https://listi.jpberlin.de/pipermail/qutebrowser/2023-January/000925.html | |||
2022-12-13 | doc: Improve security reporting guidelines | Florian Bruhin | |
See #7524 | |||
2022-08-23 | Adjust Qt/PyQt version ranges | Florian Bruhin | |
2022-08-23 | Drop Qt < 5.15 | Florian Bruhin | |
Fixes #7091 TODO: Add changelog | |||
2022-07-05 | macOS: fix hide_decoration making window nonresizable | kt programs | |
Use PyObjC to call `setWindowMask:` with resizable flag on the underlying NSWindow. Fixes #4067 | |||
2022-06-15 | README.asciidoc: avoid HTML redirect for luakit website | Emanuele Torre | |
It seems that, now, the luakit homepage is at https://luakit.github.io/ and https://luakit.github.io/luakit/ is just an HTML redirect to it. Let's avoid the annoying redirect. | |||
2022-04-14 | doc: Adjust some PyQt5 references | Florian Bruhin | |
2022-04-05 | Merge remote-tracking branch 'origin/pr/7103' | Florian Bruhin | |
2022-04-04 | Clean up some remaining Python version references | Florian Bruhin | |
2022-04-04 | Load icons via importlib.resources | Jimmy | |
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-04 | Drop python3.6 support. | Jimmy | |
Commits for dropping 3.5 support to copy from: c245b7d855ccd "Initial drop of Python 3.5" ccdfb44b8568b "Drop support for Python 3.6.0" Anything needed to update regarding OS version support in doc/install.asciidoc? TODO: remove 3.6/7 annotations in requirements files and rebuild workflows: not sure I updated it right (run 5.12 with 3.7, same 18.04 OS) but 18.04 seems to have 3.7 on it too so it should work. It'll all change when we drop <5.15 anyway. Not sure what the minimum ubuntu version will be going forward. Regarding mimetype overrides (ebb3046822adb) the doctring says they can all go in 3.7 but .h5 is still missing on py39, not sure if we should care. There are a bunch of old(?) warning messages still ignored in tests/end2end/fixtures/quteprocess.py. | |||
2022-03-30 | Adjust mailinglist URLs to new provider | Florian Bruhin | |
See https://listi.jpberlin.de/pipermail/qutebrowser/2022-March/000885.html | |||
2022-01-08 | Update related projects list | Florian Bruhin | |
2021-09-24 | Update Nyxt description in README | Florian Bruhin | |
Closes #6705 | |||
2021-09-08 | doc: Add wyeb to alternatives | Florian Bruhin | |
2021-07-19 | Add note about Qt 6 | Florian Bruhin | |
See #6604 | |||
2021-06-02 | README: Move surf to active | Florian Bruhin | |
2021-04-07 | Update docs for GitHub sponsors update | Florian Bruhin | |
2021-03-30 | Correctly add QtDBus dependency | Florian Bruhin | |
2021-03-03 | readme: Mark Pygments as optional | Florian Bruhin | |
2021-02-25 | requirements: Add importlib-metadata | Florian Bruhin | |
2021-01-26 | Finish dropping pkg_resources | Florian Bruhin | |
Closes #4467 | |||
2021-01-26 | Clarify QtWebKit wording in README | Florian Bruhin | |
2021-01-26 | doc: Switch URLs to https | Florian Bruhin | |
2021-01-17 | Finish dropping PyPEG2 | Florian Bruhin | |
Closes #1161 | |||
2021-01-13 | dataclasses: Remaining dependency changesdataclass | Florian Bruhin | |
See #6023 | |||
2021-01-09 | Update readme | Florian Bruhin | |
2021-01-08 | Drop support for Python 3.6.0 | Florian Bruhin | |
It has some subtle typing differences compared to 3.6.1, see e.g. https://docs.python.org/3/library/typing.html#typing.NamedTuple Also, we can't easily test it, it's unlikely to be in use anywhere anyways, and various dependencies already dropped support for it or are going to (e.g. PyQt 6). See #4800 | |||
2020-12-22 | Merge remote-tracking branch 'origin/pr/5317' into dev | Florian Bruhin | |
2020-12-22 | Update/improve links between docs | Florian Bruhin | |
2020-12-19 | Merge branch 'master' into more-sophisticated-adblock | Árni Dagur | |
2020-12-19 | Merge branch 'master' into more-sophisticated-adblock | Árni Dagur | |
2020-12-19 | Merge branch 'master' into more-sophisticated-adblock | Árni Dagur | |
2020-12-19 | Apply style changes from code review | Árni Dagur | |
Co-authored-by: Florian Bruhin <me@the-compiler.org> | |||
2020-12-19 | Merge branch 'master' into more-sophisticated-adblock | Árni Dagur | |
2020-12-19 | Merge branch 'master' into more-sophisticated-adblock | Árni Dagur | |
2020-12-08 | Update docs | Florian Bruhin | |
2020-12-07 | Migrate read_file from pkg_resources to importlib.resources | Eli Schwartz | |
In python 3.9, we can get any resource from a package subdirectory using files(), but on older versions of python, even where importlib.resources exists, we need the backport. | |||
2020-11-11 | Remove cssutils dependency | duthades | |
- Remove everything related to cssutils | |||
2020-11-04 | old qt: Adjust docs | Florian Bruhin | |
2020-10-26 | Initial drop of Python 3.5 | Florian Bruhin | |
See #4800 | |||
2020-09-24 | Update similar project list | Florian Bruhin | |