diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2013-04-14 19:38:02 +0300 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2013-04-14 19:38:02 +0300 |
commit | 7c29f33852a6feb8f469a75f3e0ec8dc6ba97e1b (patch) | |
tree | 1fe510d444a147a42f1670235a6fc5f07aceb91f | |
parent | 5c52f40217d467beec4b2d891c08194593bd9489 (diff) | |
download | vdr-plugin-webvideo-7c29f33852a6feb8f469a75f3e0ec8dc6ba97e1b.tar.gz vdr-plugin-webvideo-7c29f33852a6feb8f469a75f3e0ec8dc6ba97e1b.tar.bz2 |
Bump version
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | debian/changelog | 7 | ||||
-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, 15 insertions, 3 deletions
@@ -1,6 +1,11 @@ VDR Plugin 'webvideo' Revision History -------------------------------------- +2013-04-14: Version 0.5.0 + +- Compatible with VDR 2.0.0. VDR 1.6.x support dropped. +- Fixed ruutu.fi, katsomo.fi (low-quality mobile streams) + 2012-09-30: Version 0.4.9 - Fixed support for Youtube diff --git a/debian/changelog b/debian/changelog index 764d1ef..b4b5089 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +vdr-plugin-webvideo (0.5.0-1) unstable; urgency=low + + * Compatible with VDR 2.0.0. VDR 1.6.x support dropped. + * Fixed ruutu.fi, katsomo.fi (low-quality mobile streams) + + -- Antti Ajanki <antti.ajanki@iki.fi> Sun, 14 Apr 2013 19:37:09 +0300 + vdr-plugin-webvideo (0.4.9-1) unstable; urgency=low * Fixed support for Youtube diff --git a/src/libwebvi/webvi/version.py b/src/libwebvi/webvi/version.py index 71aca96..2324bcb 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.9' +VERSION = '0.5.0' diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c index 5758b9b..4f3cf68 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.9"; +const char *VERSION = "0.5.0"; 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 75f84c0..bf9f7a8 100644 --- a/src/webvicli/webvicli/client.py +++ b/src/webvicli/webvicli/client.py @@ -38,7 +38,7 @@ from urlparse import urlparse from webvi.constants import WebviRequestType, WebviOpt, WebviInfo, WebviSelectBitmask, WebviConfig, WebviSelect from . import menu -VERSION = '0.4.9' +VERSION = '0.5.0' # Default options DEFAULT_PLAYERS = ['mplayer -cache-min 10 "%s"', |