mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed displaying the replay mode symbol in case of "Multi speed mode"
This commit is contained in:
parent
b8b41e4138
commit
3dc4a71fe6
@ -1384,6 +1384,8 @@ Marco Schl
|
|||||||
some superfluous semicolons in ci.c
|
some superfluous semicolons in ci.c
|
||||||
for pointing out what caused the problem with audio track descriptions after a
|
for pointing out what caused the problem with audio track descriptions after a
|
||||||
replay has been stopped
|
replay has been stopped
|
||||||
|
for reporting a problem with displaying the replay mode symbol in case of "Multi
|
||||||
|
speed mode"
|
||||||
|
|
||||||
Jürgen Schmitz <j.schmitz@web.de>
|
Jürgen Schmitz <j.schmitz@web.de>
|
||||||
for reporting a bug in displaying the current channel when switching via the SVDRP
|
for reporting a bug in displaying the current channel when switching via the SVDRP
|
||||||
|
5
HISTORY
5
HISTORY
@ -4980,3 +4980,8 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed deleting EPG events that have a running status of "pausing" or higher.
|
- Fixed deleting EPG events that have a running status of "pausing" or higher.
|
||||||
- Fixed handling NITs with more than one delivery system descriptor tag for the
|
- Fixed handling NITs with more than one delivery system descriptor tag for the
|
||||||
same transponder.
|
same transponder.
|
||||||
|
|
||||||
|
2006-11-04: Version 1.4.4
|
||||||
|
|
||||||
|
- Fixed displaying the replay mode symbol in case of "Multi speed mode" (reported
|
||||||
|
by Marco Schlüßler).
|
||||||
|
6
config.h
6
config.h
@ -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 1.276 2006/10/28 09:15:00 kls Exp $
|
* $Id: config.h 1.277 2006/11/04 13:19:31 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -21,8 +21,8 @@
|
|||||||
|
|
||||||
// VDR's own version number:
|
// VDR's own version number:
|
||||||
|
|
||||||
#define VDRVERSION "1.4.3-4"
|
#define VDRVERSION "1.4.4"
|
||||||
#define VDRVERSNUM 10403 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10404 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
// The plugin API's version number:
|
// The plugin API's version number:
|
||||||
|
|
||||||
|
6
menu.c
6
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.444 2006/10/20 13:18:38 kls Exp $
|
* $Id: menu.c 1.445 2006/11/04 13:13:18 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -3818,7 +3818,7 @@ cReplayControl::cReplayControl(void)
|
|||||||
visible = modeOnly = shown = displayFrames = false;
|
visible = modeOnly = shown = displayFrames = false;
|
||||||
lastCurrent = lastTotal = -1;
|
lastCurrent = lastTotal = -1;
|
||||||
lastPlay = lastForward = false;
|
lastPlay = lastForward = false;
|
||||||
lastSpeed = -1;
|
lastSpeed = -2; // an invalid value
|
||||||
timeoutShow = 0;
|
timeoutShow = 0;
|
||||||
timeSearchActive = false;
|
timeSearchActive = false;
|
||||||
marks.Load(fileName);
|
marks.Load(fileName);
|
||||||
@ -3885,7 +3885,7 @@ void cReplayControl::Hide(void)
|
|||||||
needsFastResponse = visible = false;
|
needsFastResponse = visible = false;
|
||||||
modeOnly = false;
|
modeOnly = false;
|
||||||
lastPlay = lastForward = false;
|
lastPlay = lastForward = false;
|
||||||
lastSpeed = -1;
|
lastSpeed = -2; // an invalid value
|
||||||
timeSearchActive = false;
|
timeSearchActive = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user