From 8ce69e1e579e2553770c2d7b2fdd13d54b136ff9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 8 Oct 2017 15:24:48 +0200 Subject: [PATCH] Update docs (and lowercase qutebrowser) --- doc/changelog.asciidoc | 2 ++ doc/faq.asciidoc | 4 ++-- misc/userscripts/password_fill | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index 29bd527d3..b1b0d3411 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -69,6 +69,8 @@ Added - `:config-edit` to open the `config.py` file in an editor - `:config-write-py` to write a `config.py` template file - New `:version` command which opens `qute://version`. +- Spell checking support for QtWebEngine, see the `spellcheck.languages` + setting. Changed ~~~~~~~ diff --git a/doc/faq.asciidoc b/doc/faq.asciidoc index ba4364720..76c2fb3da 100644 --- a/doc/faq.asciidoc +++ b/doc/faq.asciidoc @@ -125,7 +125,7 @@ When using quickmark, you can give them all names, like without having to remember the exact website title or address. How do I use spell checking?:: - Configuring spell checking in Qutebrowser depends on the backend in use + Configuring spell checking in qutebrowser depends on the backend in use (see https://github.com/qutebrowser/qutebrowser/issues/700[#700] for a more detailed discussion). + @@ -145,7 +145,7 @@ For QtWebKit: + For QtWebEngine: -. Make sure your version of PyQt is 5.8 or higher. +. Make sure your versions of PyQt and Qt are 5.8 or higher. . Use `install_dict.py` script to install dictionaries. Run the script with `-h` for the parameter description. . Set `spellcheck.languages` to the desired list of languages, e.g.: diff --git a/misc/userscripts/password_fill b/misc/userscripts/password_fill index 00dd55e63..af394ac2c 100755 --- a/misc/userscripts/password_fill +++ b/misc/userscripts/password_fill @@ -189,7 +189,7 @@ choose_entry_rofi() { } choose_entry_zenity() { - MENU_COMMAND=( zenity --list --title "Qutebrowser password fill" + MENU_COMMAND=( zenity --list --title "qutebrowser password fill" --text "Pick the password entry:" --column "Name" ) choose_entry_menu || true @@ -199,7 +199,7 @@ choose_entry_zenity_radio() { zenity_helper() { awk '{ print $0 ; print $0 }' \ | zenity --list --radiolist \ - --title "Qutebrowser password fill" \ + --title "qutebrowser password fill" \ --text "Pick the password entry:" \ --column " " --column "Name" }