Unified the internal sequence of actions when pressing the Blue and the Back key, respectively, during replay

This commit is contained in:
Klaus Schmidinger 2013-09-07 10:25:10 +02:00
parent c169e20141
commit c37fb11a08
4 changed files with 15 additions and 8 deletions

View File

@ -3163,3 +3163,7 @@ Dominique Dumont <domi.dumont@free.fr>
Manfred Völkel <mvoelkel@digitaldevices.de> Manfred Völkel <mvoelkel@digitaldevices.de>
for suggesting to make all bonded devices (except for the master) turn off their LNB for suggesting to make all bonded devices (except for the master) turn off their LNB
power completely to avoid problems when receiving vertically polarized transponders power completely to avoid problems when receiving vertically polarized transponders
Thomas Maass <mase@setho.org>
for reporting a difference in the internal sequence of actions when pressing the Blue
and the Back key, respectively, during replay

View File

@ -7831,3 +7831,8 @@ Video Disk Recorder Revision History
Manfred Völkel and Oliver Endriss). Manfred Völkel and Oliver Endriss).
- Fixed cleaning up old EPG events in case no epg data file is given (reported by - Fixed cleaning up old EPG events in case no epg data file is given (reported by
Dave Pickles). Dave Pickles).
2013-09-07: Version 2.0.4
- Unified the internal sequence of actions when pressing the Blue and the Back key,
respectively, during replay (reported by Thomas Maass).

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 2.76.1.3 2013/08/21 13:44:59 kls Exp $ * $Id: config.h 2.76.1.4 2013/09/07 10:25:10 kls Exp $
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -22,8 +22,8 @@
// VDR's own version number: // VDR's own version number:
#define VDRVERSION "2.0.3" #define VDRVERSION "2.0.4"
#define VDRVERSNUM 20003 // Version * 10000 + Major * 100 + Minor #define VDRVERSNUM 20004 // Version * 10000 + Major * 100 + Minor
// The plugin API's version number: // The plugin API's version number:

8
menu.c
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: menu.c 2.82.1.2 2013/04/27 10:32:28 kls Exp $ * $Id: menu.c 2.82.1.3 2013/09/07 10:24:48 kls Exp $
*/ */
#include "menu.h" #include "menu.h"
@ -4968,10 +4968,8 @@ eOSState cReplayControl::ProcessKey(eKeys Key)
else else
Show(); Show();
break; break;
case kBack: if (Setup.DelTimeshiftRec) { case kBack: Hide();
cRecordControl* rc = cRecordControls::GetRecordControl(fileName); Stop();
return rc && rc->InstantId() ? osEnd : osRecordings;
}
return osRecordings; return osRecordings;
default: return osUnknown; default: return osUnknown;
} }