summaryrefslogtreecommitdiff
path: root/qutebrowser.py
AgeCommit message (Collapse)Author
2023-07-23reuse: Initial copyright text update for myselfFlorian Bruhin
git ls-files | \ xargs sed -Ei 's/Copyright [0-9]{4}(-[0-9]{4}) Florian Bruhin \(The Compiler\) <mail@qutebrowser\.org>/SPDX-FileCopyrightText: Florian Bruhin (The Compiler) <mail@qutebrowser.org>/'
2023-07-23reuse: Adjust most license headersFlorian Bruhin
git ls-files | xargs grep -l "is free software" | xargs reuse annotate --license="GPL-3.0-or-later" --skip-unrecognised
2023-06-30Remove vim modelinesPhilipp Albrecht
We're deprecating vim modelines in favor of `.editorconfig`. Removing vim modelines could be done using two one-liners. Most of the vim modelines were followed by an empty line, so this one-liner took care of these ones: ```sh rg '^# vim: .+\n\n' -l | xargs sed -i '/^# vim: /,+1d' ``` Then some of the vim modelines were followed by a pylint configuration line, so running this one-liner afterwards took care of that: ```sh rg '^# vim:' -l | xargs sed -i '/^# vim: /d' ```
2021-01-26doc: Switch URLs to httpsFlorian Bruhin
2021-01-20Bump copyright yearsFlorian Bruhin
Closes #6015
2020-01-04Adjust copyrights for 2020Florian Bruhin
2019-11-15Fix modelinesFlorian Bruhin
2019-11-15Unify qutebrowser.py and qutebrowser/__main__.pyFlorian Bruhin
2019-02-22Update copyright for 2019Jay Kamat
2018-02-05Update copyright yearsFlorian Bruhin
2015-01-03Update copyright yearsFlorian Bruhin
2014-09-22Add /usr/bin/env to shebangsFlorian Bruhin
2014-07-31Adjust shebangs to call python3Florian Bruhin
2014-07-31Add a simple launcher scriptFlorian Bruhin