update qutebrowser and whitelist more hosts

This commit is contained in:
Felix Van der Jeugt 2018-06-26 15:38:39 +02:00
parent b0b2c51729
commit ebfe1d7f07
No known key found for this signature in database
GPG Key ID: 58B209295023754D
2 changed files with 7 additions and 3 deletions

View File

@ -64,6 +64,10 @@ allowed = [ 'https://calendar.google.com/*'
, 'https://secure.ogone.com/*' # bancontact
, 'https://belgium-3dsecure.wlp-acs.com/*' # bancontact
, 'https://*.axabank.be/*'
, 'https://*.ing.be/*'
, 'https://accounts.google.com/*'
, 'https://www.openstreetmap.org/*'
, 'https://web.whatsapp.com'
]
for pattern in allowed:

View File

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