Fixed setting the OSD size in the 'Confirm' interface call

This commit is contained in:
Klaus Schmidinger 2001-12-01 12:03:52 +01:00
parent 1d9eb9f7bc
commit 0f45a56f28
4 changed files with 11 additions and 5 deletions

View File

@ -55,6 +55,7 @@ Alberto Carraro <bertocar@tin.it>
Deti Fliegl <deti@fliegl.de> Deti Fliegl <deti@fliegl.de>
for implementing the 'CurrentChannel' setup parameter for implementing the 'CurrentChannel' setup parameter
for fixing setting the OSD size in the 'Confirm' interface call
Dave Chapman <dave@dchapman.com> Dave Chapman <dave@dchapman.com>
for implementing support for the teletext PID for implementing support for the teletext PID

View File

@ -866,7 +866,7 @@ Video Disk Recorder Revision History
- The device /dev/video is now opened only if necessary (to GRAB an image), - 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. 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 - Fixed several channel definitions in 'channels.conf' (thanks to Thilo
Wunderlich). Wunderlich).
@ -878,3 +878,8 @@ Video Disk Recorder Revision History
- Changed the maximum value for PIDs in channels.conf from 0xFFFE to 0x1FFF. - Changed the maximum value for PIDs in channels.conf from 0xFFFE to 0x1FFF.
- Fixed DVD audio sync problems (thanks to Andreas Schultz). - Fixed DVD audio sync problems (thanks to Andreas Schultz).
- Fixed external AC3 replay for DVDs (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).

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * 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 #ifndef __CONFIG_H
@ -18,7 +18,7 @@
#include "eit.h" #include "eit.h"
#include "tools.h" #include "tools.h"
#define VDRVERSION "0.99" #define VDRVERSION "0.99pre2"
#define MAXPRIORITY 99 #define MAXPRIORITY 99
#define MAXLIFETIME 99 #define MAXLIFETIME 99

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * 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" #include "interface.h"
@ -318,7 +318,7 @@ void cInterface::Error(const char *s)
bool cInterface::Confirm(const char *s, int Seconds, bool WaitForTimeout) bool cInterface::Confirm(const char *s, int Seconds, bool WaitForTimeout)
{ {
Open(); Open(Setup.OSDwidth, -1);
isyslog(LOG_INFO, "confirm: %s", s); isyslog(LOG_INFO, "confirm: %s", s);
Status(s, clrBlack, clrYellow); Status(s, clrBlack, clrYellow);
eKeys k = Wait(Seconds); eKeys k = Wait(Seconds);