mirror of
https://codeberg.org/scip/leo.git
synced 2025-12-16 12:11:04 +01:00
Fixed rt.cpan.org#123087: add IO::Socket::SSL as dependency.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2.02:
|
||||||
|
|
||||||
|
Fixed rt.cpan.org#123087: add IO::Socket::SSL as dependency.
|
||||||
|
|
||||||
2.01:
|
2.01:
|
||||||
|
|
||||||
dict.leo.org now forces SSL via Cloudflare, we follow suit.
|
dict.leo.org now forces SSL via Cloudflare, we follow suit.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# made for WWW::Dict::Leo::Org 1.33 and up
|
# made for WWW::Dict::Leo::Org 2.01 and up
|
||||||
|
|
||||||
use ExtUtils::MakeMaker;
|
use ExtUtils::MakeMaker;
|
||||||
|
|
||||||
@@ -10,7 +10,7 @@ WriteMakefile(
|
|||||||
'clean' => { FILES => '*~' },
|
'clean' => { FILES => '*~' },
|
||||||
'EXCLUDE_EXT' => [ qw(README) ],
|
'EXCLUDE_EXT' => [ qw(README) ],
|
||||||
'PREREQ_PM' => { 'Carp::Heavy' => 0,
|
'PREREQ_PM' => { 'Carp::Heavy' => 0,
|
||||||
'IO::Socket' => 0,
|
'IO::Socket::SSL' => 0,
|
||||||
'MIME::Base64' => 0,
|
'MIME::Base64' => 0,
|
||||||
'XML::Simple' => 0
|
'XML::Simple' => 0
|
||||||
}
|
}
|
||||||
|
|||||||
2
Org.pm
2
Org.pm
@@ -7,7 +7,7 @@
|
|||||||
# or service marks of their respective holders.
|
# or service marks of their respective holders.
|
||||||
|
|
||||||
package WWW::Dict::Leo::Org;
|
package WWW::Dict::Leo::Org;
|
||||||
$WWW::Dict::Leo::Org::VERSION = "2.01";
|
$WWW::Dict::Leo::Org::VERSION = "2.02";
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|||||||
2
leo
2
leo
@@ -33,7 +33,7 @@ my $default_c = "\033[0m"; # reset default terminal color
|
|||||||
my $bold_c = "\033[0;34m"; # blue color
|
my $bold_c = "\033[0;34m"; # blue color
|
||||||
my $copy_c = "\033[0;35m"; # copyright message color (green)
|
my $copy_c = "\033[0;35m"; # copyright message color (green)
|
||||||
|
|
||||||
my $version = "2.01";
|
my $version = "2.02";
|
||||||
my $config = $ENV{HOME} . "/.leo";
|
my $config = $ENV{HOME} . "/.leo";
|
||||||
my $cache = $ENV{HOME} . "/.leo-CACHE.db";
|
my $cache = $ENV{HOME} . "/.leo-CACHE.db";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user