diff options
| author | Antti Ajanki <antti.ajanki@iki.fi> | 2010-11-18 20:11:12 +0200 |
|---|---|---|
| committer | Antti Ajanki <antti.ajanki@iki.fi> | 2010-11-18 20:11:12 +0200 |
| commit | 6728fac61a344ff94ce4d8746957f585ec7c7ccf (patch) | |
| tree | 93fc63e34aa7219dfac9a3dbf542666ca9aab1a1 | |
| parent | 6edb052b185fe3045e4dcb4f541a5a05a167efb9 (diff) | |
| download | vdr-plugin-webvideo-6728fac61a344ff94ce4d8746957f585ec7c7ccf.tar.gz vdr-plugin-webvideo-6728fac61a344ff94ce4d8746957f585ec7c7ccf.tar.bz2 | |
prepare for release
| -rw-r--r-- | HISTORY | 15 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | debian/changelog | 11 | ||||
| -rw-r--r-- | src/libwebvi/webvi/version.py | 2 | ||||
| -rw-r--r-- | src/vdr-plugin/timer.c | 2 | ||||
| -rw-r--r-- | src/vdr-plugin/webvideo.c | 2 | ||||
| -rw-r--r-- | src/webvicli/webvicli/client.py | 2 |
7 files changed, 17 insertions, 19 deletions
@@ -203,15 +203,14 @@ Video site modules: - Fixed Google video module. - Disabled ruutu.fi search which is not working. -2010-xx-xx: Version 0.3.3 +2010-11-19: Version 0.4.0 -- correct template path in webvi.plugin.conf, use user CXXFLAGS, - SYSLIBDIR and DESTDIR in Makefiles, fix typos (patches by Ville - Skyttä). -- Command line arguments override config file. -- Support VDR 1.7 series by including Make.global. - SVDRP commands for playing and downloading videos (based on a patch by Matti Lehtimäki). - Bookmarklet for sending a video from web browser to VDR. -- Some Youtube links were broken. -- Fixed Metacafe and Google video modules. +- Correct template path in webvi.plugin.conf, respect user CXXFLAGS, + SYSLIBDIR and DESTDIR in Makefiles, fix typos (patches by Ville + Skyttä). +- Support VDR 1.7 series by including Make.global. +- Command line arguments override config file options. +- Fixes for Youtube, Metacafe and Google modules. @@ -68,7 +68,7 @@ install-webvi: install-libwebvi install-python install: install-vdr-plugin install-webvi install-conf -# Template directories were renamed in 0.3.3. Remove old templates. +# Template directories were renamed in 0.4.0. Remove old templates. uninstall-deprecated-templates: rm -rf $(DESTDIR)$(PREFIX)/share/webvi/templates/youtube rm -rf $(DESTDIR)$(PREFIX)/share/webvi/templates/svtplay diff --git a/debian/changelog b/debian/changelog index 1ad7374..31731ee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,15 +1,14 @@ -vdr-plugin-webvideo (0.3.3-1) unstable; urgency=low +vdr-plugin-webvideo (0.4.0-1) unstable; urgency=low - * Command line arguments override config file. - * Support VDR 1.7 series by including Make.global. * SVDRP commands for playing and downloading videos (based on a patch by Matti Lehtimäki). - * Some Youtube links were broken. - * Fixed Metacafe and Google video modules. + * Support VDR 1.7 series by including Make.global. + * Command line arguments override config file options. + * Fixes for Youtube, Metacafe and Google modules. * Bump standards version to 3.9.1.0 * Bump source format to 3.0 (native) - -- Antti Ajanki <antti.ajanki@iki.fi> Mon, 15 Nov 2010 20:49:43 +0200 + -- Antti Ajanki <antti.ajanki@iki.fi> Thu, 18 Nov 2010 20:10:09 +0200 vdr-plugin-webvideo (0.3.2-1) unstable; urgency=low diff --git a/src/libwebvi/webvi/version.py b/src/libwebvi/webvi/version.py index 6aa4fc8..4c4865f 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.3.3' +VERSION = '0.4.0' diff --git a/src/vdr-plugin/timer.c b/src/vdr-plugin/timer.c index 8158c29..b5a5c2b 100644 --- a/src/vdr-plugin/timer.c +++ b/src/vdr-plugin/timer.c @@ -315,7 +315,7 @@ void cWebviTimerManager::SaveHistory(FILE *f) { } char *cWebviTimerManager::UpgradedTemplatePath(char *ref) { - // template names changed in 0.3.3 + // template names changed in 0.4.0 const char *templateNameMap[10][2] = \ {{"wvt:///youtube/", "wvt:///www.youtube.com/"}, {"wvt:///svtplay/", "wvt:///svtplay.se/"}, diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c index 0c2cc9b..b9c663a 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.3.3"; +const char *VERSION = "0.4.0"; 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 e431589..9c092d4 100644 --- a/src/webvicli/webvicli/client.py +++ b/src/webvicli/webvicli/client.py @@ -36,7 +36,7 @@ from urlparse import urlparse from webvi.constants import WebviRequestType, WebviErr, WebviOpt, WebviInfo, WebviSelectBitmask, WebviConfig from . import menu -VERSION = '0.3.3' +VERSION = '0.4.0' # Default options DEFAULT_PLAYERS = ['vlc --play-and-exit "%s"', |
