Skip to content
This repository has been archived by the owner on Mar 22, 2018. It is now read-only.

Commit

Permalink
Downgrading python dependency and adding github.io page
Browse files Browse the repository at this point in the history
  • Loading branch information
slgobinath committed Oct 17, 2016
1 parent 05316a8 commit f8b45be
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
4 changes: 3 additions & 1 deletion build/debian/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
uget-chrome-wrapper (1.2-1) xenial; urgency=medium
uget-chrome-wrapper (1.3.0-1) xenial; urgency=medium

* Downgrading Python dependency

* Adding support for Chromium and Vivaldi

Expand Down
4 changes: 2 additions & 2 deletions build/debian/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Priority: optional
Maintainer: Loganathan Gobinath <slgobinath@gmail.com>
Build-Depends: debhelper (>= 9)
Standards-Version: 3.9.6
Homepage: https://github.com/slgobinath/uget-chrome-wrapper
Homepage: https://slgobinath.github.io/uget-chrome-wrapper/

Package: uget-chrome-wrapper
Architecture: any
Depends: uget (>= 2.0.2), python (>= 2.7.6)
Depends: uget (>= 2.0.2), python (>= 2.7.0)
Description: uGet Download Manager
Integrate uGet Download manager with Google Chrome
2 changes: 1 addition & 1 deletion chrome-extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}
],
"description": "uGet Browser Integration extension replaces default download manager of Google Chrome by uGet Download Manager.",
"homepage_url": "https://github.com/slgobinath/uget-chrome-wrapper",
"homepage_url": "https://slgobinath.github.io/uget-chrome-wrapper",
"icons": {
"32": "icon_32.png",
"48": "icon_48.png",
Expand Down
7 changes: 6 additions & 1 deletion uget-chrome-wrapper/bin/uget-chrome-wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ from urlparse import urlparse
from os.path import splitext, basename, join, expanduser

UGET_COMMAND = "uget-gtk"
VERSION = "1.3.0"

# Platform specific configuration
if sys.platform == "win32":
Expand Down Expand Up @@ -58,7 +59,11 @@ def read_message():
text = sys.stdin.read(text_length).decode('utf-8')

if text:
send_message('{"enable": true}')
if "version" in text:
send_message('{"enable": true, "version": "' + VERSION + '"}')
return

send_message('{"state": "accepted"}')
data = json.loads(text)
url = data['url']

Expand Down

0 comments on commit f8b45be

Please sign in to comment.