mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Timers that are currently recording are now marked with '#'
This commit is contained in:
parent
a4547681d5
commit
7092907ccd
2
HISTORY
2
HISTORY
@ -671,3 +671,5 @@ Video Disk Recorder Revision History
|
|||||||
maximum size of the recorded video files.
|
maximum size of the recorded video files.
|
||||||
- Fixed a bug in handling repeating timers that record over midnight (the
|
- Fixed a bug in handling repeating timers that record over midnight (the
|
||||||
calculation of matching timers has been completely rewritten).
|
calculation of matching timers has been completely rewritten).
|
||||||
|
- Timers that are currently recording are now marked with '#' in the "Timers"
|
||||||
|
menu.
|
||||||
|
3
MANUAL
3
MANUAL
@ -34,7 +34,8 @@ Video Disk Recorder User's Manual
|
|||||||
any changes that might have been made in the current menu.
|
any changes that might have been made in the current menu.
|
||||||
|
|
||||||
In the "Timers" menu, the current timer can be enabled or disabled with
|
In the "Timers" menu, the current timer can be enabled or disabled with
|
||||||
the "Right" or "Left" key, respectively (enabled timers are marked with ">").
|
the "Right" or "Left" key, respectively (enabled timers are marked with '>',
|
||||||
|
timers that are currently recording are marked with '#').
|
||||||
"Ok" here opens the "Edit timer" menu.
|
"Ok" here opens the "Edit timer" menu.
|
||||||
|
|
||||||
Textual options, like channel names or recording file names, can be edited
|
Textual options, like channel names or recording file names, can be edited
|
||||||
|
4
menu.c
4
menu.c
@ -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: menu.c 1.107 2001/08/25 13:37:27 kls Exp $
|
* $Id: menu.c 1.108 2001/08/26 12:13:24 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -975,7 +975,7 @@ void cMenuTimerItem::Set(void)
|
|||||||
{
|
{
|
||||||
char *buffer = NULL;
|
char *buffer = NULL;
|
||||||
asprintf(&buffer, "%c\t%d\t%s\t%02d:%02d\t%02d:%02d\t%s",
|
asprintf(&buffer, "%c\t%d\t%s\t%02d:%02d\t%02d:%02d\t%s",
|
||||||
timer->active ? '>' : ' ',
|
timer->active ? timer->recording ? '#' : '>' : ' ',
|
||||||
timer->channel,
|
timer->channel,
|
||||||
timer->PrintDay(timer->day),
|
timer->PrintDay(timer->day),
|
||||||
timer->start / 100,
|
timer->start / 100,
|
||||||
|
Loading…
Reference in New Issue
Block a user