r21071 - in /branches/upstream/libgd-securityimage-perl/current: Changes META.yml lib/GD/SecurityImage.pm lib/GD/SecurityImage/Magick.pm
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Sat Jun 14 20:01:22 UTC 2008
Author: gregoa
Date: Sat Jun 14 20:01:22 2008
New Revision: 21071
URL: http://svn.debian.org/wsvn/?sc=1&rev=21071
Log:
[svn-upgrade] Integrating new upstream version, libgd-securityimage-perl (1.66)
Modified:
branches/upstream/libgd-securityimage-perl/current/Changes
branches/upstream/libgd-securityimage-perl/current/META.yml
branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage.pm
branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage/Magick.pm
Modified: branches/upstream/libgd-securityimage-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libgd-securityimage-perl/current/Changes?rev=21071&op=diff
==============================================================================
--- branches/upstream/libgd-securityimage-perl/current/Changes (original)
+++ branches/upstream/libgd-securityimage-perl/current/Changes Sat Jun 14 20:01:22 2008
@@ -1,6 +1,9 @@
Revision history for Perl extension GD::SecurityImage.
Time zone is GMT+2.
+
+1.66 Sun Jun 8 17:03:24 2008
+ => Fix for RT#35115.
1.65 Wed Feb 27 21:47:38 2008
=> Fix for RT#33629.
Modified: branches/upstream/libgd-securityimage-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libgd-securityimage-perl/current/META.yml?rev=21071&op=diff
==============================================================================
--- branches/upstream/libgd-securityimage-perl/current/META.yml (original)
+++ branches/upstream/libgd-securityimage-perl/current/META.yml Sat Jun 14 20:01:22 2008
@@ -1,6 +1,6 @@
---
name: GD-SecurityImage
-version: 1.65
+version: 1.66
author:
- 'Burak Gursoy <burak at cpan.org>'
abstract: Security image (captcha) generator.
@@ -14,13 +14,13 @@
provides:
GD::SecurityImage:
file: lib/GD/SecurityImage.pm
- version: 1.65
+ version: 1.66
GD::SecurityImage::GD:
file: lib/GD/SecurityImage/GD.pm
version: 1.50
GD::SecurityImage::Magick:
file: lib/GD/SecurityImage/Magick.pm
- version: 1.37
+ version: 1.38
GD::SecurityImage::Styles:
file: lib/GD/SecurityImage/Styles.pm
version: 1.21
Modified: branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage.pm?rev=21071&op=diff
==============================================================================
--- branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage.pm (original)
+++ branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage.pm Sat Jun 14 20:01:22 2008
@@ -4,7 +4,7 @@
use GD::SecurityImage::Styles;
use Carp qw(croak);
-$VERSION = '1.65';
+$VERSION = '1.66';
sub import {
my $class = shift;
Modified: branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage/Magick.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage/Magick.pm?rev=21071&op=diff
==============================================================================
--- branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage/Magick.pm (original)
+++ branches/upstream/libgd-securityimage-perl/current/lib/GD/SecurityImage/Magick.pm Sat Jun 14 20:01:22 2008
@@ -18,7 +18,7 @@
use Image::Magick;
-$VERSION = '1.37';
+$VERSION = '1.38';
sub init {
# Create the image object
@@ -143,6 +143,7 @@
points => "$x1,$y1 $x2,$y2",
stroke => $self->cconvert($color),
strokewidth => $self->{MAGICK}{strokewidth},
+ fill => 'transparent',
);
}
@@ -166,6 +167,7 @@
points => "$cx,$cy $width,$height 0,360",
stroke => $self->cconvert($color),
strokewidth => $self->{MAGICK}{strokewidth},
+ fill => 'transparent',
);
}
@@ -179,6 +181,7 @@
points => "$cx,$cy $width,$height $start,$end",
stroke => $self->cconvert($color),
strokewidth => $self->{MAGICK}{strokewidth},
+ fill => 'transparent',
);
}
More information about the Pkg-perl-cvs-commits
mailing list