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