mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a second place where a message should be given when an instant recording is started
This commit is contained in:
parent
806a7f6768
commit
a321947e47
@ -1655,3 +1655,7 @@ Andr
|
||||
Jürgen Schilling <juergen_schilling@web.de>
|
||||
for reporting that color buttons were displayed in the recording info menu if it
|
||||
has been invoked from a player
|
||||
|
||||
Jesus Bravo Alvarez <jba@pobox.com>
|
||||
for reporting a second place where a message should be given when an instant
|
||||
recording is started
|
||||
|
5
HISTORY
5
HISTORY
@ -4189,3 +4189,8 @@ Video Disk Recorder Revision History
|
||||
Ahrenberg).
|
||||
- No longer displaying color buttons in the recording info menu if it has been
|
||||
invoked from a player (reported by Jürgen Schilling).
|
||||
|
||||
2006-01-15: Version 1.3.40
|
||||
|
||||
- Fixed a second place where a message should be given when an instant recording
|
||||
is started (reported by Jesus Bravo Alvarez).
|
||||
|
6
config.h
6
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.240 2006/01/13 15:17:19 kls Exp $
|
||||
* $Id: config.h 1.241 2006/01/15 16:01:48 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef __CONFIG_H
|
||||
@ -19,8 +19,8 @@
|
||||
#include "i18n.h"
|
||||
#include "tools.h"
|
||||
|
||||
#define VDRVERSION "1.3.39"
|
||||
#define VDRVERSNUM 10339 // Version * 10000 + Major * 100 + Minor
|
||||
#define VDRVERSION "1.3.40"
|
||||
#define VDRVERSNUM 10340 // Version * 10000 + Major * 100 + Minor
|
||||
|
||||
#define MAXPRIORITY 99
|
||||
#define MAXLIFETIME 99
|
||||
|
4
vdr.c
4
vdr.c
@ -22,7 +22,7 @@
|
||||
*
|
||||
* The project's page is at http://www.cadsoft.de/vdr
|
||||
*
|
||||
* $Id: vdr.c 1.238 2006/01/15 13:31:57 kls Exp $
|
||||
* $Id: vdr.c 1.239 2006/01/15 16:01:32 kls Exp $
|
||||
*/
|
||||
|
||||
#include <getopt.h>
|
||||
@ -901,7 +901,7 @@ int main(int argc, char *argv[])
|
||||
case kRecord:
|
||||
if (!cControl::Control()) {
|
||||
if (cRecordControls::Start())
|
||||
;//XXX Skins.Message(mtInfo, tr("Recording"));
|
||||
Skins.Message(mtInfo, tr("Recording started"));
|
||||
else
|
||||
Skins.Message(mtError, tr("No free DVB device to record!"));
|
||||
key = kNone; // nobody else needs to see this key
|
||||
|
Loading…
Reference in New Issue
Block a user