From 48fd2b04e9010bb67e19f33e8c7506a976b70e90 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 15 Dec 2002 18:00:00 +0100 Subject: =?UTF-8?q?Version=201.1.20=20-=20Now=20checking=20if=20there=20is?= =?UTF-8?q?=20a=20connection=20to=20the=20keyboard=20(thanks=20to=20Jaakko?= =?UTF-8?q?=20Hyv=C3=A4tti)=20=20=20and=20only=20creating=20the=20KBD=20re?= =?UTF-8?q?mote=20control=20if=20VDR=20is=20running=20in=20the=20foregroun?= =?UTF-8?q?d.=20-=20Fixed=20taking=20an=20active=20SVDRP=20connection=20in?= =?UTF-8?q?to=20account=20when=20doing=20shutdown=20(thanks=20=20=20to=20G?= =?UTF-8?q?regoire=20Favre=20for=20reporting=20this=20one).=20-=20Changed?= =?UTF-8?q?=20setting=20of=20CXX=20and=20CXXFLAGS=20variables=20in=20Makef?= =?UTF-8?q?ile,=20so=20that=20an=20externally=20=20=20defined=20value=20wi?= =?UTF-8?q?ll=20be=20taken=20if=20present=20(suggested=20by=20Robert=20Sch?= =?UTF-8?q?iele).=20=20=20Plugin=20authors=20should=20please=20change=20th?= =?UTF-8?q?e=20lines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CXX = g++ CXXFLAGS = -O2 -Wall -Woverloaded-virtual in their Makefile to CXX ?= g++ CXXFLAGS ?= -O2 -Wall -Woverloaded-virtual - Fixed recording overlapping timers on the same channel in case DO_REC_AND_PLAY_ON_PRIMARY_DEVICE and/or DO_MULTIPLE_RECORDINGS is not defined (thanks to Jaakko Hyvätti). - No longer stopping/restarting the DMX when switching audio channels (thanks to Sven Goethel). - Fixed high CPU load in 'Transfer Mode' (thanks to Oliver Endriss). - If a PC keyboard is used as remote control, the string entry fields in the menus now accept character input directly (however, this works only for keys that are not otherwise defined as remote control keys). Also, plugins can switch the cKbdRemote class into "raw mode", where all keyboard input will be made available through the new 'kKbd' key code and none of it will be processed as normal remote control functions (thanks to Jan Rieger for suggestions and testing). - Fixed deleting characters in string entry fields in 'insert' mode. - Now using "Doxygen" to generate source documentation (thanks to Walter Stroebel for providing an initial 'Doxyfile' configuration and adjusting some comments). See INSTALL for information how to do this. Some function descriptions have already been adapted to Doxygen, more will follow. --- PLUGINS/src/osddemo/HISTORY | 4 ++++ PLUGINS/src/osddemo/Makefile | 6 +++--- PLUGINS/src/osddemo/osddemo.c | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) (limited to 'PLUGINS/src/osddemo') diff --git a/PLUGINS/src/osddemo/HISTORY b/PLUGINS/src/osddemo/HISTORY index 8c9d3e1..c7d4ebc 100644 --- a/PLUGINS/src/osddemo/HISTORY +++ b/PLUGINS/src/osddemo/HISTORY @@ -4,3 +4,7 @@ VDR Plugin 'osddemo' Revision History 2002-11-23: Version 0.0.1 - Initial revision. + +2002-12-13: Version 0.1.0 + +- Changed setting of CXX and CXXFLAGS variables in Makefile. diff --git a/PLUGINS/src/osddemo/Makefile b/PLUGINS/src/osddemo/Makefile index ac56d1f..db87161 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.1 2002/11/23 14:56:44 kls Exp $ +# $Id: Makefile 1.2 2002/12/13 14:54:29 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -15,8 +15,8 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The C++ compiler and options: -CXX = g++ -CXXFLAGS = -O2 -Wall -Woverloaded-virtual +CXX ?= g++ +CXXFLAGS ?= -O2 -Wall -Woverloaded-virtual ### The directory environment: diff --git a/PLUGINS/src/osddemo/osddemo.c b/PLUGINS/src/osddemo/osddemo.c index f806178..3ac8a2d 100644 --- a/PLUGINS/src/osddemo/osddemo.c +++ b/PLUGINS/src/osddemo/osddemo.c @@ -3,12 +3,12 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: osddemo.c 1.1 2002/11/24 10:32:59 kls Exp $ + * $Id: osddemo.c 1.2 2002/12/13 15:02:01 kls Exp $ */ #include -static const char *VERSION = "0.0.1"; +static const char *VERSION = "0.1.0"; static const char *DESCRIPTION = "Demo of arbitrary OSD setup"; static const char *MAINMENUENTRY = "Osd Demo"; -- cgit v1.2.3