Commit Graph

7153 Commits

Author SHA1 Message Date
Michael Natterer b5e38ad1d7 allocate all temporary render bufs and check bufs large enough for
2002-08-22  Michael Natterer  <mitch@gimp.org>

	* app/display/gimpdisplayshell-render.c: allocate all temporary
	render bufs and check bufs large enough for GIMP_PREVIEW_MAX_SIZE
	(which is 1024). Fixes crashes with too large navigation previews.
2002-08-22 10:36:23 +00:00
Maurits Rijk 1479fe4c49 Applied patch for #87687 (ImageMap should use lowercase, not uppercase tags) from shaneyfelt@juno.com 2002-08-22 10:25:28 +00:00
Michael Natterer 06aa1afdde Fixed usage of uninitialized memory found by valgrind, plus some cleanup:
2002-08-22  Michael Natterer  <mitch@gimp.org>

	Fixed usage of uninitialized memory found by valgrind,
	plus some cleanup:

	* app/base/pixel-region.[ch]: allocate PixelRegionIterators and
	PixelRegionHolders with g_new0(). Changed return values of
	pixel_regions_register() and pixel_regions_process() from gpointer
	to PixelRegionIterator*

	* app/base/pixel-processor.c: no need to cast the above return values.

	* app/base/temp-buf.[ch]: initialize PixelRegions with { 0 }
	before using them for TempBufs.

	* app/gui/device-status-dialog.c: initialize colors before
	passing them to gimp_color_area_new().
2002-08-22 09:48:56 +00:00
Maurits Rijk ca8b830162 Added functionality to create an imagemap using the standard GIMP guides, kindly requested by carol :) 2002-08-21 20:48:14 +00:00
Michael Natterer 728778ca32 don't g_free() static strings (happened if gimprc.last_opened_size > 9,
2002-08-21  Michael Natterer  <mitch@gimp.org>

	* app/gui/menus.c (menus_last_opened_add): don't g_free() static
	strings (happened if gimprc.last_opened_size > 9, fixes #85795).
2002-08-21 15:58:50 +00:00
Michael Natterer 5103c495fb call gimp_image_mask_changed() after performing the selection op.
2002-08-21  Michael Natterer  <mitch@gimp.org>

	* app/core/gimpimage-mask-select.c: call gimp_image_mask_changed()
	after performing the selection op.
2002-08-21 10:59:26 +00:00
Sven Neumann f23ab01bc7 Made 1.3.8 release.
2002-08-20  Sven Neumann  <sven@gimp.org>

	* Made 1.3.8 release.
2002-08-20 15:27:27 +00:00
Sven Neumann 4206b54301 don't use the automatic variable $< (seems to work with GNU make only).
2002-08-20  Sven Neumann  <sven@gimp.org>

	* data/misc/Makefile.am: don't use the automatic variable $<
	(seems to work with GNU make only).
2002-08-20 12:57:06 +00:00
Sven Neumann 537e8e66fe updated.
2002-08-20  Sven Neumann  <sven@gimp.org>

	* NEWS: updated.
2002-08-20 12:26:34 +00:00
Michael Natterer 3f69d6cd50 This files should have gone with my last comitt... 2002-08-20 10:45:37 +00:00
Michael Natterer 08c35cdfd9 namespace cleanup.
2002-08-20  Michael Natterer  <mitch@gimp.org>

	* app/tools/gimpfuzzyselecttool.c: namespace cleanup.
2002-08-20 10:40:38 +00:00
Michael Natterer 33bba65728 Make sure the selection (gimpimage-mask.c) functionality is really built
2002-08-20  Michael Natterer  <mitch@gimp.org>

	Make sure the selection (gimpimage-mask.c) functionality is really
	built *on top* of the GimpChannel functionality:

	* app/undo.[ch]: renamed undo_push_image_mask() to
	undo_push_mask() and generalized it's API to take a GimpChannel
	param so undos can be pushed for channels which are not the
	image's selection. Simplified the API and added code which copies
	the region of interest instead of leaving this to callers.

	* app/undo_types.h: s/IMAGE_MASK_UNDO/MASK_UNDO/

	* app/undo_history.c: changed accordingly.

	* app/core/gimpchannel.[ch]: don't #include "gimpimage-mask.h".
	Changed gimp_channel_push_undo() to really push a channel undo,
	not a selection undo. Added "gboolean push_undo" params to all
	functions which are called from gimpimage-mask.c. Various cleanups
	and optimizations. Added /*< proxy-foo >*/ stuff to the header so
	we export just the struct itself to libgimpproxy. Added accessors
	gimp_channel_[get|set]_show_masked().

	* app/core/gimpimage-mask.[ch]: renamed gimp_image_mask_undo() to
	gimp_image_mask_push_undo(). Call it before calling GimpChannel
	functions which modify the mask, also call all GimpChannel
	functions with push_undo = FALSE. Emit gimp_image_mask_changed()
	after each operation instead of calling it in
	gimp_image_mask_invalidate(). Removed gimp_image_mask_none()
	because it is the same as gimp_image_mask_clear().
	General cleanup.

	* app/core/gimpimage-mask-select.c
	* app/core/gimpimage-qmask.c: changed accordingly.

	* app/core/gimpedit.c: call gimp_image_mask_clear(), not
	gimp_channel_clear (gimp_image_get_mask()).

	* app/core/gimpimage-crop.c
	* app/core/gimpimage-resize.c
	* app/core/gimpimage-scale.c: call gimp_image_mask_changed()

	* app/gui/channels-commands.c
	* app/gui/select-commands.c
	* app/tools/gimptexttool.c
	* tools/pdbgen/pdb/channel.pdb
	* tools/pdbgen/pdb/selection.pdb: follow GimpChannel and
	gimp_image_mask* API changes.

	* app/pdb/channel_cmds.c
	* app/pdb/selection_cmds.c
	* libgimpproxy/gimpchannel.h: regenerated.

	Unrelated:

	* app/core/gimpimage.c: call gimp_drawable_push_undo() instead of
	undo_push_image() directly.
2002-08-20 10:22:23 +00:00
Manish Singh 68820735e5 remove bashism (function keyword)
2002-08-18  Manish Singh  <yosh@gimp.org>

        * autogen.sh: remove bashism (function keyword)
2002-08-19 03:35:20 +00:00
Michael Natterer ff92915929 removed GTK_ENABLE_BROKEN and _DEPRECATED #defines and #includes because
2002-08-18  Michael Natterer  <mitch@gimp.org>

	* plug-ins/common/gif.c: removed GTK_ENABLE_BROKEN and _DEPRECATED
	#defines and #includes because this plug-in has already been
	ported.
2002-08-18 21:57:15 +00:00
Duarte Loreto 1d5aeaf857 Updated Portuguese translation.
2002-08-17  Duarte Loreto <happyguy_pt@hotmail.com>

        * pt.po: Updated Portuguese translation.
2002-08-18 00:58:51 +00:00
Duarte Loreto c66ade156f Updated Portuguese translation.
2002-08-17  Duarte Loreto <happyguy_pt@hotmail.com>

        * pt.po: Updated Portuguese translation.
2002-08-17 17:18:10 +00:00
Andras Timar 9daf120c3c Updated Hungarian translation.
2002-08-16  Andras Timar  <timar@gnome.hu>

        * hu.po: Updated Hungarian translation.
2002-08-16 21:08:14 +00:00
Ole Laursen d59706beee Updated Danish translation.
2002-08-13  Ole Laursen  <olau@hardworking.dk>

	* da.po: Updated Danish translation.
2002-08-13 20:22:03 +00:00
Ole Laursen 5215730101 Fixed a bunch of strings in Danish translation.
2002-08-13  Ole Laursen  <olau@hardworking.dk>

	* da.po: Fixed a bunch of strings in Danish translation.
2002-08-13 19:49:36 +00:00
Christophe Merlet eae2669b28 Updated French translation. 2002-08-12 08:20:17 +00:00
Michael Natterer ab53e0d3f5 fixed warning, coding style.
2002-08-11  Michael Natterer  <mitch@gimp.org>

	* app/core/gimpcontainer.c: fixed warning, coding style.
2002-08-11 18:45:24 +00:00
Sven Neumann 6d151f5fd0 reverted Dave's change since this feature has already been implemented
2002-08-06  Sven Neumann  <sven@gimp.org>

	* app/tools/gimpmagnifytool.[ch]: reverted Dave's change
	since this feature has already been implemented properly
	(and configurable) last December.
2002-08-06 10:55:40 +00:00
Dave Neary 07ecc12c2a Require a minimum movement in the X and Y direction before we zoom in
2002-08-05  Dave Neary  <bolsh@gimp.org>

        * app/tools/gimpmagnifytool.[ch]: Require a minimum
        movement in the X and Y direction before we zoom in
        on/out to the dragged square. Limit rather arbitrarily
        set to 5. This fixes bug #86939, reported by
        philipj@telia.com.
2002-08-05 09:30:33 +00:00
Sven Neumann 24e35fde91 plug-ins/common/gauss_iir.c merged fix for bug #89825 from stable branch.
2002-08-04  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/gauss_iir.c
	* plug-ins/common/gauss_rle.c: merged fix for bug #89825 from
	stable branch.
2002-08-04 15:27:05 +00:00
Dave Neary 2c11b461f1 Add RGBA as a decompose target.
2002-08-04  Dave Neary  <bolsh@gimp.org>

        * plug-ins/common/decompose.c: Add RGBA as a decompose
        target.
2002-08-04 14:37:30 +00:00
Manish Singh 55c5b0c7eb make sure -lm is in $LIBS for the finite/isfinite test, fixes issues on
2002-08-03  Manish Singh  <yosh@gimp.org>

        * configure.in: make sure -lm is in $LIBS for the finite/isfinite
        test, fixes issues on newer FreeBSD

        * plug-ins/common/jpeg.c: cast statbuf.st_size to glong for
        g_snprintf
2002-08-04 03:38:16 +00:00
Maurits Rijk 3d92aa5829 Started implementation of fuzzy select. Removed 2 pixmaps for which we now have stock icons and made a few changes according to #87687 2002-08-03 12:24:49 +00:00
Maurits Rijk fcdb1553ba Lowercased generated tags as described in #87687 2002-08-01 20:25:51 +00:00
Pablo Saratxaga 1b8ace53f1 Added Vietnamese file 2002-07-24 06:11:39 +00:00
Christian Rose 772b46a99c Updated Swedish translation by Jan Moren <jan.moren@lucs.lu.se>.
2002-07-24  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation by
	Jan Moren <jan.moren@lucs.lu.se>.
2002-07-24 00:05:07 +00:00
Sven Neumann ca219ebf22 applied a patch from Guillermo S. Romero that updates the example imagerc.
2002-07-22  Sven Neumann  <sven@gimp.org>

	* themes/Default/imagerc: applied a patch from Guillermo S. Romero
	that updates the example imagerc.
2002-07-22 12:14:19 +00:00
Christian Rose f62fc608e2 Updated Swedish translation by Jan Moren <jan.moren@lucs.lu.se>.
2002-07-22  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation by
	Jan Moren <jan.moren@lucs.lu.se>.
2002-07-21 22:16:13 +00:00
Pablo Saratxaga 29a0f04eba Added Vietnamese file 2002-07-21 19:40:07 +00:00
Christian Rose e4f97ee52a Updated Swedish translation by Jan Moren <jan.moren@lucs.lu.se>.
2002-07-20  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation by
	Jan Moren <jan.moren@lucs.lu.se>.
2002-07-20 13:52:35 +00:00
Christian Rose aa2c00937d Updated Swedish translation.
2002-07-20  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.
2002-07-20 12:05:32 +00:00
Christian Rose 286ccad4ee Updated Swedish translation by Jan Moren <jan.moren@lucs.lu.se>.
2002-07-20  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation by
	Jan Moren <jan.moren@lucs.lu.se>.
2002-07-19 22:29:03 +00:00
Christophe Merlet 209f6e9e93 Added $(DESTDIR) variable. 2002-07-16 21:06:43 +00:00
Marcel Telka 59b356ad56 Updated Slovak translation by Zdenko Podobny <zdpo@mailbox.sk>.
2002-07-16  Marcel Telka  <marcel@telka.sk>

	* sk.po: Updated Slovak translation by
	Zdenko Podobny <zdpo@mailbox.sk>.
2002-07-16 11:57:00 +00:00
Pablo Saratxaga 5fc3955ce6 Added Vietnamese file 2002-07-15 10:39:53 +00:00
Ole Laursen bf5973fac6 Updated Danish translation.
2002-07-13  Ole Laursen  <olau@hardworking.dk>

	* da.po: Updated Danish translation.
2002-07-13 13:55:16 +00:00
Pablo Saratxaga 220d1a39a6 updated Vietnamese file 2002-07-12 11:34:55 +00:00
Sven Neumann 00d408bdd6 bumbed version number to 1.3.8.
2002-07-11  Sven Neumann  <sven@gimp.org>

	* configure.in: bumbed version number to 1.3.8.

	* app/core/gimpcontainer.c: use gulong for signal handler IDs.
2002-07-11 11:37:41 +00:00
Yuri Syrota 0a8ff4458f Updated Ukrainian translation 2002-07-10 15:10:33 +00:00
Pablo Saratxaga 2b3000d90a Added Vietnamese file 2002-07-10 08:20:10 +00:00
Wang Jian 530eefed36 *** empty log message *** 2002-07-09 17:52:02 +00:00
Sven Neumann f000cdcd52 Merged bug-fixes from the stable branch:
2002-07-09  Sven Neumann  <sven@gimp.org>

	Merged bug-fixes from the stable branch:

	* plug-ins/common/papertile.c: bug #86868.

	* plug-ins/common/tileit.c: bug #86637.

	* plug-ins/common/xpm.c: bug #87588.

	* plug-ins/print/print.c: bug #87428.
2002-07-09 16:17:43 +00:00
Zbigniew Chyla 16737b5813 i18n fixes
2002-07-08  Zbigniew Chyla  <cyba@gnome.pl>

	i18n fixes

	* plug-ins/script-fu/script-fu.c (script_fu_query):
	Pass "gimp14-script-fu" to gimp_plugin_domain_register
	(not "gimp-script-fu").

	* libgimp/libgimp-intl.h:
	s/gimp-libgimp/gimp14-libgimp/

	* libgimpwidgets/gimpstock.c (gimp_stock_items[]):
	ditto
2002-07-07 23:57:43 +00:00
Chyla Zbigniew ddad4ef79a Updated Polish translation by GNOME PL Team <translators@gnome.pl> 2002-07-07 23:54:02 +00:00
Chyla Zbigniew 0b81ae8ca2 Updated Polish translation by GNOME PL Team <translators@gnome.pl> 2002-07-07 19:37:38 +00:00
Kjartan Maraas 6993acc21b Updated Norwegian (bokml) translation.
2002-07-02  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Updated Norwegian (bokml) translation.
2002-07-02 14:12:52 +00:00