* app/app_procs.c: fix for (install-colormap) and splash screen
using gtk_preview_reset()
* configure.in: on some platforms libXmu doesn't require libSM and
libICE. configure should know this now.
* app/gradient.c: corrected WM_CLASS typo
* plug-ins/gfli/gfli.c: fix for load handler magic
* plug-ins/gtm/gtm.c: don't use naughty gccisms.
* plug-ins/gqbist
* plug-ins/maze: updated from registry
-Yosh
*plug-ins/ edge.c
added a check so it woudlnt segfault when
passed a non-existend drawable
threshold_alpha added a non-interactive mode
*app/brightness_contrast.c
app/color_balance.c
app/colormaps.c
app/curves.c
app/hue_saturation.c
app/posterize.c
app/threshold.c
-added a check so it wouldnt except
a indexed drawable. This was previosly possible via the pdb.
-adrian
* updated refract and warp plugins
* changed the INSTALL file to reflect the fact that gtk is a separate package
* app/text_tool.c: small patch for indexed images and antialiased toggle
-Yosh
* Fixed carve-it.scm and circuit.scm (circuit broke due
to a plugin update, carve-it broke due to theadd-layer stuff)
* Added a close button to the color picker info window
* changed index_palette.c a bit...now if you click with
MB11, it changes the current active color, clicking with MB3
opens the color in the color selector for editing
* Made some of the <Image>/Color/* menus sensitive to the image
type (gdisplay.c)
-adrian
CVS:
* app/indexed_palette.c: fix for wrong color selected in indexed
palette dialog
* app/xcf.c: don't crash on bad input (0 byte files)
* app/plug_in.h
* app/plug_in.c: fixes Gimp's most obscure bug. Failed plugin
queries are handle correctly now
* app/commands.c: added marching ants speed to preferences
* plug-ins/tiff/tiff.c: correction for inversion for MINISWHITE
images without alpha
* plug-ins/pcx/pcx.c: updated to new version
* app/paint_funcs.h: changed OPAQUE and TRANSPARENT to
OPAQUE_OPACITY and TRANSPARENT_OPACITY to avoid possible
conflicts. All affects .c files changed.
-Yosh
so that the files will get installed in share/gimp/gflares and share/gimp
/gfig
-renamed a few files in the gfig-examples dir (somehad spaces in
filename)
-update gimprc.in to reflect the new share/gimp/ dirs
-Adrian Likins
* ltconfig
* ltmain.sh: downgraded to libtool 1.0f at Jay's suggestion
* app/gimage.c: Fix for the "merge to alpha" bug from Nathan
Summers
* app/text_tool.c: Fix for the font spec bug from Nathan
Summers
* plug-ins/maze/maze.c
* plug-ins/rotate/rotate.c: updated from registry
* plug-ins/blur/blur.c
* plug-ins/randomize/randomize.c
* plug-ins/vpropagate/vpropagate.c
* plug-ins/warp/warp.c: more portability fixes for DEC OSF1
-Yosh
* INSTALL: updated to properly reflect installation procedure
* app/text_tool.c: Fixed bad string in tool description
* libgimp/gimppixelrgn.c: tiles aren't marked dirty in
gimp_pixel_rgn_get_pixel
* plug-ins/edge/edge.c
* plug-ins/edge/emboss.c
* plug-ins/edge/laplace.c
* plug-ins/edge/sobel.c: DEC OSF1 cannont handle reference to
array element with a negative arugment with an unsigned int
(gimp-joke-980108-0)
* plug-ins/sinus/sinus_logo.h: got rid of really long string
* plug-ins/refract/Makefile.am
* plug-ins/refract/refmain.c: fixed megawidget reference
* plug-ins/xpm/xpm.c: made our own case-insenstive strcmp
for checking for transperancy
-Yosh
* plug-ins/despeckle/despeckle.c: realloc buffers when the radius
of effect changes; save all values (not just radius) in plugin
data store; adjusted parameter handling to match PDB registration.
The algorithm still generates artifacts in the top rows of the
image. --sg
#
1) better integration to automake/autoconf/configure...
The rules are:
* by default look at -ltcl and -ltk
* you can specify --with-tcl and --with-tk to use
different versions, e.g. you can use --with-tcl=tcl80
and --with-tk=tk80 to use them.
* if your system has a dl library, it uses it, otherwise
not. This may cause problems if you have a -ldl, but
your tcl library doesn't need it :( There'll probably
be a --with-tcldl=no someday
2) make a few arrays bigger, particularily in the PDB interface.
3) type most of the numeric returns from the PDB, e.g.
a proc that returns a layer now returns `layer-#' instead
of just `#'. This may cause problems for scripts that
get an array and then iterate over it. (as in gimp-list-images
or similar)
4) consolio is now based on Jeff Hobbs `tkcon', much better than
the older one. And the license is much less restrictive.
5) The switch to tkcon unveiled several errors with the internal
packages, so I fixed most of them. Now sub-interpreters
can use the same PDB interface as the ``parent'' interp.
I should be able to make something akin to the script-fu
mechanism out of this... (someday)