diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2012-06-02 10:01:55 +0300 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2012-06-02 10:12:05 +0300 |
commit | 530c8cf3720227cee10fd3224783c321df1b5c6f (patch) | |
tree | 3356ea70b41ea8f53322d0f0adebe5a2e7e53d76 | |
parent | 2adcf3b5d24ea3c39cd5777570c94cf19243f61d (diff) | |
download | vdr-plugin-webvideo-530c8cf3720227cee10fd3224783c321df1b5c6f.tar.gz vdr-plugin-webvideo-530c8cf3720227cee10fd3224783c321df1b5c6f.tar.bz2 |
Bump version 0.4.7, update changelog
-rw-r--r-- | HISTORY | 6 | ||||
-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, 17 insertions, 3 deletions
@@ -1,6 +1,12 @@ VDR Plugin 'webvideo' Revision History -------------------------------------- +2012-06-02: Version 0.4.7 + +- Support new Yle Areena +- Removed broken Vimeo support +- Fixed MoonTV and Metacafe + 2012-02-26: Version 0.4.6 - webvi: New option --url for downloading a single video diff --git a/debian/changelog b/debian/changelog index be9e8d1..2fbddaf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +vdr-plugin-webvideo (0.4.7-1) unstable; urgency=low + + * Support new Yle Areena + * Removed broken Vimeo support + * Fixed MoonTV and Metacafe + + -- Antti Ajanki <antti.ajanki@iki.fi> Sat, 02 Jun 2012 10:00:50 +0300 + vdr-plugin-webvideo (0.4.6-1) unstable; urgency=low * webvi: New option --url for downloading a single video diff --git a/src/libwebvi/webvi/version.py b/src/libwebvi/webvi/version.py index 3055c0f..78a6922 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.6' +VERSION = '0.4.7' diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c index 3d3ea87..4cbbfa7 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.6"; +const char *VERSION = "0.4.7"; 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 3c2bd7c..0d42102 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.6' +VERSION = '0.4.7' # Default options DEFAULT_PLAYERS = ['mplayer -cache-min 10 "%s"', |