Merge branch 'blyxxyz-master'

This commit is contained in:
Florian Bruhin 2016-04-15 19:12:23 +02:00
commit 72e0b80ed0
2 changed files with 4 additions and 0 deletions

View File

@ -222,6 +222,7 @@ Contributors, sorted by the number of commits in descending order:
* Johannes Martinsson
* Jean-Christophe Petkovich
* Jay Kamat
* Jan Verbeek
* Helen Sherwood-Taylor
* HalosGhost
* Gregor Pohl

View File

@ -26,6 +26,7 @@ import urllib.error
import shutil
import json
import os
import sys
def get_latest_pdfjs_url():
@ -65,6 +66,8 @@ def update_pdfjs(target_version=None):
url = ('https://github.com/mozilla/pdf.js/releases/download/'
'v{0}/pdfjs-{0}-dist.zip').format(target_version)
os.chdir(os.path.join(os.path.dirname(os.path.abspath(__file__)),
'..', '..'))
target_path = os.path.join('qutebrowser', '3rdparty', 'pdfjs')
print("=> Downloading pdf.js {}".format(version))
try: