diff options
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-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, 13 insertions, 3 deletions
@@ -1,6 +1,10 @@ VDR Plugin 'webvideo' Revision History -------------------------------------- +2012-09-30: Version 0.4.9 + +- Fixed support for Youtube + 2012-09-24: Version 0.4.8 - Fixed support for Youtube, Google Video, ruutu.fi, MoonTV diff --git a/debian/changelog b/debian/changelog index 6b6dee0..764d1ef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +vdr-plugin-webvideo (0.4.9-1) unstable; urgency=low + + * Fixed support for Youtube + + -- Antti Ajanki <antti.ajanki@iki.fi> Sun, 30 Sep 2012 20:50:54 +0300 + vdr-plugin-webvideo (0.4.8-1) unstable; urgency=low * Fixed support for Youtube, Google Video, ruutu.fi, MoonTV diff --git a/src/libwebvi/webvi/version.py b/src/libwebvi/webvi/version.py index 9614ec9..71aca96 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.8' +VERSION = '0.4.9' diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c index d18e347..10106b4 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.8"; +const char *VERSION = "0.4.9"; 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 086bdd1..75f84c0 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.8' +VERSION = '0.4.9' # Default options DEFAULT_PLAYERS = ['mplayer -cache-min 10 "%s"', |