- 23 Jan, 2004 5 commits
-
-
Danilo Šegan authored
-
Danilo Šegan authored
-
Danilo Šegan authored
-
Danilo Šegan authored
-
Henrik Brix Andersen authored
2004-01-23 Henrik Brix Andersen <brix@gimp.org> * plug-ins/common/.cvsignore: s/ps/postscript/ to shut up cvs.
-
- 22 Jan, 2004 12 commits
-
-
Manish Singh authored
2004-01-22 Manish Singh <yosh@gimp.org> * plug-ins/common/plugin-defs.pl * plug-ins/common/Makefile.am: renamed ps to postscript, so automake doesn't get confused.
-
Sven Neumann authored
2004-01-22 Sven Neumann <sven@gimp.org> * configure.in: libgimpmodule depends on gmodule-2.0 and gobject-2.0. Incorporate both into GMODULE_CFLAGS and GMODULE_LIBS.
-
Ole Laursen authored
2004-01-22 Ole Laursen <olau@hardworking.dk> * da.po: Updated Danish translation.
-
Sven Neumann authored
2004-01-22 Sven Neumann <sven@gimp.org> * debian/*: removed outdated and unmaintained debian package description. The debian package is well maintained without keeping these files in our CVS tree.
-
Ville Pätsi authored
* gimp.spec.in: Added a depedency for libexif
-
Michael Natterer authored
2004-01-22 Michael Natterer <mitch@gimp.org> * plug-ins/common/gbr.c * plug-ins/common/pat.c: store the brush/pattern's name in a parasite attached to the image. The parasite overrides the RUN_WITH_LAST_VALS logic if it exists. Consistently set the description as the layer's name, but ignore the layer's name when saving because it may have been modified by exporting. Fixes bug #131450. Misc. cleanup/fixes: Don't assume that strncpy() nul-terminates the buffer, use sizeof() instead of magic numbers, sanitize descriptions using gimp_any_to_utf8(), always use strncpy() instead of strcpy(). * devel-docs/parasites.txt: document the "gimp-brush-name" and "gimp-pattern-name" parasites.
-
Tor Lillqvist authored
2004-01-22 Tor Lillqvist <tml@iki.fi> * gimptool-win32.c.in (get_prefix): Use GIMP_APP_VERSION.
-
Manish Singh authored
2004-01-21 Manish Singh <yosh@gimp.org> * m4macros/gimp-2.0.m4: quote AM_PATH_GIMP_2_O properly so automake 1.8 won't whine at us.
-
Manish Singh authored
2004-01-21 Manish Singh <yosh@gimp.org> * configure.in * plug-ins/FractalExplorer/Makefile.am: renamed obnoxiously long fractalexplorer-examples directory to simply examples.
-
Manish Singh authored
2004-01-21 Manish Singh <yosh@gimp.org> * configure.in: modernized, made a lot of things m4 macros, and made versioning a lot more finegrained, in anticipation for post-2.0. * autogen.sh: bumped up libtool and glib minimum requirements to match reality. * gimp-2.0.pc.in * gimpthumb-2.0.pc.in * gimpui-2.0.pc.in: adapted to new versioning variables, and bring in RT_LIBS when needed. * */*/Makefile.am: adapted to new versioning variables.
-
Michael Natterer authored
2004-01-22 Michael Natterer <mitch@gimp.org> * app/core/gimplayer-floating-sel.c (floating_sel_anchor): explicitly activate the drawable the floating selection was attached to (function was relying on implicit voodoo that happened 1.2). Fixes bug #132162.
-
Michael Natterer authored
2004-01-22 Michael Natterer <mitch@gimp.org> * app/core/gimpitem.[ch]: added "gboolean use_default_values" to GimpItem::stroke(). * app/core/gimpselection.c: changed accordingly. * app/core/gimpchannel.c * app/vectors/gimpvectors.c: if use_default_values is TRUE, don't use the GimpPaintOptions passed in the GimpPaintInfo, but create a new one. * app/gui/stroke-dialog.c: pass FALSE so the values as set in the tool options are used. * tools/pdbgen/pdb/edit.pdb * tools/pdbgen/pdb/paths.pdb: pass TRUE so tool options settings don't affect PDB stroke calls. Fixes part 2 of bug #132145. * app/pdb/edit_cmds.c * app/pdb/paths_cmds.c: regenerated.
-
- 21 Jan, 2004 11 commits
-
-
Simon Budig authored
2004-01-22 Simon Budig <simon@gimp.org> * app/gui/dialogs-commands.c: replaced the indexed palette in the default "Layers, Channels, Paths"-Dock (as created by the menu in the toolbox) with the Undo History, since the indexed palette is pretty useless most of the time and the new setup at least matches the upper half of the dockable that comes up after a new user starts the Gimp the first time.
-
Michael Natterer authored
2004-01-21 Michael Natterer <mitch@gimp.org> * app/gui/dialogs-commands.c: show the image menu in newly created layers, channels & paths docks.
-
Ole Laursen authored
2004-01-21 Ole Laursen <olau@hardworking.dk> * da.po: Updated Danish translation.
-
Miloslav Trmac authored
-
Michael Natterer authored
2004-01-21 Michael Natterer <mitch@gimp.org> * app/tools/gimptool.[ch]: added boolean return value to GimpTool::initialize(). Returning FALSE means the tool could not be initialized and doesn't want to receive button events. Return TRUE from the default implementation. * app/tools/tool_manager.[ch]: added boolean return value to tool_manager_initialize_active(). Don't set the tool's display or drawable if initialize() returns FALSE. * app/display/gimpdisplayshell-callbacks.c: don't send button events to the tool if initialize() returns FALSE. * app/tools/gimpbrightnesscontrasttool.c * app/tools/gimpcolorbalancetool.c * app/tools/gimpcolorizetool.c * app/tools/gimpcurvestool.c * app/tools/gimphuesaturationtool.c * app/tools/gimplevelstool.c * app/tools/gimpposterizetool.c * app/tools/gimpthresholdtool.c: return FALSE for NULL and indexed drawables. * app/tools/gimpimagemaptool.c: always return TRUE because our subclasses already checked if the active drawable is OK. * app/tools/gimptransformtool.c: return FALSE for layers with masks. Fixes bug #132089. Some random cleanups.
-
David Odin authored
* plug-ins/common/plugindetails.c: correctly resize both panels of the GTK_PANED. This fixes bugs #132032. This plug-ins still needs work.
-
Michael Natterer authored
2004-01-21 Michael Natterer <mitch@gimp.org> * app/core/gimpdrawable-transform.c: use RINT() instead of ROUND() to calculate the coordinates of the transformed tiles to avoid off-by-one errors when affine-transforming, flipping and rotating drawables with negative offsets. Fixes the off-by-one part of bug #132089.
-
Tor Lillqvist authored
2004-01-21 Tor Lillqvist <tml@iki.fi> * app/gui/themes.c (themes_list_themes_foreach): Fix undefined behaviour. Fixes crash in bringing up the Preferences dialog when compiled with Sun's compiler.
-
Michael Natterer authored
2004-01-21 Michael Natterer <mitch@gimp.org> * app/core/gimpdrawable-transform.c (gimp_drawable_transform_paste): call gimp_drawable_invalidate_boundary() because the drawable's size may have changed. Fixes bug #132077. Removed call to floating_sel_invalidate() which is now redundant.
-
Michael Natterer authored
2004-01-21 Michael Natterer <mitch@gimp.org> * app/gui/info-dialog.[ch]: renamed info_dialog_popdown() to info_dialog_hide() and info_dialog_popup() to info_dialog_present(). Added info_dialog_show() which just shows the dialog without calling gtk_window_present(). * app/gui/info-window.c * app/gui/view-commands.c * app/tools/gimptransformtool.c: changed accordingly. * app/tools/gimpcroptool.c * app/tools/gimpperspectivetool.c * app/tools/gimprotatetool.c * app/tools/gimpscaletool.c * app/tools/gimpsheartool.c: use info_dialog_show() so the dialog doesn't grab the focus away from the canvas. Fixes bug #132041.
-
Simon Budig authored
2004-01-21 Simon Budig <simon@gimp.org> * app/core/gimpscanconvert.c: removed the call to art_vpath_perturb, since it apparently is responsible for the artefacts described in bug #132036. I don't really understand why these artefacts were happening in the first place, because in theory art_vpath_perturb should not do any harm. Also properly close closed polygons. Hopefully fixes #132036, please test this.
-
- 20 Jan, 2004 12 commits
-
-
Henrik Brix Andersen authored
2004-01-20 Henrik Brix Andersen <brix@gimp.org> * POTFILES.in: added missing plug-ins/script-fu/scripts/select-to-pattern.scm (fixes bug #132029)
-
Sven Neumann authored
2004-01-20 Sven Neumann <sven@gimp.org> * tools/gimp-remote.c: added new command-line options --existing and --query. The former allows to get the old behaviour back and the latter might be useful one day. * docs/gimp-remote-1.3.1.in: document the new options.
-
Michael Natterer authored
2004-01-20 Michael Natterer <mitch@gimp.org> * app/widgets/gimphelp-ids.h: added help IDs for the libgimp export and unit dialogs. * libgimp/gimpexport.c * libgimpwidgets/gimpunitmenu.c: replaced html links by the new help IDs. * plug-ins/*/*.c: replaced all html help links by help IDs. A plug-in's help ID is its procedure name with '_' relaced by '-'. (e.g. file_tiff_save's help ID is file-tiff-save) Did some random indentation and whitespace cleanup.
-
Sven Neumann authored
2004-01-20 Sven Neumann <sven@gimp.org> * libgimp/tmpl/gimphelp.sgml: updated.
-
Sven Neumann authored
2004-01-20 Sven Neumann <sven@gimp.org> * tools/gimp-remote.c: when starting a new gimp, pass it the display gimp-remote is running on.
-
Sven Neumann authored
2004-01-20 Sven Neumann <sven@gimp.org> * tools/gimp-remote.c: always open a new GIMP instance when being called without any filenames/URLs. This makes it behave better when being used from application launchers such as the GNOME panel. * docs/gimp-remote-1.3.1.in: document the new behaviour.
-
Ville Pätsi authored
* gimp.spec.in: Changed library extension to actually use the correct values, and not assume .0.0.
-
Michael Natterer authored
2004-01-20 Michael Natterer <mitch@gimp.org> * tools/pdbgen/pdb/help.pdb: changed "prog_name" parameter of gimp_help() to "help_domain". It's useless to pass the plug-in's executable name to the core because the core already knows it. Instead, enabled accessing arbitrary help domains via the PDB. Passing NULL as help_domain will use the domain the plug-in registered, or the GIMP main help domain if it didn't register a domain. * app/pdb/help_cmds.c * libgimp/gimphelp_pdb.[ch]: regenerated. * libgimp/gimpui.c (gimp_ui_help_func): pass NULL as help_domain.
-
Sven Neumann authored
2004-01-20 Sven Neumann <sven@gimp.org> * tools/gimp-remote.c: made --new the default behaviour and allow gimp-remote to be called without any image filenames. * docs/gimp-remote-1.3.1.in: changed accordingly. * data/misc/gimp.applications * data/misc/gimp.desktop.in.in: removed --new option from gimp-remote calls.
-
Michael Natterer authored
2004-01-20 Michael Natterer <mitch@gimp.org> * plug-ins/common/mail.c * plug-ins/common/mng.c: use more already translated standard file error messages. Some cleanup.
-
Changwoo Ryu authored
* ko.po: Updated Korean translation by Dongsu Jang <iolo@hellocity.net>.
-
Artur Flinta authored
2004-01-20 Artur Flinta <aflinta@cvs.gnome.org> * pl.po: Updated Polish translation by GNOME PL Team.
-