- 06 Oct, 2003 6 commits
-
-
Sven Neumann authored
2003-10-06 Sven Neumann <sven@gimp.org> * app/app-docs.sgml * app-sections.txt: updated.
-
Michael Natterer authored
2003-10-06 Michael Natterer <mitch@gimp.org> * app/display/gimpdisplayshell-callbacks.c: guard callbacks against being invoked during display destruction. Fixes crashes when closing/opening images. Also fixes the crash reported by Pedro Gimeno in the comment to bug #117884, but doesn't fix #117884 since it's a different issue.
-
Michael Natterer authored
2003-10-06 Michael Natterer <mitch@gimp.org> * app/tools/tool_manager.c (tool_manager_image_undo_start): HALT the tool with the right display. Fixes some random tool crashes.
-
Marco Ciampa authored
-
Sven Neumann authored
2003-10-06 Sven Neumann <sven@gimp.org> * app/widgets/gimpdnd.c (gimp_dnd_data_drop_handle): check for NULL pointers in the GimpDndDataDef array before using them. Might happen with the changed dockable DND code :(
-
Helvetix Victorinox authored
* app/composite/make-install.py: migrated to new (trimmer) code and removed dead code. Some beautification for generated code. * app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis,generic}.{c,h}: All init() functions are also a run-time check and now expected to return TRUE/FALSE if the particular set of compositing functions can be used. * app/composite/gimp-composite.c: No longer has to determine if the particular set of compositing functions can be used. * app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-{install,test}.c: Regenerated * app/composite/test-composite.c: Deprecated, removed. All tests are automatically generated and the code is in app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-test.c: * app/composite/Makefile.am: removed unused references to test-composite.c
-
- 05 Oct, 2003 11 commits
-
-
Sven Neumann authored
2003-10-06 Sven Neumann <sven@gimp.org> * Made 1.3.21 release.
-
Sven Neumann authored
2003-10-05 Sven Neumann <sven@gimp.org> * app/widgets/gimpdock.c (gimp_dock_separator_drag_drop): handle dockable drops where the drag source is a GimpDockable itself. * etc/sessionrc: try a new default dialog setup.
-
Marco Ciampa authored
-
Sven Neumann authored
2003-10-05 Sven Neumann <sven@gimp.org> * app/gui/tool-options-menu.c (tool_options_menu_update): removed unused variables.
-
Sven Neumann authored
2003-10-05 Sven Neumann <sven@gimp.org> * app/display/gimpdisplayshell.c: set the screen resolution before setting the initial scale; update it in GtkWidget::screen_changed.
-
Sven Neumann authored
2003-10-05 Sven Neumann <sven@gimp.org> * app/composite/Makefile.am: added missing file.
-
Sven Neumann authored
-
Sven Neumann authored
2003-10-05 Sven Neumann <sven@gimp.org> * app/widgets/gimpdockbook.[ch] * app/widgets/gimpdockable.[ch]: hide the GimpDockbook tabs when it holds only a single dockable. Made the title area a drag source and let the whole GimpDockable accept drops of dockables.
-
Pedro Gimeno authored
2003-10-05 Pedro Gimeno <pggimeno@wanadoo.es> * app/paint-funcs/paint-funcs.c (shrink_line): Use gint instead of guint. Fixes Debian bug report #205889.
-
Sven Neumann authored
-
Sven Neumann authored
2003-10-05 Sven Neumann <sven@gimp.org> * plug-ins/common/psd.c (load_image): applied a patch from Morten Eriksen that fixes loading of monochrome images.
-
- 04 Oct, 2003 2 commits
-
-
Dave Neary authored
2003-10-04 Dave Neary <bolsh@gimp.org> * app/tools/gimphuesaturationtool.c (gimp_hue_saturation_tool_initialize): Removed explicit initialisation to GIMP_ALL_HUES, this is set by default the first time the tool is opened, and shouldn't be set successive times. Fix suggested by edg1@freegates.be in Bugzilla. Fixes bug #123731.
-
Danilo Šegan authored
2003-10-04 Danilo Šegan <dsegan@gmx.net> * po/sr.po, po/sr@Latn.po, po-plug-ins/sr.po, po-plug-ins/sr@Latn.po, po-script-fu/sr.po, po-script-fu/sr@Latn.po: Updated Serbian translation.
-
- 02 Oct, 2003 8 commits
-
-
Sven Neumann authored
2003-10-02 Sven Neumann <sven@gimp.org> * app/app_procs.c (app_exit_after_callback): enabled the call to exit() again.
-
Marco Ciampa authored
-
Sven Neumann authored
2003-10-02 Sven Neumann <sven@gimp.org> * plug-ins/script-fu/scripts/carved-logo.scm: unset the image filename.
-
Michael Natterer authored
2003-10-02 Michael Natterer <mitch@gimp.org> * app/core/gimpitem.c (gimp_item_convert,gimp_item_real_convert): set the item's new image *after* converting it because we need the old image's colormap for conversions from and to INDEXED. Fixes bug #123625.
-
Michael Natterer authored
2003-10-02 Michael Natterer <mitch@gimp.org> Cleaned up the app init and exit stuff even more. Also reduces the number of missing symbols for gimp-console. Added init and exit debugging output (only for --verbose). * app/core/gimpmarshal.list * app/core/gimp.[ch]: added new signals "initialize" and "restore". Moved plug_ins_init() to Gimp::restore()'s default implementation and plug_ins_exit() to Gimp::exit()'s default implementation. Renamed gimp_set_config() to gimp_load_config() and load GimpRC here. Moved base_init() and base_exit() to this file, too. * app/gui/Makefile.am * app/gui/gui-vtable.[ch]: new files split out of gui.c. It was simply too large. * app/gui/gui.[ch]: renamed gui_themes_init() to gui_init(), connect to Gimp's "initialize" and "restore" signals and create the GUI stuff in the callbacks. Removed most other public functions since they don't need to be called explicitly any more. Moved the whole tool initialization/shutdown code to this file. * app/gui/user-install-dialog.[ch]: changed user_install_dialog_create() to user_install_dialog_run() and added a gtk_main() at the end, so the install dialog's gtk_main() and gtk_main_quit() live in the same file. * app/app_procs.c: removed lots of stuff. app_init() is much simpler now.
-
Michael Natterer authored
2003-10-02 Michael Natterer <mitch@gimp.org> * app/gui/tool-options-commands.c (tool_options_save_to_cmd_callback): remember the name of the saved options and set it again after gimp_config_copy_properties(). Fixes bug #123660.
-
Sven Neumann authored
2003-10-02 Sven Neumann <sven@gimp.org> * app/app-docs.sgml * app/app-sections.txt: updated.
-
Sven Neumann authored
2003-10-02 Sven Neumann <sven@gimp.org> * app/gui/image-menu.c: added back ellipsis to Display Filters and Configure Grid. 2003-10-02 Sven Neumann <sven@gimp.org> * de.po: updated german translation (reviewing my menu changes).
-
- 01 Oct, 2003 13 commits
-
-
Sven Neumann authored
2003-10-02 Sven Neumann <sven@gimp.org> * configure.in * plug-ins/Makefile.am * plug-ins/mosaic/*: removed mosaic plug-in here... * plug-ins/common/Makefile.am * plug-ins/common/mosaic.c * plug-ins/common/plugin-defs.pl: ...and added it in plug-ins/common.
-
Sven Neumann authored
2003-10-02 Sven Neumann <sven@gimp.org> * plug-ins/common/plugindetails.c * plug-ins/common/unsharp.c * plug-ins/script-fu/script-fu.c * plug-ins/script-fu/scripts/swirly-pattern.scm: tweaked menu items.
-
Sven Neumann authored
2003-10-02 Sven Neumann <sven@gimp.org> * app/gui/brushes-menu.c * app/gui/channels-menu.c * app/gui/colormap-editor-menu.c * app/gui/image-menu.c * app/gui/templates-menu.c * app/gui/vectors-menu.c: added ellipsis back for Edit menu items. Added missing ellipsis for Stroke items.
-
Maurits Rijk authored
2003-10-01 Maurits Rijk <lpeek.mrijk@consunet.nl> * plug-ins/FractalExplorer/Events.[ch]: splitting the dialogs and the events didn't make sense. Code merged with Dialogs.[ch] and files removed. * plug-ins/FractalExplorer/Dialogs.[ch] * plug-ins/FractalExplorer/FractalExplorer.[ch]: major code clean-up. Still lots of work to do (remove several deprecated widgets, etc.)
-
Sven Neumann authored
2003-10-01 Sven Neumann <sven@gimp.org> * libgimpwidgets/gimpwidgets.def: added new symbols.
-
Sven Neumann authored
2003-10-01 Sven Neumann <sven@gimp.org> * app/gui/brushes-menu.c * app/gui/channels-menu.c * app/gui/colormap-editor-menu.c * app/gui/dialogs-menu.c * app/gui/documents-menu.c * app/gui/image-menu.c * app/gui/palettes-menu.c * app/gui/templates-menu.c * app/gui/toolbox-menu.c * app/gui/vectors-menu.c * plug-ins/common/uniteditor.c * plug-ins/dbbrowser/dbbrowser.c: followed the HIG advisory on labelling menus with a trailing ellipsis and removed some.
-
Sven Neumann authored
2003-10-01 Sven Neumann <sven@gimp.org> * app/widgets/gimppropwidgets.[ch]: renamed gimp_prop_size_entry_connect() to gimp_prop_coordinates_connect(). Added a new property widget that is a single GimpSizeEntry and is connected to size and unit properties. * app/widgets/gimptemplateeditor.c: changed accordingly. * app/widgets/gimpstrokeeditor.c: added a "resolution" property and use the new property widget. * app/gui/stroke-dialog.c: pass the image resolution to gimp_stroke_editor_new().
-
Sven Neumann authored
2003-10-01 Sven Neumann <sven@gimp.org> * app/composite/gimp-composite-altivec.c * app/composite/gimp-composite-mmx.c * app/composite/gimp-composite-sse.c * app/composite/gimp-composite-sse2.c * app/composite/gimp-composite-vis.c: moved includes out of the #if __GNUC__ >= 3 to make the code compile on other compilers. * app/composite/gimp-composite-3dnow.[ch]: added the same stubs here for symmetry.
-
Sven Neumann authored
2003-10-01 Sven Neumann <sven@gimp.org> * app/core/Makefile.am * app/core/gimpimage-unit.[ch]: added small wrappers to ease handling of image units and to hide the core GimpUnit API. * app/display/gimpdisplayshell-scale.c * app/display/gimpdisplayshell-title.c * app/display/gimpstatusbar.c * app/gui/info-window.c: * app/tools/gimpmeasuretool.c * app/tools/gimppainttool.c * app/tools/gimprectselecttool.c * app/tools/gimpscaletool.c: use the new functions. * app/core/gimp-units.c * app/vectors/gimpvectors-export.c: use the core GimpUnit API. * app/vectors/gimpvectors.c: no need to include gimpunit.h here.
-
Sven Neumann authored
-
Sven Neumann authored
2003-10-01 Sven Neumann <sven@gimp.org> * app/config/gimpconfig-utils.c (gimp_config_diff): make it handle aggregate object properties by calling itself recursively.
-
Sven Neumann authored
2003-10-01 Sven Neumann <sven@gimp.org> * app/text/gimptextlayout.c: pango_font_description_set_size() takes points not pixels as the old code assumed. * app/text/gimptext.c * app/text/gimptextlayout-render.c: fixed includes.
-
Marco Ciampa authored
-