diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2011-06-12 21:45:24 +0300 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2011-06-12 21:45:24 +0300 |
commit | 15b105520bc2a032858c9b065e3800faa1242d77 (patch) | |
tree | 96fe38f95d9b948b85946add43e4e9a99a390082 | |
parent | bd0002f34e881de66a34ba0b504519a953f25b80 (diff) | |
download | vdr-plugin-webvideo-15b105520bc2a032858c9b065e3800faa1242d77.tar.gz vdr-plugin-webvideo-15b105520bc2a032858c9b065e3800faa1242d77.tar.bz2 |
Bump version
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | src/libwebvi/webvi/version.py | 2 | ||||
-rw-r--r-- | src/vdr-plugin/webvideo.c | 2 | ||||
-rw-r--r-- | src/webvicli/webvicli/client.py | 2 |
5 files changed, 12 insertions, 4 deletions
@@ -231,7 +231,7 @@ Video site modules: - New option --vfat (or vfat in config file) generates Windows compatible filenames (plugin, webvi) -2011-xx-xx: Version 0.4.2 +2011-06-12: Version 0.4.2 - Fixed katsomo.fi module. - Watch on vdr bookmarklet now works also on katsomo.fi. diff --git a/debian/changelog b/debian/changelog index 6639b84..b880ceb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +vdr-plugin-webvideo (0.4.2-1) unstable; urgency=low + + * Fixed katsomo.fi module. + * Watch on vdr bookmarklet now works also on katsomo.fi. + * webvi: Space in search terms was errornously replaced by plus. + + -- Antti Ajanki <antti.ajanki@iki.fi> Sun, 12 Jun 2011 21:43:33 +0300 + vdr-plugin-webvideo (0.4.1-1) unstable; urgency=low * Fixed Youtube, Metacafe and Vimeo modules. Streaming does not diff --git a/src/libwebvi/webvi/version.py b/src/libwebvi/webvi/version.py index ab3d564..a4fba61 100644 --- a/src/libwebvi/webvi/version.py +++ b/src/libwebvi/webvi/version.py @@ -15,4 +15,4 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -VERSION = '0.4.1' +VERSION = '0.4.2' diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c index 077872e..2daf642 100644 --- a/src/vdr-plugin/webvideo.c +++ b/src/vdr-plugin/webvideo.c @@ -24,7 +24,7 @@ #include "common.h" #include "timer.h" -const char *VERSION = "0.4.1"; +const char *VERSION = "0.4.2"; static const char *DESCRIPTION = trNOOP("Download video files from the web"); static const char *MAINMENUENTRY = "Webvideo"; cMimeTypes *MimeTypes = NULL; diff --git a/src/webvicli/webvicli/client.py b/src/webvicli/webvicli/client.py index f82c32a..9ddb438 100644 --- a/src/webvicli/webvicli/client.py +++ b/src/webvicli/webvicli/client.py @@ -36,7 +36,7 @@ from urlparse import urlparse from webvi.constants import WebviRequestType, WebviOpt, WebviInfo, WebviSelectBitmask, WebviConfig from . import menu -VERSION = '0.4.1' +VERSION = '0.4.2' # Default options DEFAULT_PLAYERS = ['vlc --play-and-exit "%s"', |