mirror of https://github.com/GNOME/gimp.git
see plug-ins/perl/Changes
This commit is contained in:
parent
ec4edaaa67
commit
ea602d736c
|
@ -37,6 +37,8 @@ Revision history for Gimp-Perl extension.
|
|||
- pxgettext exits with success instead of error on version check,
|
||||
so the build doesn't completely die. (Yosh)
|
||||
- fixed examples/image_tile to use die instead of exit.
|
||||
- improved croak behaviour.
|
||||
- new plug-in: clear alpha.
|
||||
|
||||
1.19 Thu Jan 6 00:21:58 CET 2000
|
||||
- used N_ to mark all the menu paths, since gimp now tries to
|
||||
|
|
|
@ -504,7 +504,7 @@ sub ignore_functions(@) {
|
|||
}
|
||||
|
||||
sub recroak($) {
|
||||
$_[0] =~ s/ at .*? line \d+.*$//s;
|
||||
$_[0] =~ s/ at \S+ line \d+.*$//s;
|
||||
croak $_[0];
|
||||
}
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ if ($ARGV[0] ne "--writemakefile") {
|
|||
);
|
||||
@pdl_pins =
|
||||
qw(
|
||||
border gouge map_to_gradient pixelmap view3d
|
||||
border gouge map_to_gradient pixelmap view3d clear_alpha
|
||||
|
||||
fire
|
||||
); # fire should use nmormal gradient map!
|
||||
|
|
Loading…
Reference in New Issue