see plug-ins/perl/Changes

This commit is contained in:
Marc Lehmann 2000-10-16 03:15:11 +00:00
parent be0f10bb4d
commit a8e130f532
5 changed files with 7 additions and 6 deletions

View File

@ -14,7 +14,8 @@ Revision history for Gimp-Perl extension.
- removed gimp_proc_db_proc_info from xs code in favour
of the PDB call.
- fix the parasite-editor as much as possible.
- fix install-po target (Sven)
- fixed bug reported by Andreas Jaekel (who chose not to accept
mail from me) regarding return values for register'ed scripts.
1.201 Thu Aug 24 23:44:43 CEST 2000
** LAST VERSION THAT WORKS WITH 1.0 **

View File

@ -758,7 +758,7 @@ sub register($$$$$$$$$;@) {
} elsif ($run_mode != &Gimp::RUN_NONINTERACTIVE) {
$img->display_new unless $input_image && $$img == $$input_image;
}
} elsif (!@$retvals) {
} elsif (!@$results) {
warn __"WARNING: $function returned something that is not an image: \"$img\"\n";
}
}

View File

@ -193,7 +193,7 @@ install :: install-po
$main::dont_embed || (cd embed && \$(MAKE) install)
install-po:
cd po && \$(MAKE) install
cd po && \$(MAKE) install-po
".$install;
}

View File

@ -45,8 +45,8 @@ register "xach_blocks",
N_"<Image>/Filters/Map/Xach Blocks...",
"*",
[
[PF_SLIDER, "block_size", "The size of the blocks", 10, [2, 255, 1]],
[PF_SLIDER, "knob_factor", "The size of your knob", 40, [10, 100, 5]],
[PF_SLIDER, "block_size", "The size of the blocks", 10, [0, 255, 1]],
[PF_SLIDER, "knob_factor", "The size of your knob", 40, [0, 100, 5]],
],
sub {
my($img,$drawable,$blocksize, $knobfactor)=@_;

View File

@ -40,7 +40,7 @@ register "xach_shadows",
N_"<Image>/Filters/Map/Xach Shadows...",
"RGB*, GRAY*",
[
[PF_SLIDER, "block_size", "The size of the blocks...", 10, [4, 255, 1]],
[PF_SLIDER, "block_size", "The size of the blocks...", 10, [0, 255, 1]],
],
sub {
my($img,$drawable,$blocksize) =@_;