see plug-ins/perl/Changes

This commit is contained in:
Marc Lehmann 2000-05-10 00:23:15 +00:00
parent 9634c57e8d
commit f1e6982a46
5 changed files with 7 additions and 16 deletions

View File

@ -44,6 +44,8 @@ Revision history for Gimp-Perl extension.
- do no longer install roundrectsel and map_to_gradient plug-ins, since
(almost) equivalent c versions exist. If you need these plug-ins you
have to install them manually.
- changed logulator to use an imagetype of "RGBA,GRAYA,INDEXEDA" for all
script-fu's.
1.19 Thu Jan 6 00:21:58 CET 2000
- used N_ to mark all the menu paths, since gimp now tries to

View File

@ -39,7 +39,7 @@ if ($ARGV[0] ne "--writemakefile") {
xachlego xachshadow roundsel blended2
scratches blowinout terral_text xachvision perlcc translogo
animate_cells image_tile yinyang stamps font_table sethspin
perlotine randomblends innerbevel fit-text guidegrid roundrectsel
perlotine randomblends innerbevel fit-text guidegrid
repdup centerguide stampify goldenmean triangle mirrorsplit
layerfuncs randomart1 glowing_steel frame_reshuffle frame_filter
logulator guide_remove guides_to_selection burst
@ -47,7 +47,7 @@ if ($ARGV[0] ne "--writemakefile") {
);
@pdl_pins =
qw(
border gouge map_to_gradient pixelmap view3d clear_alpha
border gouge pixelmap view3d clear_alpha
fire
); # fire should use nmormal gradient map!

View File

@ -17,6 +17,7 @@ sub register($$$$$$$$$;@) {
my($function,$blurb,$help,$author,$copyright,$date,
$menupath,$imagetypes,$params,$code)=@_;
$function =~ s%^perl_fu_%logulator_% or die;
$imagetypes ||= "RGBA,GREYA,INDEXEDA";
my($i,$j)=0;
my($ti,$fsi,$fi);
$i=@$params;

View File

@ -57,7 +57,7 @@ register "pixelmap",
"Marc Lehmann",
"Marc Lehmann <pcg\@goof.com>",
"19991115",
N_"<Image>/Filters/Map/Pixelmap",
N_"<Image>/Filters/Map/Pixelmap...",
"*",
[
[PF_TEXT, "expression" , "The perl expression to use", "outer(\$x*0.1,\$y*0.2)\n->slice(\"*\$bpp\")"]
@ -70,7 +70,7 @@ register "pixelgen",
"Marc Lehmann",
"Marc Lehmann <pcg\@goof.com>",
"19991115",
N_"<Toolbox>/Xtns/Render/Pixelgenerator",
N_"<Toolbox>/Xtns/Render/Pixelgenerator...",
undef,
[
[PF_SPINNER, "width" , "The width of the new image to generate", 512, [1, 4096, 1]],

View File

@ -1,15 +1,3 @@
Tue May 9 19:52:19 CEST 2000 Stanislav Brabec <utx@penguin.cz>
* cs.po: Updated translation.
2000-05-08 Sven Neumann <sven@gimp.org>
* de.po: Updated german translation.
2000-05-07 Kjartan Maraas <kmaraas@online.no>
* no.po: Updated Norwegian translation.
Fri May 5 21:49:29 CEST 2000 Marc Lehmann <pcg@goof.com>
* $alltarget was never set (have to have a look at the logs).