diff options
-rw-r--r-- | HISTORY | 6 | ||||
-rwxr-xr-x | vdrpbd | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -9,3 +9,9 @@ vdrpbd Revision History - Added template for /etc/vdrpbd.conf - Time range and number of keypresses for emergency reboot now configurable + +2015-01-09: Version 1.0.0 + +- vdrpbd now tries to get exclusive access to the power button device. + This fixes a problem with softhddevice which forwards all keyboard events to + VDR. This made it impossible to cancel a shutdown by pressing "power" again. @@ -28,7 +28,7 @@ use FileHandle; use constant {EVIOCGRAB => 0x40044590, EV_KEY => 1, KEY_POWER => 116}; my $HAVE_DBUS = eval {require Net::DBus;}; -my $VERSION = '0.1.0'; +my $VERSION = '1.0.0'; my $PROGNAME = 'vdrpbd'; my $PIDFILE = '/var/run/vdrpbd.pid'; my $CFGFILE = '/etc/vdrpbd.conf'; |