- 22 Aug, 2000 2 commits
-
-
Sven Neumann authored
2000-08-22 Sven Neumann <sven@gimp.org> * plug-ins/common/*.c: removed COMPAT_CRUFT.
-
Daniel Egger authored
removed further COMPAT_CRUFT.
-
- 21 Aug, 2000 7 commits
-
-
Daniel Egger authored
removed COMPAT_CRUFT.
-
Daniel Egger authored
removed COMPAT_CRUFT.
-
Piers Cornwell authored
2000-08-21 Piers Cornwell <piers.cornwell@bigfoot.com> * app/main.c: Alter some options, and beautify. * gimp.1.in: Document the new options.
-
Manish Singh authored
-Yosh
-
Manish Singh authored
* tools/pdbgen/pdb/unit.pdb: added get_number_of_built_in_units * tools/pdbgen/Makefile.am: gen files in $top_srcdir/libgimp * tools/pdbgen/lib.pl * tools/pdbgen/pdb/procedural_db.pdb: libgimp pdbgen munging, final landing -Yosh
-
Manish Singh authored
* tools/pdbgen/lib.pl * tools/pdbgen/pdb/parasite.pdb: libgimp pdbgen munging * libgimp/gimpbrushes_pdb.[ch] * libgimp/gimpdrawable_pdb.[ch] * libgimp/gimppatterns_pdb.[ch]: new autogenned files landed -Yosh
-
Manish Singh authored
-Yosh
-
- 20 Aug, 2000 4 commits
-
-
Sven Neumann authored
2000-08-21 Sven Neumann <sven@gimp.org> * plug-ins/common/ps.c: applied gimp-kirchgessner-000820-0, a patch by Peter Kirchgessner which fixes a problem with the calculation of extent for Mac files (bug report #10547) and a problem with the loop when not reading all images of a multipage file.
-
Austin Donnelly authored
-
BST 2000 Austin Donnelly authored
Sun Aug 20 21:02:22 BST 2000 Austin Donnelly <austin@gimp.org> * emboss.c * jigsaw.c * max_rgb.c * nlfilt.c * wind.c * waves.c: When a radio button in GTK is clicked, the widget that used to be selected gets a signal as well as the one that was clicked. Mostly people cope with this by guarding their signal handers with a check to run to the code only if the widget is active. However, the callback functions registered with gimp_radio_group_new2() in the above files don't have this guard. In most cases, this is a bad idea since it causes previews to be updated too many times. In the emboss case it would also get the preview contents wrong when first displaying the dialog, since the act of gtk_widget_show()ing the dialog causes an event to be sent to the widget that's just been de-selected, causing the preview to redraw while the settings are inconsistent. * emboss.c: The emboss plugin also used uninitialised data the first time it is started, which wasn't biting currently, but might in the future or on other architectures which don't zero their stacks. Also made active region estimation more robust. I still haven't been able to reproduce Bug #17660: Embross plugin crashes, but I will admit that there's what could be uninitialised memory in the preview bitmap the very first time it is shown.
-
Sven Neumann authored
2000-08-20 Sven Neumann <sven@gimp.org> * plug-ins/imagemap/Makefile.am * plug-ins/imagemap/imap_cern_parse.[ch] * plug-ins/imagemap/imap_csim_parse.[ch] * plug-ins/imagemap/imap_ncsa_parse.[ch]: recreated from yacc files and added those files to the distribution. Supposed to close bugs #8076, #9212 and #10090. * plug-ins/imagemap/imap_default_dialog.c * plug-ins/imagemap/imap_file.c * plug-ins/imagemap/imap_main.c: set help accelerator and window icon.
-
- 19 Aug, 2000 2 commits
-
-
Kenneth Christiansen authored
achtung/po/da.po bonobo/po/da.po control-center/po/da.po dia/po/da.po eog/po/da.po evolution/po/da.po gernel/po/da.po ggv/po/da.po gimp/po/da.po gnome-iconedit/po/da.po gnumeric/po/da.po nautilus/po/da.po rp3/po/da.po
-
SHIRASAKI Yasuhiro authored
-
- 18 Aug, 2000 1 commit
-
-
BST 2000 Austin Donnelly authored
Fri Aug 18 18:14:35 BST 2000 Austin Donnelly <austin@gimp.org> * app/fileops.c: fix nasty bug where if overwriting a file and also changing the format, gimp would use the old format rather than the newly selected one. To repeat: save a new image as (eg) jpeg by typing foo.jpg<RET>, then Save As XCF by using the pop-up menu and clicking OK, then Save As jpeg by using pop-up and clicking OK, and OK again to allow the file to be overwritten. You should find that foo.jpg contains an XCF version of the image. This was because the "overwrite" path through the code was subtly different from the standard way through, meaning that gimage_set_save_proc() was never called. Now unified into new function file_save_with_proc().
-
- 17 Aug, 2000 8 commits
-
-
Nick Lamb /GIMP authored
This fix is somewhat evil. Tell me (rather than reverting it) if you find a case for which it does not work.
-
BST 2000 Andy Thomas authored
Thu Aug 17 22:07:50 BST 2000 Andy Thomas <alt@gimp.org> * plug-ins/sel2path/globals.h Fixed compilation problems. Some really old compilers had problems with the macros in sel2path. Thanks to Dougal_R_Scott@nag.national.com.aui for pointing it out. * app/layers_dialog.c Fixes #16583: "new view" not being updated correctly. I still think theres is a problem in the idle rendering when images that have multiple views require updating. I could only get the deleting layers operation to leave the "other views" out of date. This fix forces the views to be updates as soon as the layer is deleted. I think this is acceptable since we are doing a "large scale" operation and the performance loss by not doing the update in the background is OK. * plug-ins/common/plugindetails.c Fixed problem when doing searches for plugins containing a given string caused gtk warnings to be issued
-
Sven Neumann authored
2000-08-17 Sven Neumann <sven@gimp.org> * app/boundary.c (allocate_vert_segs): applied a fix for bug #16221 found by Seth Burgess <sjburges@gimp.org>.
-
Yuri Syrota authored
-
Marc Lehmann authored
-
Yuri Syrota authored
-
Manish Singh authored
-Yosh
-
Garry R. Osgood authored
2000-08-16 Garry R. Osgood <gosgood@idt.net> * app/gdisplay.c * app/image_map.c Addresses Bug Report #14704, and an undisclosed undo system bug. Freezes undo stack before interactive tools commence idle rendering; thaws stack on cleanup and immediately sets menu sensitivity. Not an image lock, but Yet Another UI Lock. Oh well; merrilly we patch along... See http://bugs.gnome.org/db/14/14704.html for gory details. Closes #14704.
-
- 16 Aug, 2000 4 commits
-
-
Daniel Egger authored
Proofread versions.
-
Sven Neumann authored
2000-08-16 Sven Neumann <sven@gimp.org> * plug-ins/gdyntext/gdyntext_ui.c * plug-ins/gdyntext/message_window.c: set gimp_help accelerator on main window and use gimp_dialog_set_icon () on all windows.
-
Sven Neumann authored
2000-08-16 Sven Neumann <sven@gimp.org> * plug-ins/common/animationplay.c: check if drawable returned by gimp_drawable_get() is valid. In a lot of cases this prevents the plug-in from crashing if the user closes the associated image (as described in bug report #20979).
-
Sven Neumann authored
--Sven
-
- 15 Aug, 2000 9 commits
-
-
Kjartan Maraas authored
2000-08-16 Kjartan Maraas <kmaraas@gnome.org> * no.po: Updated Norwegian translation.
-
Valek Frob authored
-
Michael Natterer authored
2000-08-15 Michael Natterer <mitch@gimp.org> * app/app_procs.c * app/gimprc.c * app/module_db.c * app/plug_in.c: s/if(be_verbose || no_splash)/if(be_verbose)/g Changed because nobody on #gimp could explain why "no_splash" should imply "be_verbose".
-
Sven Neumann authored
--Sven
-
Yuri Syrota authored
-
Yuri Syrota authored
-
Yuri Syrota authored
-
Yuri Syrota authored
-
Michael Natterer authored
2000-08-15 Michael Natterer <mitch@gimp.org> * plug-ins/print/* * po-plug-ins/POTFILES.in: updated to the current CVS version from sourceforge (something after 4.0a1).
-
- 14 Aug, 2000 1 commit
-
-
Daniel Egger authored
Added missing prototype.
-
- 13 Aug, 2000 1 commit
-
-
SHIRASAKI Yasuhiro authored
-- yasuhiro
-
- 12 Aug, 2000 1 commit
-
-
Valek Frob authored
-