summaryrefslogtreecommitdiff
path: root/lib/App/XScreenSaver
diff options
context:
space:
mode:
Diffstat (limited to 'lib/App/XScreenSaver')
-rw-r--r--lib/App/XScreenSaver/DBus.pm4
-rw-r--r--lib/App/XScreenSaver/DBus/Logind.pm4
-rw-r--r--lib/App/XScreenSaver/DBus/Saver.pm6
-rw-r--r--lib/App/XScreenSaver/DBus/SaverProxy.pm4
4 files changed, 9 insertions, 9 deletions
diff --git a/lib/App/XScreenSaver/DBus.pm b/lib/App/XScreenSaver/DBus.pm
index 990441d..907739f 100644
--- a/lib/App/XScreenSaver/DBus.pm
+++ b/lib/App/XScreenSaver/DBus.pm
@@ -6,7 +6,7 @@ use Net::DBus::Reactor;
use Log::Any;
use App::XScreenSaver::DBus::Logind;
use App::XScreenSaver::DBus::Saver;
-our $VERSION = '1.0.4'; # VERSION
+our $VERSION = '1.0.5'; # VERSION
# ABSTRACT: tie xscreensaver into dbus
@@ -53,7 +53,7 @@ App::XScreenSaver::DBus - tie xscreensaver into dbus
=head1 VERSION
-version 1.0.4
+version 1.0.5
=head1 SYNOPSIS
diff --git a/lib/App/XScreenSaver/DBus/Logind.pm b/lib/App/XScreenSaver/DBus/Logind.pm
index 0aea3c3..45de75f 100644
--- a/lib/App/XScreenSaver/DBus/Logind.pm
+++ b/lib/App/XScreenSaver/DBus/Logind.pm
@@ -6,7 +6,7 @@ use curry;
use Net::DBus;
use IPC::Run;
use Log::Any;
-our $VERSION = '1.0.4'; # VERSION
+our $VERSION = '1.0.5'; # VERSION
# ABSTRACT: implements the logind "inhibitor locks" and "session lock" protocols
@@ -120,7 +120,7 @@ App::XScreenSaver::DBus::Logind - implements the logind "inhibitor locks" and "s
=head1 VERSION
-version 1.0.4
+version 1.0.5
=head1 SYNOPSIS
diff --git a/lib/App/XScreenSaver/DBus/Saver.pm b/lib/App/XScreenSaver/DBus/Saver.pm
index 723a82b..c36bece 100644
--- a/lib/App/XScreenSaver/DBus/Saver.pm
+++ b/lib/App/XScreenSaver/DBus/Saver.pm
@@ -7,7 +7,7 @@ use Log::Any;
use Try::Tiny;
use IPC::Run;
use App::XScreenSaver::DBus::SaverProxy;
-our $VERSION = '1.0.4'; # VERSION
+our $VERSION = '1.0.5'; # VERSION
# ABSTRACT: implements the "idle inhibition" protocol
@@ -98,7 +98,7 @@ sub Inhibit($self,$name,$reason,$sender) {
return $cookie;
}
-sub Uninhibit($self,$cookie,$this_sender) {
+sub UnInhibit($self,$cookie,$this_sender) {
my $inhibit = delete $self->_inhibits->{$cookie}
or return;
my ($name, $reason, $sender) = @$inhibit;
@@ -166,7 +166,7 @@ App::XScreenSaver::DBus::Saver - implements the "idle inhibition" protocol
=head1 VERSION
-version 1.0.4
+version 1.0.5
=head1 SYNOPSIS
diff --git a/lib/App/XScreenSaver/DBus/SaverProxy.pm b/lib/App/XScreenSaver/DBus/SaverProxy.pm
index 32931ad..af4ec17 100644
--- a/lib/App/XScreenSaver/DBus/SaverProxy.pm
+++ b/lib/App/XScreenSaver/DBus/SaverProxy.pm
@@ -5,7 +5,7 @@ use warnings;
# this is the interface name
use Net::DBus::Exporter qw(org.freedesktop.ScreenSaver);
use parent 'Net::DBus::ProxyObject';
-our $VERSION = '1.0.4'; # VERSION
+our $VERSION = '1.0.5'; # VERSION
# ABSTRACT: proxy dbus object
dbus_method('Inhibit',['string','string','caller'],['uint32']);
@@ -25,7 +25,7 @@ App::XScreenSaver::DBus::SaverProxy - proxy dbus object
=head1 VERSION
-version 1.0.4
+version 1.0.5
=head1 AUTHOR