mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed handling the "Power" key in case a recording is going on and no plugin is active
This commit is contained in:
parent
70297ef174
commit
42ce340670
@ -1420,6 +1420,8 @@ Udo Richter <udo_richter@gmx.de>
|
|||||||
for suggesting to add a warning about plugins that don't honor APIVERSION in their
|
for suggesting to add a warning about plugins that don't honor APIVERSION in their
|
||||||
Makefile
|
Makefile
|
||||||
for providing a shorter version of the 'sed' expression for extracting APIVERSION
|
for providing a shorter version of the 'sed' expression for extracting APIVERSION
|
||||||
|
for fixing a bug in handling the "Power" key in case a recording is going on and
|
||||||
|
no plugin is active
|
||||||
|
|
||||||
Sven Kreiensen <svenk@kammer.uni-hannover.de>
|
Sven Kreiensen <svenk@kammer.uni-hannover.de>
|
||||||
for his help in keeping 'channels.conf.terr' up to date
|
for his help in keeping 'channels.conf.terr' up to date
|
||||||
@ -1886,3 +1888,7 @@ Markus Ehrnsperger <markus.ehrnsperger@googlemail.com>
|
|||||||
Werner Färber <w.faerber@gmx.de>
|
Werner Färber <w.faerber@gmx.de>
|
||||||
for reporting a bug in handling the cPluginManager::Active() result when pressing
|
for reporting a bug in handling the cPluginManager::Active() result when pressing
|
||||||
the "Power" key
|
the "Power" key
|
||||||
|
|
||||||
|
Dominique Simon <d.simon@gmx.net>
|
||||||
|
for reporting a bug in handling the "Power" key in case a recording is going on and
|
||||||
|
no plugin is active
|
||||||
|
5
HISTORY
5
HISTORY
@ -4677,3 +4677,8 @@ Video Disk Recorder Revision History
|
|||||||
- Removed the obsolete "'1' for encrypted radio channels" part from the description
|
- Removed the obsolete "'1' for encrypted radio channels" part from the description
|
||||||
of the VPID in vdr.5 (reported by Alexander Hans).
|
of the VPID in vdr.5 (reported by Alexander Hans).
|
||||||
- Fixed tuning to the channel of a VPS timer if the device is the actual device.
|
- Fixed tuning to the channel of a VPS timer if the device is the actual device.
|
||||||
|
|
||||||
|
2006-04-29: Version 1.4.0
|
||||||
|
|
||||||
|
- Fixed handling the "Power" key in case a recording is going on and no plugin
|
||||||
|
is active (thanks to Udo Richter; bug reported by Dominique Simon).
|
||||||
|
10
config.h
10
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.254 2006/04/28 12:33:13 kls Exp $
|
* $Id: config.h 1.255 2006/04/29 09:24:07 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
@ -21,13 +21,13 @@
|
|||||||
|
|
||||||
// VDR's own version number:
|
// VDR's own version number:
|
||||||
|
|
||||||
#define VDRVERSION "1.3.49"
|
#define VDRVERSION "1.4.0"
|
||||||
#define VDRVERSNUM 10349 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10400 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
// The plugin API's version number:
|
// The plugin API's version number:
|
||||||
|
|
||||||
#define APIVERSION "1.3.47"
|
#define APIVERSION "1.4.0"
|
||||||
#define APIVERSNUM 10347 // Version * 10000 + Major * 100 + Minor
|
#define APIVERSNUM 10400 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
// When loading plugins, VDR searches them by their APIVERSION, which
|
// When loading plugins, VDR searches them by their APIVERSION, which
|
||||||
// may be smaller than VDRVERSION in case there have been no changes to
|
// may be smaller than VDRVERSION in case there have been no changes to
|
||||||
|
18
vdr.c
18
vdr.c
@ -22,7 +22,7 @@
|
|||||||
*
|
*
|
||||||
* The project's page is at http://www.cadsoft.de/vdr
|
* The project's page is at http://www.cadsoft.de/vdr
|
||||||
*
|
*
|
||||||
* $Id: vdr.c 1.266 2006/04/28 13:23:55 kls Exp $
|
* $Id: vdr.c 1.267 2006/04/29 09:14:06 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
@ -970,20 +970,22 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
// Power off:
|
// Power off:
|
||||||
case kPower: isyslog("Power button pressed");
|
case kPower:
|
||||||
|
isyslog("Power button pressed");
|
||||||
DELETE_MENU;
|
DELETE_MENU;
|
||||||
if (!Shutdown) {
|
if (!Shutdown) {
|
||||||
Skins.Message(mtError, tr("Can't shutdown - option '-s' not given!"));
|
Skins.Message(mtError, tr("Can't shutdown - option '-s' not given!"));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (cRecordControls::Active()) {
|
|
||||||
if (Interface->Confirm(tr("Recording - shut down anyway?")))
|
|
||||||
ForceShutdown = true;
|
|
||||||
}
|
|
||||||
if (!cPluginManager::Active(tr("shut down anyway?")))
|
|
||||||
ForceShutdown = true;
|
|
||||||
LastActivity = 1; // not 0, see below!
|
LastActivity = 1; // not 0, see below!
|
||||||
UserShutdown = true;
|
UserShutdown = true;
|
||||||
|
if (cRecordControls::Active()) {
|
||||||
|
if (!Interface->Confirm(tr("Recording - shut down anyway?")))
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (cPluginManager::Active(tr("shut down anyway?")))
|
||||||
|
break;
|
||||||
|
ForceShutdown = true;
|
||||||
break;
|
break;
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user