Compare commits

..

No commits in common. '0c3d8eb50143f1924eb2ae2ef46d7a7bd068723c' and '2ea3589c4ca263ce287a5aaef202b12f2b4cc7e5' have entirely different histories.

  1. 2
      .tito/packages/patrix
  2. 7
      patrix.spec
  3. 8
      scripts/patrix

@ -1 +1 @@
0.1.16-1 ./
0.1.15-1 ./

@ -1,5 +1,5 @@
Name: patrix
Version: 0.1.16
Version: 0.1.15
Release: 1%{?dist}
Summary: Command line client for Matrix
@ -23,7 +23,6 @@ Requires: perl(URI::Escape)
Requires: perl(Term::ReadKey)
Requires: perl(Hash::Merge::Simple)
Requires: perl(Scalar::Util)
Requires: perl(HTML::Strip)
%description
Patrix is a simple (and quite limited) client for the Matrix communication network
@ -53,10 +52,6 @@ room via the command line.
%{_bindir}/patrix
%changelog
* Mon Feb 13 2023 Daniel Berteaud <dbd@ehtrace.com> 0.1.16-1
- Add HTML::Strip to Required (dbd@ehtrace.com)
- Add HTML::Strip and always support HTML messages (imagotrigger@gmail.com)
* Tue Jul 26 2022 Daniel Berteaud <dbd@ehtrace.com> 0.1.15-1
- Resign with new key

@ -15,10 +15,8 @@ use URI::Escape;
use Term::ReadKey;
use Hash::Merge::Simple qw(merge);
use Scalar::Util qw(looks_like_number);
use HTML::Strip;
our $opt;
our $hs = HTML::Strip->new();
GetOptions(
"user=s" => \$opt->{user},
@ -258,12 +256,8 @@ sub send_msg {
}
my $json = {
msgtype => ($opt->{action} eq 'send-notice') ? 'm.notice' : 'm.text',
body => $hs->parse($opt->{message}),
formatted_body => $opt->{message},
format => "org.matrix.custom.html",
body => $opt->{message}
};
$hs->eof();
# If we send code, we have to format it correctly
if ($opt->{action} eq 'send-code'){
$json->{formatted_body} = '<pre><code>' . $opt->{message} . '</code></pre>';

Loading…
Cancel
Save