mirror of https://github.com/GNOME/gimp.git
![]() * README.win32: Mention using GNU gettext. * config.h.win32: Enable NLS stuff. Remove the X11 & Unix vs. Win32 feature test macros, we use those from glibconfig.h and gdkconfig.h. * app/makefile.msc: Use gettext. New object files. * app/batch.c: No need to include <io.h> on Win32. * app/errorconsole.c * app/plug_in.c * app/tile_swap.c: Include <glib.h> early to get Win32 feature test macros from <glibconfig.h>. * app/gimpset.c: Remove unnecessary (?) warning. * app/main.c * libgimp/stdplugins-intl.h: If no LOCALEDIR defined (as on Win32), use the "locale" subdir in gimp_data_directory(). * app/palette.c: Open palette file in text mode. * app/session.c * app/text_tool.c: Use GDK's GDK_WINDOWING feature test macro if available, not WINDOWS_DISPLAY. * libgimp/gimpfeatures.h.win32: Correct GIMP_VERSION. * libgimp/makefile.msc: Use gettext. * plug-ins/makefile.msc: Use gettext. Add some missing plug-ins. Advice how to build "unofficial" plug-ins. * plug-ins/FractalExplorer/FractalExplorer.c * plug-ins/faxg3/faxg3.c * plug-ins/gbr/gbr.c * plug-ins/gz/gz.c: Include <glib.h> early. * plug-ins/tga/tga.c: Include config.h, use HAVE_UNISTD_H. |
||
---|---|---|
.. | ||
examples | ||
fractalexplorer-examples | ||
.cvsignore | ||
Callbacks.h | ||
Dialogs.h | ||
Events.h | ||
FractalExplorer.c | ||
FractalExplorer.h | ||
Languages.h | ||
Makefile.am | ||
README | ||
logo.h | ||
pix_data.h |
README
------------------------------------------- GIMP-Plug-In ------------------------------------------- Written by Daniel Cotting Quellenstrasse 10 CH-8005 Zuerich (Switzerland) cotting@multimania.com www.multimania.com/cotting ------------------------------------------- Some code is taken out of other plug-ins written by other authors. ------------------------------------------- Ported to GIMP 1.1 by Michael Natterer <mitschel@cs.tu-berlin.de> ------------------------------------------- INSTALLATION ------------------------------------------- To install it, you have to edit the Makefile (change install-path). Afterwards run make. This will compile and install the plug-in in the right directory. Once the new code is installed, you can run the GIMP and enjoy the new functions and effects it provides. Note that this plug-in has some sample files which must be installed in one of the following directories: ~/.gimp/fractalexplorer /usr/share/gimp/fractalexplorer You can find the sample files in the subdirectory fractalexplorer-examples of this distribution. You will have to add the following lines to your gimprc file (usually /usr/share/gimp/gimprc): # fractalexplorer directory (fractalexplorer-path "${gimp_data_dir}/fractalexplorer:${gimp_dir}/fractalexplorer") ------------------------------------------- ------------------------------------------- REDUCE CODE SIZE ------------------------------------------- If you find that the plug-in is too big, you can compress the executables with the gzexe program (if it is avaiable on your system). To do so, change to the plug-in directory of the GIMP... cd /usr/lib/gimp/VERSION/plug-ins ...and execute the command... gzexe PLUGIN_NAME ...and remember to remove the uncompres- sed binary, which has been renamed to PLUGIN_NAME~, by running the command: rm PLUGIN_NAME~ This will result in a code size of about 50 kB, which isn't too much IMHO. ------------------------------------------ ------------------------------------------ FEEDBACK ------------------------------------------ I'm interested in any feedback, comments, bug-reports, suggestions etc. If you have anything you would like to tell me, you can write to cotting@multimania.com. Also have a look at the GIMP-section of my homepage at www.multimania.com/cotting. ------------------------------------------ Thank you and happy GIMPing! Daniel Cotting ------------------------------------------