From 56e5836b54ab1a7f5ad5b067e867a0c9392c5e5b Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 28 Apr 2006 18:00:00 +0200 Subject: =?UTF-8?q?Version=201.3.49=20-=20Fixed=20initializing=20'noapiv'?= =?UTF-8?q?=20in=20the=20Makefile=20(reported=20by=20Ronny=20Kornexl).=20-?= =?UTF-8?q?=20Fixed=20extracting=20APIVERSION=20to=20work=20with=20older?= =?UTF-8?q?=20versions=20of=20'sed'=20(reported=20by=20=20=20Oliver=20Endr?= =?UTF-8?q?iss;=20thanks=20also=20to=20Udo=20Richter=20for=20a=20shorter?= =?UTF-8?q?=20version=20of=20the=20'sed'=20=20=20expression).=20-=20Fixed?= =?UTF-8?q?=20broken=20APIVERSION=20extraction=20line=20in=20'newplugin'?= =?UTF-8?q?=20(thanks=20to=20Oliver=20Endriss).=20-=20Fixed=20entering=20'?= =?UTF-8?q?0'=20in=20a=20cMenuEditIntItem=20(reported=20by=20Mirko=20D?= =?UTF-8?q?=C3=B6lle).=20-=20Updated=20the=20Italian=20OSD=20texts=20(than?= =?UTF-8?q?ks=20to=20Nino=20Gerbino).=20-=20Added=20a=20note=20about=20add?= =?UTF-8?q?ing=20'INCLUDES=20+=3D=20-I$(DVBDIR)/include'=20to=20an=20exist?= =?UTF-8?q?ing=20=20=20Make.config=20(problem=20reported=20by=20Markus=20E?= =?UTF-8?q?hrnsperger).=20-=20Fixed=20handling=20the=20cPluginManager::Act?= =?UTF-8?q?ive()=20result=20when=20pressing=20the=20"Power"=20key=20=20=20?= =?UTF-8?q?(reported=20by=20Werner=20F=C3=A4rber).=20-=20Added=20a=20hint?= =?UTF-8?q?=20about=20commenting=20out=20the=20line=20'#define=20USE=5FFAD?= =?UTF-8?q?VISE'=20in=20tools.c=20in=20=20=20case=20of=20problems=20with?= =?UTF-8?q?=20replaying=20in=20fast=20forward=20mode=20if=20the=20video=20?= =?UTF-8?q?directory=20is=20=20=20mounted=20via=20a=20Samba=20share=20(rep?= =?UTF-8?q?orted=20by=20Andy=20Grobb).=20-=20Changed=20the=20"Really=20res?= =?UTF-8?q?tart=3F"=20prompt=20in=20the=20call=20to=20cPluginManager::Acti?= =?UTF-8?q?ve()=20in=20=20=20menu.c=20to=20"restart=20anyway=3F"=20(sugges?= =?UTF-8?q?ted=20by=20Rolf=20Ahrenberg).=20-=20Removed=20the=20obsolete=20?= =?UTF-8?q?"'1'=20for=20encrypted=20radio=20channels"=20part=20from=20the?= =?UTF-8?q?=20description=20=20=20of=20the=20VPID=20in=20vdr.5=20(reported?= =?UTF-8?q?=20by=20Alexander=20Hans).=20-=20Fixed=20tuning=20to=20the=20ch?= =?UTF-8?q?annel=20of=20a=20VPS=20timer=20if=20the=20device=20is=20the=20a?= =?UTF-8?q?ctual=20device.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PLUGINS/src/hello/Makefile | 4 ++-- PLUGINS/src/osddemo/Makefile | 4 ++-- PLUGINS/src/servicedemo/Makefile | 4 ++-- PLUGINS/src/skincurses/Makefile | 4 ++-- PLUGINS/src/sky/Makefile | 4 ++-- PLUGINS/src/status/Makefile | 4 ++-- PLUGINS/src/svdrpdemo/Makefile | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) (limited to 'PLUGINS') diff --git a/PLUGINS/src/hello/Makefile b/PLUGINS/src/hello/Makefile index 2106cbf..cefc333 100644 --- a/PLUGINS/src/hello/Makefile +++ b/PLUGINS/src/hello/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.13 2006/04/22 09:59:44 kls Exp $ +# $Id: Makefile 1.14 2006/04/24 17:20:58 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -30,7 +30,7 @@ TMPDIR = /tmp ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell sed -ne '/define APIVERSION/ { s/^.*"\(.*\)".*$$/\1/; p }' $(VDRDIR)/config.h) +APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h) ### The name of the distribution archive: diff --git a/PLUGINS/src/osddemo/Makefile b/PLUGINS/src/osddemo/Makefile index 51317af..f0b1306 100644 --- a/PLUGINS/src/osddemo/Makefile +++ b/PLUGINS/src/osddemo/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.7 2006/04/22 09:59:49 kls Exp $ +# $Id: Makefile 1.8 2006/04/24 17:21:00 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -30,7 +30,7 @@ TMPDIR = /tmp ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell sed -ne '/define APIVERSION/ { s/^.*"\(.*\)".*$$/\1/; p }' $(VDRDIR)/config.h) +APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h) ### The name of the distribution archive: diff --git a/PLUGINS/src/servicedemo/Makefile b/PLUGINS/src/servicedemo/Makefile index 31e57a8..08e83c3 100644 --- a/PLUGINS/src/servicedemo/Makefile +++ b/PLUGINS/src/servicedemo/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.5 2006/04/22 09:59:55 kls Exp $ +# $Id: Makefile 1.6 2006/04/24 17:21:01 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -31,7 +31,7 @@ TMPDIR = /tmp ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell sed -ne '/define APIVERSION/ { s/^.*"\(.*\)".*$$/\1/; p }' $(VDRDIR)/config.h) +APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h) ### The name of the distribution archive: diff --git a/PLUGINS/src/skincurses/Makefile b/PLUGINS/src/skincurses/Makefile index ebb045f..05c5e05 100644 --- a/PLUGINS/src/skincurses/Makefile +++ b/PLUGINS/src/skincurses/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.5 2006/04/22 10:00:03 kls Exp $ +# $Id: Makefile 1.6 2006/04/24 17:21:02 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -30,7 +30,7 @@ TMPDIR = /tmp ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell sed -ne '/define APIVERSION/ { s/^.*"\(.*\)".*$$/\1/; p }' $(VDRDIR)/config.h) +APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h) ### The name of the distribution archive: diff --git a/PLUGINS/src/sky/Makefile b/PLUGINS/src/sky/Makefile index 2fad8b5..6b43441 100644 --- a/PLUGINS/src/sky/Makefile +++ b/PLUGINS/src/sky/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.7 2006/04/22 10:00:17 kls Exp $ +# $Id: Makefile 1.8 2006/04/24 17:21:03 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -30,7 +30,7 @@ TMPDIR = /tmp ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell sed -ne '/define APIVERSION/ { s/^.*"\(.*\)".*$$/\1/; p }' $(VDRDIR)/config.h) +APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h) ### The name of the distribution archive: diff --git a/PLUGINS/src/status/Makefile b/PLUGINS/src/status/Makefile index 21f8817..8cca759 100644 --- a/PLUGINS/src/status/Makefile +++ b/PLUGINS/src/status/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.11 2006/04/22 10:00:24 kls Exp $ +# $Id: Makefile 1.12 2006/04/24 17:21:04 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -30,7 +30,7 @@ TMPDIR = /tmp ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell sed -ne '/define APIVERSION/ { s/^.*"\(.*\)".*$$/\1/; p }' $(VDRDIR)/config.h) +APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h) ### The name of the distribution archive: diff --git a/PLUGINS/src/svdrpdemo/Makefile b/PLUGINS/src/svdrpdemo/Makefile index d9fd834..a191d51 100644 --- a/PLUGINS/src/svdrpdemo/Makefile +++ b/PLUGINS/src/svdrpdemo/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.5 2006/04/22 10:00:32 kls Exp $ +# $Id: Makefile 1.6 2006/04/24 17:21:06 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -30,7 +30,7 @@ TMPDIR = /tmp ### The version number of VDR's plugin API (taken from VDR's "config.h"): -APIVERSION = $(shell sed -ne '/define APIVERSION/ { s/^.*"\(.*\)".*$$/\1/; p }' $(VDRDIR)/config.h) +APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h) ### The name of the distribution archive: -- cgit v1.2.3