Made 1.1.7 release

* Made 1.1.7 release

* configure.in: version number bump

* ltconfig
* ltmain.sh: libtool 1.3.3

* app/channel_cmds.c
* tools/pdbgen/pdb/channel.pdb: remove opacity_arg alias for channel new

* Makefile.am: add pixmaps

* borderaverage moved into it's own dir again, to avoid gck problems

-Yosh
This commit is contained in:
Manish Singh
1999-07-17 20:37:31 +00:00
parent 2ce4bac56d
commit fe7e21af8e
41 changed files with 19371 additions and 15996 deletions

View File

@ -81,10 +81,7 @@ sub channel_set_prop_proc {
if ($type eq 'color') {
%invoke = (
vars => [ 'int i' ],
code => <<CODE
channel_set_color(channel, $prop);
CODE
code => "channel_set_color(channel, $prop);"
);
}
}
@ -133,7 +130,7 @@ HELP
{ name => 'name', type => 'string',
desc => 'The channel name' },
{ name => 'opacity', type => '0 <= float <= 100',
desc => 'The channel opacity: (%%desc%%)', alias => 'opacity_arg' },
desc => 'The channel opacity: (%%desc%%)' },
{ name => 'color', type => 'color',
desc => 'The channel compositing color' }
);
@ -145,7 +142,6 @@ HELP
);
%invoke = (
vars => [ 'int opacity' ],
code => <<'CODE'
{
channel_set_opacity (channel, opacity);