diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 12154c81..dc5dd8f3 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -55,6 +55,7 @@ Alberto Carraro Deti Fliegl for implementing the 'CurrentChannel' setup parameter + for fixing setting the OSD size in the 'Confirm' interface call Dave Chapman for implementing support for the teletext PID diff --git a/HISTORY b/HISTORY index 3f00cb1a..80940ab5 100644 --- a/HISTORY +++ b/HISTORY @@ -866,7 +866,7 @@ Video Disk Recorder Revision History - The device /dev/video is now opened only if necessary (to GRAB an image), allowing other programs (like 'kvdr', for instance) to use that device. -2001-11-25: Version 0.99 +2001-11-25: Version 0.99pre1 - Fixed several channel definitions in 'channels.conf' (thanks to Thilo Wunderlich). @@ -878,3 +878,8 @@ Video Disk Recorder Revision History - Changed the maximum value for PIDs in channels.conf from 0xFFFE to 0x1FFF. - Fixed DVD audio sync problems (thanks to Andreas Schultz). - Fixed external AC3 replay for DVDs (thanks to Andreas Schultz). + +2001-12-01: Version 0.99pre2 + +- Fixed setting the OSD size in the 'Confirm' interface call (thanks to + Deti Fliegl). diff --git a/config.h b/config.h index 018d00ef..4f27f768 100644 --- a/config.h +++ b/config.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.86 2001/11/25 15:57:08 kls Exp $ + * $Id: config.h 1.87 2001/12/01 12:00:37 kls Exp $ */ #ifndef __CONFIG_H @@ -18,7 +18,7 @@ #include "eit.h" #include "tools.h" -#define VDRVERSION "0.99" +#define VDRVERSION "0.99pre2" #define MAXPRIORITY 99 #define MAXLIFETIME 99 diff --git a/interface.c b/interface.c index 8695a367..becf92cd 100644 --- a/interface.c +++ b/interface.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: interface.c 1.44 2001/09/01 15:18:46 kls Exp $ + * $Id: interface.c 1.45 2001/12/01 11:59:43 kls Exp $ */ #include "interface.h" @@ -318,7 +318,7 @@ void cInterface::Error(const char *s) bool cInterface::Confirm(const char *s, int Seconds, bool WaitForTimeout) { - Open(); + Open(Setup.OSDwidth, -1); isyslog(LOG_INFO, "confirm: %s", s); Status(s, clrBlack, clrYellow); eKeys k = Wait(Seconds);