From 80c04529681b844de88cfa47ec743f847b37d7a2 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 23 Jul 2006 18:00:00 +0200 Subject: =?UTF-8?q?Version=201.4.1-2=20-=20Fixed=20the=20Makefile=20of=20t?= =?UTF-8?q?he=20'servicedemo'=20plugin,=20so=20that=20it=20defines=20the?= =?UTF-8?q?=20=20=20PLUGIN=20macro,=20which=20allows=20the=20Make.config?= =?UTF-8?q?=20file=20to=20react=20properly=20when=20=20=20compiling=20the?= =?UTF-8?q?=20plugin=20(reported=20by=20Bernd=20Melcher).=20=20=20Note=20t?= =?UTF-8?q?o=20all=20plugin=20developers:=20a=20plugin's=20Makefile=20*mus?= =?UTF-8?q?t*=20define=20the=20PLUGIN=20=20=20macro,=20even=20if=20it=20do?= =?UTF-8?q?esn't=20use=20it=20itself!=20-=20Added=20a=20comment=20regardin?= =?UTF-8?q?g=20the=20PLUGIN=20macro=20to=20the=20'newplugin'=20script.=20-?= =?UTF-8?q?=20Added=20'--vfat'=20to=20the=20vdr.1=20man=20page=20(reported?= =?UTF-8?q?=20by=20Udo=20Richter).=20-=20Removed=20a=20double=20fdopen()?= =?UTF-8?q?=20in=20cPipe::Open()=20(reported=20by=20Stefan=20Huelswitt).?= =?UTF-8?q?=20-=20Fixed=20handling=20the=20running=20status=20of=20EPG=20e?= =?UTF-8?q?vents=20before=20the=20currently=20running=20one,=20=20=20in=20?= =?UTF-8?q?case=20they=20are=20added=20after=20the=20current=20event.=20-?= =?UTF-8?q?=20cEIT::cEIT()=20now=20calls=20pSchedule->SetPresentSeen()=20e?= =?UTF-8?q?ven=20if=20OnlyRunningStatus=20is=20=20=20true.=20-=20Newlines?= =?UTF-8?q?=20in=20title=20and=20short=20text=20of=20an=20EPG=20event=20ar?= =?UTF-8?q?e=20now=20changed=20into=20blanks=20only=20=20=20after=20all=20?= =?UTF-8?q?other=20fixes,=20because=20a=20short=20text=20might=20become=20?= =?UTF-8?q?a=20description.=20-=20Fixed=20handling=20network=20masks=20in?= =?UTF-8?q?=20the=20svdrphosts.conf=20file=20(thanks=20to=20Patrick=20=20?= =?UTF-8?q?=20Maier).=20-=20Fixed=20handling=20relative=20volume=20setting?= =?UTF-8?q?s=20in=20the=20call=20to=20cStatus::MsgSetVolume()=20=20=20(rep?= =?UTF-8?q?orted=20by=20Norbert=20Wentz).=20-=20Added=20a=20missing=20init?= =?UTF-8?q?ialization=20of=20'mutex'=20in=20cCiMenu::cCiMenu()=20and=20rem?= =?UTF-8?q?oved=20=20=20some=20superfluous=20semicolons=20in=20ci.c=20(tha?= =?UTF-8?q?nks=20to=20Marco=20Schl=C3=BC=C3=9Fler).=20-=20Fixed=20handling?= =?UTF-8?q?=20client=20side=20termination=20of=20SVDRP=20connections=20(th?= =?UTF-8?q?anks=20to=20Frank=20=20=20Schmirler).=20-=20cDevice::GetDevice(?= =?UTF-8?q?)=20now=20prefers=20any=20device=20that's=20already=20receiving?= =?UTF-8?q?=20and=20doesn't=20=20=20require=20detatching=20receivers=20(su?= =?UTF-8?q?ggested=20by=20Anssi=20Hannula).=20-=20Fixed=20handling=20numer?= =?UTF-8?q?ic=20keys=20in=20the=20channel=20display=20after=20switching=20?= =?UTF-8?q?channel=20groups=20=20=20(thanks=20to=20Andreas=20Regel).=20-?= =?UTF-8?q?=20Menu=20items=20derived=20from=20cMenuEditIntItem=20now=20loo?= =?UTF-8?q?p=20though=20their=20values=20if=20they=20=20=20have=20a=20dedi?= =?UTF-8?q?cated=20minimum=20or=20maximum=20limit=20(suggested=20by=20Andy?= =?UTF-8?q?=20Grobb).=20Looping=20is=20=20=20only=20done=20for=20normal=20?= =?UTF-8?q?keypresses,=20not=20for=20repeated=20ones.=20This=20allows=20th?= =?UTF-8?q?e=20user=20to=20=20=20scroll=20the=20value=20all=20the=20way=20?= =?UTF-8?q?to=20the=20limit=20by=20keeping=20the=20key=20pressed.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- newplugin | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'newplugin') diff --git a/newplugin b/newplugin index 98b8645..dd49140 100755 --- a/newplugin +++ b/newplugin @@ -12,7 +12,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: newplugin 1.28 2006/04/24 17:18:41 kls Exp $ +# $Id: newplugin 1.29 2006/06/24 09:15:17 kls Exp $ $PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin \n"; @@ -61,6 +61,8 @@ $MAKEFILE = qq # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. # By default the main source file also carries this name. +# IPORTANT: the presence of this macro is important for the Make.config +# file. So it must be defined, even if it is not used here! # PLUGIN = $PLUGIN_NAME -- cgit v1.2.3