diff options
-rwxr-xr-x | vdrpbd | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #!/usr/bin/perl # vdrpbd - A daemon to handle ACPI power button event on VDR systems -# Copyright (C) 2015 Manuel Reimer <manuel.reimer@gmx.de> +# Copyright (C) 2019 Manuel Reimer <manuel.reimer@gmx.de> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -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 = '2.0.0'; +my $VERSION = '2.0.1'; my $PROGNAME = 'vdrpbd'; my $PIDFILE = '/var/run/vdrpbd.pid'; my $CFGFILE = '/etc/vdrpbd.conf'; |