diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2012-09-24 21:14:09 +0300 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2012-09-24 21:14:09 +0300 |
commit | d12e028bbf6d0c8cb818899d05ebdf74b211a1c8 (patch) | |
tree | 3e8932ccfe303aa02aab06e7358697f322142164 | |
parent | 315af10b62438e046799e69a125c9fd805167c89 (diff) | |
download | vdr-plugin-webvideo-d12e028bbf6d0c8cb818899d05ebdf74b211a1c8.tar.gz vdr-plugin-webvideo-d12e028bbf6d0c8cb818899d05ebdf74b211a1c8.tar.bz2 |
Bump version
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | TODO | 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 |
6 files changed, 17 insertions, 3 deletions
@@ -1,6 +1,10 @@ VDR Plugin 'webvideo' Revision History -------------------------------------- +2012-09-24: Version 0.4.8 + +- Fixed support for Youtube, Google Video, ruutu.fi, MoonTV + 2012-06-02: Version 0.4.7 - Support new Yle Areena @@ -16,3 +16,7 @@ when using external downloader process (YLE Areena) Fix support for mplayer plugin Kill external downloader process when the player stops mid-stream + +youtube: webvi --url doesn't work. Workaround: youtube-dl + +katsomo.fi is broken diff --git a/debian/changelog b/debian/changelog index 2fbddaf..6b6dee0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +vdr-plugin-webvideo (0.4.8-1) unstable; urgency=low + + * Fixed support for Youtube, Google Video, ruutu.fi, MoonTV + + -- Antti Ajanki <antti.ajanki@iki.fi> Mon, 24 Sep 2012 21:12:54 +0300 + vdr-plugin-webvideo (0.4.7-1) unstable; urgency=low * Support new Yle Areena diff --git a/src/libwebvi/webvi/version.py b/src/libwebvi/webvi/version.py index 78a6922..9614ec9 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.7' +VERSION = '0.4.8' diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c index 4cbbfa7..d18e347 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.7"; +const char *VERSION = "0.4.8"; 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 92bbc69..086bdd1 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.7' +VERSION = '0.4.8' # Default options DEFAULT_PLAYERS = ['mplayer -cache-min 10 "%s"', |