diff --git a/README.asciidoc b/README.asciidoc index 5a9bdd6b4..b601dc68d 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -18,9 +18,10 @@ It was inspired by other browsers/addons like dwb and Vimperator/Pentadactyl. Documentation ------------- -In addition to the topics mentioned in that README, the following documents are +In addition to the topics mentioned in this README, the following documents are available: +* link:doc/quickstart.asciidoc[Quick start guide] * link:doc/FAQ.asciidoc[Frequently asked questions] * link:doc/HACKING.asciidoc[HACKING] @@ -164,6 +165,22 @@ As soon as v0.1 is out, a standalone .exe (built with http://cx-freeze.sourceforge.net/[cx_Freeze]) will be provided. In the meantime, you can simply ask in IRC if you need one. +Donating +-------- + +Working on qutebrowser is a very rewarding hobby, but like (nearly) all hobbies +it also costs some money. Namely I have to pay for the server and domain, and +do occasional hardware upgrades footnote:[It turned out a 160 GB SSD is rather +small - the VMs and custom Qt builds I use for testing/developing qutebrowser +need about 100 GB of space]. + +If you want to give me a beer or a pizza back, I'm trying to make it as easy as +possible for you to do so. If some other way would be easier for you, please +get in touch! + +* PayPal: me@the-compiler.org +* Bitcoin: link:bitcoin:1PMzbcetAHfpxoXww8Bj5XqquHtVvMjJtE[1PMzbcetAHfpxoXww8Bj5XqquHtVvMjJtE] + Authors ------- diff --git a/doc/help/index.asciidoc b/doc/help/index.asciidoc index b81ea1d5e..5925e615d 100644 --- a/doc/help/index.asciidoc +++ b/doc/help/index.asciidoc @@ -6,6 +6,7 @@ Documentation The following help pages are currently available: +* link:quickstart.html[Quick start guide] * link:FAQ.html[Frequently asked questions] * link:commands.html[Documentation of commands] * link:settings.html[Documentation of settings] diff --git a/doc/quickstart.asciidoc b/doc/quickstart.asciidoc index 437479f72..ddb418cd2 100644 --- a/doc/quickstart.asciidoc +++ b/doc/quickstart.asciidoc @@ -40,7 +40,7 @@ What to do now * Press `:` to get the commandline. Press `o`/`O` to open a new page (with `O` in a new tab). Use `H` and `L` to go back/forward and `J`/`K` to focus the next/previous tab. See `~/.config/qutebrowser/keys.conf` for all mapped keys. -* Subscribe to +* Subscribe to https://lists.schokokeks.org/mailman/listinfo.cgi/qutebrowser[the mailinglist] where there are weekly "what's new in qutebrowser" posts. * Let me know what features you are missing or things that need (even small!) diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py index bac8dba4c..8a0bad30d 100755 --- a/scripts/asciidoc2html.py +++ b/scripts/asciidoc2html.py @@ -65,6 +65,7 @@ def main(colors=False): utils.use_color = colors asciidoc_files = [ ('doc/FAQ.asciidoc', 'qutebrowser/html/doc/FAQ.html'), + ('doc/quickstart.asciidoc', 'qutebrowser/html/doc/quickstart.html'), ] try: os.mkdir('qutebrowser/html/doc')