mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed setting the OSD size in the 'Confirm' interface call
This commit is contained in:
parent
1d9eb9f7bc
commit
0f45a56f28
@ -55,6 +55,7 @@ Alberto Carraro <bertocar@tin.it>
|
||||
|
||||
Deti Fliegl <deti@fliegl.de>
|
||||
for implementing the 'CurrentChannel' setup parameter
|
||||
for fixing setting the OSD size in the 'Confirm' interface call
|
||||
|
||||
Dave Chapman <dave@dchapman.com>
|
||||
for implementing support for the teletext PID
|
||||
|
7
HISTORY
7
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).
|
||||
|
4
config.h
4
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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user