summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntti Ajanki <antti.ajanki@iki.fi>2011-04-17 13:39:02 +0300
committerAntti Ajanki <antti.ajanki@iki.fi>2011-04-17 13:39:50 +0300
commit7c8ba24916e0ba8f203b02bb6d92ad463b600c08 (patch)
tree28f855d3a4ed88f0b0a184c986aba592a29ad6fc
parentcff257c3a082608e4b91313b79f73020f14e6e53 (diff)
downloadvdr-plugin-webvideo-7c8ba24916e0ba8f203b02bb6d92ad463b600c08.tar.gz
vdr-plugin-webvideo-7c8ba24916e0ba8f203b02bb6d92ad463b600c08.tar.bz2
Bump version
-rw-r--r--HISTORY2
-rw-r--r--README.webvi2
-rw-r--r--debian/changelog18
-rw-r--r--debian/copyright4
-rw-r--r--src/libwebvi/libwebvi.c2
-rw-r--r--src/libwebvi/libwebvi.h2
-rw-r--r--src/libwebvi/webvi/api.py2
-rw-r--r--src/libwebvi/webvi/asyncurl.py2
-rw-r--r--src/libwebvi/webvi/constants.py2
-rw-r--r--src/libwebvi/webvi/download.py2
-rw-r--r--src/libwebvi/webvi/request.py2
-rw-r--r--src/libwebvi/webvi/utils.py2
-rw-r--r--src/libwebvi/webvi/version.py4
-rw-r--r--src/unittest/testdownload.c2
-rw-r--r--src/unittest/testlibwebvi.c2
-rw-r--r--src/unittest/testwebvi.py2
-rw-r--r--src/vdr-plugin/webvideo.c2
-rwxr-xr-xsrc/webvicli/webvi2
-rw-r--r--src/webvicli/webvicli/client.py4
-rw-r--r--src/webvicli/webvicli/menu.py2
20 files changed, 40 insertions, 22 deletions
diff --git a/HISTORY b/HISTORY
index a0ab3fa..664a96e 100644
--- a/HISTORY
+++ b/HISTORY
@@ -215,7 +215,7 @@ Video site modules:
- Command line arguments override config file options.
- Fixes for Youtube, Metacafe and Google modules.
-2011-xx-xx: Version 0.4.1
+2011-04-17: Version 0.4.1
- Fixed Youtube, Metacafe and Vimeo modules. Streaming does not work
on Vimeo.
diff --git a/README.webvi b/README.webvi
index f97dd1f..75c96f5 100644
--- a/README.webvi
+++ b/README.webvi
@@ -1,6 +1,6 @@
webvi - command line web video downloader
-Copyright 2009,2010 Antti Ajanki <antti.ajanki@iki.fi>
+Copyright 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/debian/changelog b/debian/changelog
index 31731ee..6639b84 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,21 @@
+vdr-plugin-webvideo (0.4.1-1) unstable; urgency=low
+
+ * Fixed Youtube, Metacafe and Vimeo modules. Streaming does not
+ work on Vimeo.
+ * Removed SVT Play module which was not working anymore.
+ * Accept -p as alternative to --postprocess (thanks to Matti
+ Lehtimäki).
+ * New option --prefermplayer prefers mplayer over xineliboutput when
+ streaming (thanks to Matti Lehtimäki).
+ * Bookmarklet for saving a video from the web browser (a patch by
+ Samuli Sorvakko).
+ * Updated Italian translation (thanks to Diego Pierotto)
+ * New option --verbose (webvi)
+ * New option --vfat (or vfat in config file) generates Windows
+ compatible filenames (plugin, webvi)
+
+ -- Antti Ajanki <antti.ajanki@iki.fi> Sun, 17 Apr 2011 13:31:57 +0300
+
vdr-plugin-webvideo (0.4.0-1) unstable; urgency=low
* SVDRP commands for playing and downloading videos (based on a patch
diff --git a/debian/copyright b/debian/copyright
index b1d4f0e..72edd86 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -10,10 +10,10 @@ Debian Maintainers:
Thomas Günther <tom@toms-cafe.de>
Copyright:
- (C) 2008, 2009, 2010 Antti Ajanki
+ (C) 2008-2011 Antti Ajanki
Copyright (Debian packaging):
- (C) 2008, 2009 Antti Ajanki
+ (C) 2008-2011 Antti Ajanki
(C) 2009 Tobias Grimm, Thomas Günther
License:
diff --git a/src/libwebvi/libwebvi.c b/src/libwebvi/libwebvi.c
index c4d9aed..d8a7b9c 100644
--- a/src/libwebvi/libwebvi.c
+++ b/src/libwebvi/libwebvi.c
@@ -1,7 +1,7 @@
/*
* libwebvi.c: C bindings for webvi Python module
*
- * Copyright (c) 2010 Antti Ajanki <antti.ajanki@iki.fi>
+ * Copyright (c) 2010, 2011 Antti Ajanki <antti.ajanki@iki.fi>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/libwebvi/libwebvi.h b/src/libwebvi/libwebvi.h
index b27628b..9253eea 100644
--- a/src/libwebvi/libwebvi.h
+++ b/src/libwebvi/libwebvi.h
@@ -1,7 +1,7 @@
/*
* libwebvi.h: C bindings for webvi Python module
*
- * Copyright (c) 2010 Antti Ajanki <antti.ajanki@iki.fi>
+ * Copyright (c) 2010, 2011 Antti Ajanki <antti.ajanki@iki.fi>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/libwebvi/webvi/api.py b/src/libwebvi/webvi/api.py
index ed4c4a5..f7f4ad1 100644
--- a/src/libwebvi/webvi/api.py
+++ b/src/libwebvi/webvi/api.py
@@ -1,6 +1,6 @@
# api.py - webvi API
#
-# Copyright (c) 2009, 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/libwebvi/webvi/asyncurl.py b/src/libwebvi/webvi/asyncurl.py
index afc575a..2ebcb99 100644
--- a/src/libwebvi/webvi/asyncurl.py
+++ b/src/libwebvi/webvi/asyncurl.py
@@ -1,6 +1,6 @@
# asyncurl.py - Wrapper class for using pycurl objects in asyncore
#
-# Copyright (c) 2009, 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/libwebvi/webvi/constants.py b/src/libwebvi/webvi/constants.py
index 860c876..2d29700 100644
--- a/src/libwebvi/webvi/constants.py
+++ b/src/libwebvi/webvi/constants.py
@@ -1,6 +1,6 @@
# constants.py - Python definitions for constants in libwebvi.h
#
-# Copyright (c) 2009, 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/libwebvi/webvi/download.py b/src/libwebvi/webvi/download.py
index 34240ff..02ec5a2 100644
--- a/src/libwebvi/webvi/download.py
+++ b/src/libwebvi/webvi/download.py
@@ -1,6 +1,6 @@
# download.py - webvi downloader backend
#
-# Copyright (c) 2009, 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/libwebvi/webvi/request.py b/src/libwebvi/webvi/request.py
index 82e0ebf..c110847 100644
--- a/src/libwebvi/webvi/request.py
+++ b/src/libwebvi/webvi/request.py
@@ -1,6 +1,6 @@
# request.py - webvi request class
#
-# Copyright (c) 2009, 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/libwebvi/webvi/utils.py b/src/libwebvi/webvi/utils.py
index cefe09a..0fddf17 100644
--- a/src/libwebvi/webvi/utils.py
+++ b/src/libwebvi/webvi/utils.py
@@ -1,6 +1,6 @@
# utils.py - misc. utility functions
#
-# Copyright (c) 2009, 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/libwebvi/webvi/version.py b/src/libwebvi/webvi/version.py
index 4c4865f..ab3d564 100644
--- a/src/libwebvi/webvi/version.py
+++ b/src/libwebvi/webvi/version.py
@@ -1,6 +1,6 @@
# version.py - webvi version
#
-# Copyright (c) 2009, 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -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.0'
+VERSION = '0.4.1'
diff --git a/src/unittest/testdownload.c b/src/unittest/testdownload.c
index 07cd124..4f1abba 100644
--- a/src/unittest/testdownload.c
+++ b/src/unittest/testdownload.c
@@ -1,7 +1,7 @@
/*
* testlibwebvi.c: unittest for webvi C bindings
*
- * Copyright (c) 2010 Antti Ajanki <antti.ajanki@iki.fi>
+ * Copyright (c) 2010, 2011 Antti Ajanki <antti.ajanki@iki.fi>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/unittest/testlibwebvi.c b/src/unittest/testlibwebvi.c
index 0dda58a..b922f3f 100644
--- a/src/unittest/testlibwebvi.c
+++ b/src/unittest/testlibwebvi.c
@@ -1,7 +1,7 @@
/*
* testlibwebvi.c: unittest for webvi C bindings
*
- * Copyright (c) 2010 Antti Ajanki <antti.ajanki@iki.fi>
+ * Copyright (c) 2010, 2011 Antti Ajanki <antti.ajanki@iki.fi>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/unittest/testwebvi.py b/src/unittest/testwebvi.py
index 814a1c4..53f61ab 100644
--- a/src/unittest/testwebvi.py
+++ b/src/unittest/testwebvi.py
@@ -3,7 +3,7 @@
# This file is part of vdr-webvideo-plugin.
#
-# Copyright 2009,2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c
index 0f985fc..077872e 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.0";
+const char *VERSION = "0.4.1";
static const char *DESCRIPTION = trNOOP("Download video files from the web");
static const char *MAINMENUENTRY = "Webvideo";
cMimeTypes *MimeTypes = NULL;
diff --git a/src/webvicli/webvi b/src/webvicli/webvi
index b8fa190..082b086 100755
--- a/src/webvicli/webvi
+++ b/src/webvicli/webvi
@@ -2,7 +2,7 @@
# menu.py - starter script for webvicli
#
-# Copyright (c) 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2010, 2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/webvicli/webvicli/client.py b/src/webvicli/webvicli/client.py
index cffae15..853d549 100644
--- a/src/webvicli/webvicli/client.py
+++ b/src/webvicli/webvicli/client.py
@@ -2,7 +2,7 @@
# webvicli.py - webvi command line client
#
-# Copyright (c) 2009, 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -36,7 +36,7 @@ from urlparse import urlparse
from webvi.constants import WebviRequestType, WebviErr, WebviOpt, WebviInfo, WebviSelectBitmask, WebviConfig
from . import menu
-VERSION = '0.4.0'
+VERSION = '0.4.1'
# Default options
DEFAULT_PLAYERS = ['vlc --play-and-exit "%s"',
diff --git a/src/webvicli/webvicli/menu.py b/src/webvicli/webvicli/menu.py
index 70ef6ea..f1f1f21 100644
--- a/src/webvicli/webvicli/menu.py
+++ b/src/webvicli/webvicli/menu.py
@@ -1,6 +1,6 @@
# menu.py - menu elements for webvicli
#
-# Copyright (c) 2009, 2010 Antti Ajanki <antti.ajanki@iki.fi>
+# Copyright (c) 2009-2011 Antti Ajanki <antti.ajanki@iki.fi>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by