summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes3
-rw-r--r--META.json4
-rw-r--r--META.yml4
-rw-r--r--Makefile.PL4
-rw-r--r--lib/App/XScreenSaver/DBus.pm4
-rw-r--r--lib/App/XScreenSaver/DBus/InhibitSleep.pm4
-rw-r--r--lib/App/XScreenSaver/DBus/Saver.pm4
-rw-r--r--lib/App/XScreenSaver/DBus/SaverProxy.pm4
-rwxr-xr-xscripts/xscreensaver-dbus14
9 files changed, 24 insertions, 21 deletions
diff --git a/Changes b/Changes
index 0a5fed9..c5f06d4 100644
--- a/Changes
+++ b/Changes
@@ -1,2 +1,5 @@
+1.0.1 2021-05-01 11:44:37+01:00 Europe/London
+ - fix distribution abstract, and some POD links
+
1.0.0 2021-05-01 11:18:38+01:00 Europe/London
- first CPAN release
diff --git a/META.json b/META.json
index f08436c..48edfa2 100644
--- a/META.json
+++ b/META.json
@@ -1,5 +1,5 @@
{
- "abstract" : "main application class",
+ "abstract" : "tie xscreensaver into dbus",
"author" : [
"Gianni Ceccarelli <dakkar@thenautilus.net>"
],
@@ -65,7 +65,7 @@
"url" : "git://luxion/xscreensaver-dbus"
}
},
- "version" : "1.0.0",
+ "version" : "1.0.1",
"x_generated_by_perl" : "v5.24.0",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.26",
"x_spdx_expression" : "AGPL-3.0"
diff --git a/META.yml b/META.yml
index 88cd183..8b549f3 100644
--- a/META.yml
+++ b/META.yml
@@ -1,5 +1,5 @@
---
-abstract: 'main application class'
+abstract: 'tie xscreensaver into dbus'
author:
- 'Gianni Ceccarelli <dakkar@thenautilus.net>'
build_requires:
@@ -37,7 +37,7 @@ requires:
warnings: '0'
resources:
repository: git://luxion/xscreensaver-dbus
-version: 1.0.0
+version: 1.0.1
x_generated_by_perl: v5.24.0
x_serialization_backend: 'YAML::Tiny version 1.73'
x_spdx_expression: AGPL-3.0
diff --git a/Makefile.PL b/Makefile.PL
index 402efe8..e10af5f 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -7,7 +7,7 @@ use 5.020000;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
- "ABSTRACT" => "main application class",
+ "ABSTRACT" => "tie xscreensaver into dbus",
"AUTHOR" => "Gianni Ceccarelli <dakkar\@thenautilus.net>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
@@ -41,7 +41,7 @@ my %WriteMakefileArgs = (
"IPC::Open3" => 0,
"Test::More" => 0
},
- "VERSION" => "1.0.0",
+ "VERSION" => "1.0.1",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/App/XScreenSaver/DBus.pm b/lib/App/XScreenSaver/DBus.pm
index ea83093..c302d9a 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::InhibitSleep;
use App::XScreenSaver::DBus::Saver;
-our $VERSION = '1.0.0'; # VERSION
+our $VERSION = '1.0.1'; # VERSION
# ABSTRACT: main application class
@@ -53,7 +53,7 @@ App::XScreenSaver::DBus - main application class
=head1 VERSION
-version 1.0.0
+version 1.0.1
=head1 SYNOPSIS
diff --git a/lib/App/XScreenSaver/DBus/InhibitSleep.pm b/lib/App/XScreenSaver/DBus/InhibitSleep.pm
index ce980d7..6a89709 100644
--- a/lib/App/XScreenSaver/DBus/InhibitSleep.pm
+++ b/lib/App/XScreenSaver/DBus/InhibitSleep.pm
@@ -6,7 +6,7 @@ use curry;
use Net::DBus;
use IPC::Run;
use Log::Any;
-our $VERSION = '1.0.0'; # VERSION
+our $VERSION = '1.0.1'; # VERSION
# ABSTRACT: implements the logind "inhibitor locks" protocol
@@ -93,7 +93,7 @@ App::XScreenSaver::DBus::InhibitSleep - implements the logind "inhibitor locks"
=head1 VERSION
-version 1.0.0
+version 1.0.1
=head1 SYNOPSIS
diff --git a/lib/App/XScreenSaver/DBus/Saver.pm b/lib/App/XScreenSaver/DBus/Saver.pm
index ea79278..ee2bf46 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.0'; # VERSION
+our $VERSION = '1.0.1'; # VERSION
# ABSTRACT: implements the "idle inhibition" protocol
@@ -172,7 +172,7 @@ App::XScreenSaver::DBus::Saver - implements the "idle inhibition" protocol
=head1 VERSION
-version 1.0.0
+version 1.0.1
=head1 SYNOPSIS
diff --git a/lib/App/XScreenSaver/DBus/SaverProxy.pm b/lib/App/XScreenSaver/DBus/SaverProxy.pm
index f6ed7b1..1383048 100644
--- a/lib/App/XScreenSaver/DBus/SaverProxy.pm
+++ b/lib/App/XScreenSaver/DBus/SaverProxy.pm
@@ -6,7 +6,7 @@ use experimental qw(signatures postderef);
# this is the interface name
use Net::DBus::Exporter qw(org.freedesktop.ScreenSaver);
use parent 'Net::DBus::Object';
-our $VERSION = '1.0.0'; # VERSION
+our $VERSION = '1.0.1'; # VERSION
# ABSTRACT: proxy dbus object
@@ -49,7 +49,7 @@ App::XScreenSaver::DBus::SaverProxy - proxy dbus object
=head1 VERSION
-version 1.0.0
+version 1.0.1
=head1 DESCRIPTION
diff --git a/scripts/xscreensaver-dbus b/scripts/xscreensaver-dbus
index e48cc92..b0e1270 100755
--- a/scripts/xscreensaver-dbus
+++ b/scripts/xscreensaver-dbus
@@ -4,7 +4,7 @@ use warnings;
use v5.20;
use Log::Any::Adapter Stdout => ( log_level => 'debug' );
use App::XScreenSaver::DBus;
-our $VERSION = '1.0.0'; # VERSION
+our $VERSION = '1.0.1'; # VERSION
# PODNAME: xscreensaver-dbus
# ABSTRACT: tie xscreensaver into dbus
@@ -23,7 +23,7 @@ xscreensaver-dbus - tie xscreensaver into dbus
=head1 VERSION
-version 1.0.0
+version 1.0.1
=head1 SYNOPSIS
@@ -64,23 +64,23 @@ So I wrote this.
=item *
-Martin Lucina F<xscreensaver-systemd> https://github.com/mato/xscreensaver-systemd
+L<< Martin Lucina F<xscreensaver-systemd>|https://github.com/mato/xscreensaver-systemd >>
=item *
-the Debian bug where the above program is first mentioned https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=781961
+L<the Debian bug where the above program is first mentioned|https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=781961>
=item *
-"Is there a decent way to inhibit screensavers in linux?" on StackOverflow https://stackoverflow.com/questions/460140/is-there-a-decent-way-to-inhibit-screensavers-in-linux
+L<"Is there a decent way to inhibit screensavers in linux?" on StackOverflow|https://stackoverflow.com/questions/460140/is-there-a-decent-way-to-inhibit-screensavers-in-linux>
=item *
-the systemd "Inhibitor Locks" documentation https://www.freedesktop.org/wiki/Software/systemd/inhibit/
+L<the systemd "Inhibitor Locks" documentation|https://www.freedesktop.org/wiki/Software/systemd/inhibit/>
=item *
-the "idle inhibition" spec https://people.freedesktop.org/~hadess/idle-inhibition-spec/index.html
+L<the "idle inhibition" spec|https://people.freedesktop.org/~hadess/idle-inhibition-spec/index.html>
=back