diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2011-08-08 21:30:40 +0300 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2011-08-08 21:30:40 +0300 |
commit | 1663c40dd22f7f9f38164cbdd79232d9702ec77b (patch) | |
tree | a455c3c092a9338f902de978b81b07f27eafe009 | |
parent | 3076938d5d8fc103baeaeb9eec56c049221fd70e (diff) | |
download | vdr-plugin-webvideo-1663c40dd22f7f9f38164cbdd79232d9702ec77b.tar.gz vdr-plugin-webvideo-1663c40dd22f7f9f38164cbdd79232d9702ec77b.tar.bz2 |
Bump version
-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
@@ -245,3 +245,9 @@ Video site modules: - Fixed "Error 501: No active sockets" by properly implementing timeouts - Improved ruutu.fi support + +2011-08-08: Version 0.4.4 + +- Fixed Youtube support +- Minor improvements in Katsomo and ruutu.fi support +- Disabled broken Vimeo search diff --git a/debian/changelog b/debian/changelog index 7a44917..869b1a1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +vdr-plugin-webvideo (0.4.4-1) unstable; urgency=low + + * Fixed Youtube support + * Minor improvements in Katsomo and ruutu.fi support + * Disabled broken Vimeo search + + -- Antti Ajanki <antti.ajanki@iki.fi> Mon, 08 Aug 2011 21:28:54 +0300 + vdr-plugin-webvideo (0.4.3-1) unstable; urgency=low * Streaming works on YLE Areena and on other sources which use diff --git a/src/libwebvi/webvi/version.py b/src/libwebvi/webvi/version.py index ffeb5c1..e312780 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.3' +VERSION = '0.4.4' diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c index 0a8e5b5..738f121 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.3"; +const char *VERSION = "0.4.4"; 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 ba263b7..6a145e1 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.3' +VERSION = '0.4.4' # Default options DEFAULT_PLAYERS = ['mplayer -cache-min 10 "%s"', |