logo

ap-client

CLI-based client / toolbox for ActivityPub Client-to-Servergit clone https://hacktivis.me/git/ap-client.git
commit: fe7e0ff1ee4e3d4e2dc58b54b27f1f0f8fb0e66a
parent fb0743d7199947e310e396bfae7e733a5bb2359a
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu, 30 Mar 2023 08:40:57 +0200

Version 0.1.1

Diffstat:

MMakefile.PL2+-
Mlib/ActivityPub/PrettyPrint.pm2+-
Mscript/ap-backup3++-
Mscript/ap-fetch5++---
Mscript/ap-represent3++-
Mscript/webfinger1+
6 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/Makefile.PL b/Makefile.PL @@ -11,7 +11,7 @@ WriteMakefile( ABSTRACT => 'CLI-based client / toolbox for ActivityPub Client-to-Server', AUTHOR => 'Haelwenn (lanodan) Monnier <contact+ap-client@hacktivis.me>', LICENSE => 'bsd', - VERSION => 'v0.1.0', + VERSION => 'v0.1.1', EXE_FILES => [ 'script/ap-fetch', 'script/ap-represent', 'script/ap-backup' ], MAN1PODS => { diff --git a/lib/ActivityPub/PrettyPrint.pm b/lib/ActivityPub/PrettyPrint.pm @@ -3,7 +3,7 @@ # Copyright © 2020-2023 AP-Client Authors <https://hacktivis.me/git/ap-client/> # SPDX-License-Identifier: BSD-3-Clause package ActivityPub::PrettyPrint; -our $VERSION = '0.1.0'; +our $VERSION = 'v0.1.1'; use strict; use utf8; use open ":std", ":encoding(UTF-8)"; diff --git a/script/ap-backup b/script/ap-backup @@ -4,7 +4,8 @@ # SPDX-License-Identifier: BSD-3-Clause use strict; use utf8; -no warnings; # Wide Character… +use open ":std", ":encoding(UTF-8)"; +our $VERSION = 'v0.1.1'; use Getopt::Std; $Getopt::Std::STANDARD_HELP_VERSION = 1; diff --git a/script/ap-fetch b/script/ap-fetch @@ -2,11 +2,10 @@ # AP-Client: CLI-based client / toolbox for ActivityPub # Copyright © 2020-2023 AP-Client Authors <https://hacktivis.me/git/ap-client/> # SPDX-License-Identifier: BSD-3-Clause -package App::ApClient; - use strict; use utf8; -no warnings; # Wide Character… +use open ":std", ":encoding(UTF-8)"; +our $VERSION = 'v0.1.1'; use Getopt::Std; use LWP::UserAgent; diff --git a/script/ap-represent b/script/ap-represent @@ -4,7 +4,8 @@ # SPDX-License-Identifier: BSD-3-Clause use strict; use utf8; -no warnings; # Wide Character… +use open ":std", ":encoding(UTF-8)"; +our $VERSION = 'v0.1.1'; use JSON; use ActivityPub::PrettyPrint qw(print_object); diff --git a/script/webfinger b/script/webfinger @@ -4,6 +4,7 @@ # SPDX-License-Identifier: BSD-3-Clause use strict; use utf8; +our $VERSION = 'v0.1.1'; use LWP::UserAgent; use HTTP::Request::Common;