see plug-ins/perl/Changes

This commit is contained in:
Marc Lehmann 1999-06-15 21:51:12 +00:00
parent 0030397f7d
commit c6ca37b9fb
3 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,6 @@
Revision history for Gimp-Perl extension.
1.093 Tue Jun 15 21:48:48 CEST 1999
- possible workaround for Gimp::Util::gimp_layer_get_position.
- WRAP, SMEAR and BLACK were not being exported.
- fixed small bug in pixelmap.
@ -10,6 +11,8 @@ Revision history for Gimp-Perl extension.
- allow uppercase letters in hex colour specifications.
- gimp_text_fontname ignored the image argument in
compatibility mode (patch by Dov Grobgeld).
- another solaris portability fix from Dov.
- fixed xachshadows.
1.092 Wed Jun 2 14:52:29 CEST 1999
- testsuite failed when !HAVE_PDL (and the whole package broke on

View File

@ -13,7 +13,7 @@ use subs qw(init end lock unlock canonicalize_color);
require DynaLoader;
@ISA=qw(DynaLoader);
$VERSION = 1.092;
$VERSION = 1.093;
@_param = qw(
PARAM_BOUNDARY PARAM_CHANNEL PARAM_COLOR PARAM_DISPLAY PARAM_DRAWABLE

View File

@ -52,7 +52,7 @@ register "xach_shadows",
$drawable->plug_in_pixelize($blocksize);
$shadowlayer = $drawable->layer_copy(0);
$img->add_layer($shadowlayer,0);
$checkmask = $shadowlayer->create_mask(WHITE_MASK);
$checkmask = $shadowlayer->create_mask(ADD_WHITE_MASK);
$img->add_layer_mask($shadowlayer, $checkmask);
plug_in_checkerboard ($img, $checkmask, 0, $blocksize);