update qutebrowser

This commit is contained in:
Felix Van der Jeugt 2017-03-11 01:31:19 +01:00
parent 09ee950e8b
commit 7eab00fecf
No known key found for this signature in database
GPG Key ID: 58B209295023754D
3 changed files with 25 additions and 14 deletions

View File

@ -466,6 +466,9 @@ record-macro
run-macro run-macro
@ @
wq
ZZ
[insert] [insert]
# Keybindings for insert mode. # Keybindings for insert mode.
# Since normal keypresses are passed through, only special keys are # Since normal keypresses are passed through, only special keys are

View File

@ -100,6 +100,8 @@
# print-element-backgrounds (Bool): # print-element-backgrounds (Bool):
# Whether the background color and images are also drawn when the # Whether the background color and images are also drawn when the
# page is printed. # page is printed.
# This setting only works with Qt 5.8 or newer when using the
# QtWebEngine backend.
# Valid values: true, false # Valid values: true, false
# Default: true # Default: true
# #
@ -113,7 +115,7 @@
# Default: false # Default: false
# #
# site-specific-quirks (Bool): # site-specific-quirks (Bool):
# Enable workarounds for broken sites. # Enable QtWebKit workarounds for broken sites.
# Valid values: true, false # Valid values: true, false
# Default: true # Default: true
# #
@ -179,7 +181,7 @@ default-page = ${startpage}
auto-search = naive auto-search = naive
auto-save-config = true auto-save-config = true
auto-save-interval = 15000 auto-save-interval = 15000
editor = urxvtc -e nvim "{}" editor = st -e nvim "{}"
editor-encoding = utf-8 editor-encoding = utf-8
private-browsing = false private-browsing = false
developer-extras = true developer-extras = true
@ -191,7 +193,7 @@ new-instance-open-target = tab-silent
new-instance-open-target.window = last-focused new-instance-open-target.window = last-focused
log-javascript-console = none log-javascript-console = none
save-session = false save-session = false
session-default-name = session-default-name = default
url-incdec-segments = path,query url-incdec-segments = path,query
[ui] [ui]
@ -369,6 +371,8 @@ prompt-filebrowser = true
# The proxy to use. # The proxy to use.
# In addition to the listed values, you can use a `socks://...` or # In addition to the listed values, you can use a `socks://...` or
# `http://...` URL. # `http://...` URL.
# This setting only works with Qt 5.8 or newer when using the
# QtWebEngine backend.
# system: Use the system wide proxy. # system: Use the system wide proxy.
# none: Don't use any proxy # none: Don't use any proxy
# Default: system # Default: system
@ -682,7 +686,7 @@ select-on-remove = next
new-tab-position = next new-tab-position = next
new-tab-position-explicit = next new-tab-position-explicit = next
last-close = close last-close = close
show = always show = multiple
show-switching-delay = 800 show-switching-delay = 800
wrap = true wrap = true
movable = true movable = true
@ -770,8 +774,8 @@ indicator-padding = 2,2,0,4
# Default: true # Default: true
# #
# cache-size (Int): # cache-size (Int):
# Size of the HTTP network cache. # Size of the HTTP network cache. Empty to use the default value.
# Default: 52428800 # Default:
download-directory = /data/temporary download-directory = /data/temporary
prompt-download-directory = true prompt-download-directory = true
remember-download-directory = true remember-download-directory = true
@ -805,8 +809,7 @@ cache-size = 52428800
# Default: false # Default: false
# #
# webgl (Bool): # webgl (Bool):
# Enables or disables WebGL. For QtWebEngine, Qt/PyQt >= 5.7 is # Enables or disables WebGL.
# required for this setting.
# Valid values: true, false # Valid values: true, false
# Default: true # Default: true
# #
@ -848,6 +851,8 @@ cache-size = 52428800
# #
# javascript-can-access-clipboard (Bool): # javascript-can-access-clipboard (Bool):
# Whether JavaScript programs can read or write to the clipboard. # Whether JavaScript programs can read or write to the clipboard.
# With QtWebEngine, writing the clipboard as response to a user
# interaction is always allowed.
# Valid values: true, false # Valid values: true, false
# Default: false # Default: false
# #
@ -883,7 +888,8 @@ cache-size = 52428800
# Default: no-3rdparty # Default: no-3rdparty
# #
# cookies-store (Bool): # cookies-store (Bool):
# Whether to store cookies. # Whether to store cookies. Note this option needs a restart with
# QtWebEngine.
# Valid values: true, false # Valid values: true, false
# Default: true # Default: true
# #
@ -935,7 +941,7 @@ local-content-can-access-file-urls = true
cookies-accept = no-3rdparty cookies-accept = no-3rdparty
cookies-store = true cookies-store = true
host-block-lists = http://www.malwaredomainlist.com/hostslist/hosts.txt,http://someonewhocares.org/hosts/hosts,http://winhelp2002.mvps.org/hosts.zip,http://malwaredomains.lehigh.edu/files/justdomains.zip,http://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext host-block-lists = http://www.malwaredomainlist.com/hostslist/hosts.txt,http://someonewhocares.org/hosts/hosts,http://winhelp2002.mvps.org/hosts.zip,http://malwaredomains.lehigh.edu/files/justdomains.zip,http://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext
host-blocking-enabled = false host-blocking-enabled = true
host-blocking-whitelist = piwik.org host-blocking-whitelist = piwik.org
enable-pdfjs = false enable-pdfjs = false
@ -948,7 +954,9 @@ enable-pdfjs = false
# #
# mode (String): # mode (String):
# Mode to use for hints. # Mode to use for hints.
# number: Use numeric hints. # number: Use numeric hints. (In this mode you can also type
# letters form the hinted element to filter and reduce the number of
# elements that are hinted.)
# letter: Use the chars in the hints -> chars setting. # letter: Use the chars in the hints -> chars setting.
# word: Use hints words based on the html elements and the extra # word: Use hints words based on the html elements and the extra
# words. # words.

View File

@ -1,6 +1,6 @@
#!/usr/bin/python3 #!/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==0.9.1','gui_scripts','qutebrowser' # EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==0.10.1','gui_scripts','qutebrowser'
__requires__ = 'qutebrowser==0.9.1' __requires__ = 'qutebrowser==0.10.1'
import re import re
import sys import sys
from pkg_resources import load_entry_point from pkg_resources import load_entry_point
@ -8,5 +8,5 @@ from pkg_resources import load_entry_point
if __name__ == '__main__': if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit( sys.exit(
load_entry_point('qutebrowser==0.9.1', 'gui_scripts', 'qutebrowser')() load_entry_point('qutebrowser==0.10.1', 'gui_scripts', 'qutebrowser')()
) )