Commit Graph

39 Commits

Author SHA1 Message Date
Florian Bruhin ec34865168 Move master branch references to main
Closes #7097
2023-07-23 11:38:19 +02:00
Philipp Albrecht d9e8b638bf Remove vim modelines
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'
```
2023-06-30 11:03:06 +02:00
Florian Bruhin af176f749f scripts: Use pip-installed asciidoc
Fixes #7352, closes #6793
2022-12-12 11:06:28 +01:00
Florian Bruhin 80efb17251 Update asciidoc version in instructions 2021-03-12 12:14:45 +01:00
Florian Bruhin d48b455d77 scripts: Adjust Windows release instructions 2021-01-28 08:41:50 +01:00
Florian Bruhin 1a4fff1a42 doc: Switch URLs to https 2021-01-26 15:19:01 +01:00
Florian Bruhin 222f1f19a1 Bump copyright years
Closes #6015
2021-01-20 20:06:19 +01:00
Florian Bruhin 1dea8ace64 scripts: Update asciidoc version 2020-12-04 20:43:03 +01:00
Florian Bruhin 1b4bdccfe1 Fix some typos 2020-10-15 14:53:46 +02:00
Florian Bruhin d8473590e6 Update release instructions 2020-09-16 21:13:47 +02:00
Florian Bruhin 0e1ac9f0ab Update for qutebrowser.org server move 2020-07-07 22:02:23 +02:00
Florian Bruhin 5e06b00474 scripts: Add --commands to update_version 2020-04-27 15:51:38 +02:00
Florian Bruhin 73eb3f5d6a Improve git instructions printed by update_version.py 2020-02-15 14:24:20 +01:00
Florian Bruhin 9e4276db9b Adjust copyrights for 2020 2020-01-04 18:21:17 +01:00
Florian Bruhin a3ec34b55d Further improve release instructions 2019-09-27 13:42:10 +02:00
Florian Bruhin 81b1e7b8a3 update_version: Improve release instructions 2019-09-25 17:54:37 +02:00
Florian Bruhin 412dd58b0b update_version: Print tag 2019-07-18 12:08:34 +02:00
Florian Bruhin 9cba5a074a Add missing format 2019-07-18 12:06:01 +02:00
Florian Bruhin 09ff9a87a5 update_version: Print better commands 2019-07-18 12:01:29 +02:00
Florian Bruhin d7e68a5326 update_version: Fix message 2019-07-18 11:42:55 +02:00
Florian Bruhin 730ff7fe3d update_version: Show git commit 2019-07-18 11:41:46 +02:00
Florian Bruhin af6a9c6b4c update_version: Fix output 2019-07-18 11:36:09 +02:00
Florian Bruhin 29c6afe476 Fix lint 2019-07-16 10:52:24 +02:00
Florian Bruhin 2077070b6d update_version: Get new version from qutebrowser.py 2019-07-16 10:47:26 +02:00
Florian Bruhin 46dfafd907 bumpversion: Update releases in appdata.xml
Using lxml means rewriting the file, which loses comments.
2019-07-16 10:47:09 +02:00
Florian Bruhin d22f500bbc update_version: Update appdata filename 2019-07-16 10:47:09 +02:00
Florian Bruhin 5c60e847eb update_version: Fix cwd handling 2019-07-16 10:47:09 +02:00
Florian Bruhin 032669d49f update_version: Use sys.executable 2019-07-16 10:47:06 +02:00
Florian Bruhin 6e8ebaf335 update_version: Fix broken argument 2019-07-16 10:46:39 +02:00
Florian Bruhin c6d98c9f7e Fix version bumping style issues 2019-07-11 10:56:16 +02:00
Andy Mender a9f9de4b35 Add instructions to update_version.py and adjust contributing.asciidoc accordingly. 2018-10-14 13:35:45 +02:00
Andy Mender a2856bee2b Improve contributing.asciidoc and return git release tag from update_version.py 2018-10-08 22:08:18 +02:00
Andy Mender e1368534e5 Make update_version.py 'bump' command-line arg mandatory 2018-10-07 17:35:18 +02:00
Andy Mender d125a59ec0 Add explicit output check to subprocess.run call in update_version.bump_version 2018-10-07 17:33:09 +02:00
Andy Mender cc6303a8cc Move appdata_path back to scripts/dev/update_version.py 2018-10-07 17:28:07 +02:00
Andy Mender 5231b25759 Move appdata_path to qutebrowser.__init__.py and improve code style 2018-10-07 12:49:25 +02:00
Andy Mender 21e49cf958 Add update_version.py to build_release.py pipeline and update command-line args 2018-10-07 11:56:28 +02:00
Andy Mender 1fbf5d3712 Add bump_version to update_version.py and include new release block in appdata.xml 2018-10-06 21:03:33 +02:00
Andy Mender 0b51eb5b7c Move update_version.py script to scripts/dev 2018-10-06 20:05:39 +02:00
Renamed from scripts/update_version.py (Browse further)