mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	Unified the internal sequence of actions when pressing the Blue and the Back key, respectively, during replay
This commit is contained in:
		@@ -3163,3 +3163,7 @@ Dominique Dumont <domi.dumont@free.fr>
 | 
			
		||||
Manfred V<>lkel <mvoelkel@digitaldevices.de>
 | 
			
		||||
 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
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										5
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										5
									
								
								HISTORY
									
									
									
									
									
								
							@@ -7831,3 +7831,8 @@ Video Disk Recorder Revision History
 | 
			
		||||
  Manfred V<>lkel and Oliver Endriss).
 | 
			
		||||
- Fixed cleaning up old EPG events in case no epg data file is given (reported by
 | 
			
		||||
  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).
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										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 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
 | 
			
		||||
@@ -22,8 +22,8 @@
 | 
			
		||||
 | 
			
		||||
// VDR's own version number:
 | 
			
		||||
 | 
			
		||||
#define VDRVERSION  "2.0.3"
 | 
			
		||||
#define VDRVERSNUM   20003  // Version * 10000 + Major * 100 + Minor
 | 
			
		||||
#define VDRVERSION  "2.0.4"
 | 
			
		||||
#define VDRVERSNUM   20004  // Version * 10000 + Major * 100 + Minor
 | 
			
		||||
 | 
			
		||||
// The plugin API's version number:
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										8
									
								
								menu.c
									
									
									
									
									
								
							
							
						
						
									
										8
									
								
								menu.c
									
									
									
									
									
								
							@@ -4,7 +4,7 @@
 | 
			
		||||
 * See the main source file 'vdr.c' for copyright information and
 | 
			
		||||
 * 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"
 | 
			
		||||
@@ -4968,10 +4968,8 @@ eOSState cReplayControl::ProcessKey(eKeys Key)
 | 
			
		||||
                           else
 | 
			
		||||
                              Show();
 | 
			
		||||
                           break;
 | 
			
		||||
            case kBack:    if (Setup.DelTimeshiftRec) {
 | 
			
		||||
                              cRecordControl* rc = cRecordControls::GetRecordControl(fileName);
 | 
			
		||||
                              return rc && rc->InstantId() ? osEnd : osRecordings;
 | 
			
		||||
                              }
 | 
			
		||||
            case kBack:    Hide();
 | 
			
		||||
                           Stop();
 | 
			
		||||
                           return osRecordings;
 | 
			
		||||
            default:       return osUnknown;
 | 
			
		||||
            }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user