diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | src/libwebvi/Makefile | 2 | ||||
-rw-r--r-- | src/libwebvi/webvi/version.py | 4 | ||||
-rw-r--r-- | src/vdr-plugin/webvideo.c | 2 | ||||
-rw-r--r-- | src/version | 1 | ||||
-rw-r--r-- | src/webvicli/webvicli/client.py | 2 |
7 files changed, 11 insertions, 8 deletions
@@ -9,7 +9,7 @@ VDRPLUGINCONFDIR ?= /video/plugins # VDR's locale directory VDRLOCALEDIR ?= $(VDRDIR)/locale -VERSION := $(shell cat src/version) +VERSION := $(shell grep VERSION src/libwebvi/webvi/version.py | cut -d \' -f 2) TMPDIR = /tmp ARCHIVE = webvideo-$(VERSION) diff --git a/debian/changelog b/debian/changelog index bb51e34..ec003d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +vdr-plugin-webvideo (0.3.3-1) unstable; urgency=low + + * New version + + -- Antti Ajanki <antti.ajanki@iki.fi> Sat, 06 Nov 2010 10:40:54 +0200 + vdr-plugin-webvideo (0.3.2-1) unstable; urgency=low * Remove conffiles that have been obsolete since 0.2.0-1 diff --git a/src/libwebvi/Makefile b/src/libwebvi/Makefile index fc68277..895478f 100644 --- a/src/libwebvi/Makefile +++ b/src/libwebvi/Makefile @@ -5,7 +5,7 @@ LIBNAME=libwebvi.so LIBSONAME=$(LIBNAME).0 LIBMINOR=$(LIBSONAME).4 -VERSION:=$(shell cat ../version) +VERSION:=$(shell grep VERSION webvi/version.py | cut -d \' -f 2) PYLIB:=$(shell python pythonlibname.py) DEFINES:=-DPYTHONSHAREDLIB=\"$(PYLIB)\" -DLIBWEBVI_VERSION=\"$(VERSION)\" # append -DDEBUG to DEFINES to get debug output diff --git a/src/libwebvi/webvi/version.py b/src/libwebvi/webvi/version.py index 26cb817..6aa4fc8 100644 --- a/src/libwebvi/webvi/version.py +++ b/src/libwebvi/webvi/version.py @@ -15,6 +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/>. -MAJOR = '0' -MINOR = '2' -VERSION = MAJOR + '.' + MINOR +VERSION = '0.3.3' diff --git a/src/vdr-plugin/webvideo.c b/src/vdr-plugin/webvideo.c index 708569d..90e018a 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.2"; +const char *VERSION = "0.3.3"; static const char *DESCRIPTION = trNOOP("Download video files from the web"); static const char *MAINMENUENTRY = "Webvideo"; cMimeTypes *MimeTypes = NULL; diff --git a/src/version b/src/version deleted file mode 100644 index 9fc80f9..0000000 --- a/src/version +++ /dev/null @@ -1 +0,0 @@ -0.3.2
\ No newline at end of file diff --git a/src/webvicli/webvicli/client.py b/src/webvicli/webvicli/client.py index 9bfc820..6618ec3 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.2' +VERSION = '0.3.3' # Default options DEFAULT_PLAYERS = ['vlc --play-and-exit "%s"', |