new plug-in from Tim Copperfield, made work with the GIMP 2.1 API by

2004-10-20  Michael Natterer  <mitch@gimp.org>

	* plug-ins/common/raw.c: new plug-in from Tim Copperfield, made
	work with the GIMP 2.1 API by Philipp Gühring, then heavily
	cleaned up and undeprecated by myself. Fixes bug #144943.

	(still uses GtkPreview, but i wanted a sane state in cvs to diff
	 against before replacing it)

	* plug-ins/common/plugin-defs.pl: changed accordingly.

	* plug-ins/common/Makefile.am: regenerated.
This commit is contained in:
Michael Natterer 2004-10-20 18:18:26 +00:00 committed by Michael Natterer
parent 6e665fb329
commit f469155dcb
5 changed files with 1222 additions and 0 deletions

View file

@ -1,3 +1,16 @@
2004-10-20 Michael Natterer <mitch@gimp.org>
* plug-ins/common/raw.c: new plug-in from Tim Copperfield, made
work with the GIMP 2.1 API by Philipp Gühring, then heavily
cleaned up and undeprecated by myself. Fixes bug #144943.
(still uses GtkPreview, but i wanted a sane state in cvs to diff
against before replacing it)
* plug-ins/common/plugin-defs.pl: changed accordingly.
* plug-ins/common/Makefile.am: regenerated.
2004-10-20 Michael Natterer <mitch@gimp.org>
Fixed bug #155733 for libgimp:

View file

@ -97,6 +97,7 @@ psd
psd_save
psp
randomize
raw
ripple
rotate
sample_colorize

View file

@ -122,6 +122,7 @@ libexec_PROGRAMS = \
psd_save \
$(PSP) \
randomize \
raw \
ripple \
rotate \
sample_colorize \
@ -1415,6 +1416,19 @@ randomize_LDADD = \
$(RT_LIBS) \
$(INTLLIBS)
raw_SOURCES = \
raw.c
raw_LDADD = \
$(libgimpui) \
$(libgimpwidgets) \
$(libgimp) \
$(libgimpcolor) \
$(libgimpbase) \
$(GTK_LIBS) \
$(RT_LIBS) \
$(INTLLIBS)
ripple_SOURCES = \
ripple.c

View file

@ -94,6 +94,7 @@
'psd_save' => { libdep => 'gtk', ui => 1 },
'psp' => { libdep => 'gtk', ui => 1, optional => 1, libopt => 'z' },
'randomize' => { libdep => 'gtk', ui => 1 },
'raw' => { libdep => 'gtk', ui => 1 },
'ripple' => { libdep => 'gtk', ui => 1 },
'rotate' => { libdep => 'glib' },
'sample_colorize' => { libdep => 'gtk', ui => 1 },

1193
plug-ins/common/raw.c Normal file

File diff suppressed because it is too large Load diff