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

Commit 789db6d

Browse files
committed
Release 2.0.6
1 parent 2daa61d commit 789db6d

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

build/linux/install_uget_chrome_wrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
echo "Installing uget-chrome-wrapper 2.0.5"
3+
echo "Installing uget-chrome-wrapper 2.0.6"
44

55
# Download uget-chrome-wrapper to /usr/bin/uget-chrome-wrapper
66
sudo wget https://raw.githubusercontent.com/slgobinath/uget-chrome-wrapper/v2.0.5/uget-chrome-wrapper/bin/uget-chrome-wrapper --output-document /usr/bin/uget-chrome-wrapper

build/windows/uget-chrome-wrapper.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494

9595
;--------------------------------
9696
;General
97-
!define _VERSION "2.0.5.0"
97+
!define _VERSION "2.0.6.0"
9898

9999
;Name and file
100100
Name "uGet Chrome Wrapper"

extension/background.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ try {
7171

7272
chromeVersion = parseInt(chromeVersion);
7373
sendMessageToHost({
74-
version: "2.0.9"
74+
version: "2.1.0"
7575
});
7676

7777
// Read the storage for excluded keywords
@@ -396,7 +396,7 @@ function sendMessageToHost(message) {
396396
function getState() {
397397
if (ugetWrapperNotFound || !ugetChromeWrapperVersion) {
398398
return 2;
399-
} else if (!ugetChromeWrapperVersion.startsWith("2.0.5")) {
399+
} else if (!ugetChromeWrapperVersion.startsWith("2.0.6")) {
400400
return 1;
401401
} else {
402402
return 0;

extension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
"cookies",
5353
"activeTab"
5454
],
55-
"version": "2.0.9"
55+
"version": "2.1.0"
5656
}

extension/popup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<body>
2929
<div id="parent-container">
3030
<div id="title-container">
31-
<img id="img-icon" src="icon_32.png" /> <span>uGet Integration 2.0.9</span>
31+
<img id="img-icon" src="icon_32.png" /> <span>uGet Integration 2.1.0</span>
3232
</div>
3333
<hr>
3434
<label id="info">Info: Found uGet and uget-chrome-wrapper</label><label id="error">Error: Unable to connect to the uget-chrome-wrapper</label><label id="warn">Warning: Please upgrade uget-chrome-wrapper to the latest version</label>

uget-chrome-wrapper/bin/uget-chrome-wrapper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ from mimetypes import guess_extension
2929
cookie_filepath = join(tempfile.gettempdir(), 'uget_cookie')
3030
urls_filepath = join(tempfile.gettempdir(), 'uget_urls')
3131
UGET_COMMAND = "uget-gtk"
32-
VERSION = "2.0.5"
32+
VERSION = "2.0.6"
3333

3434
logger = logging.getLogger()
3535
# log_file_path = join(expanduser('~'), 'uget-chrome-wrapper.log')

uget-chrome-wrapper/debian/changelog

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
uget-chrome-wrapper (2.0.5-1) xenial; urgency=medium
1+
uget-chrome-wrapper (2.0.6-1) xenial; urgency=medium
2+
3+
* Fix encoded special characters in filename
24

35
* Add batch download
46

0 commit comments

Comments
 (0)