- 03 Aug, 2005 7 commits
-
-
Adam Weinberger authored
2005-08-03 Adam Weinberger <adamw@gnome.org> * POTFILES.in: Removed missing files.
-
Adam Weinberger authored
2005-08-03 Adam Weinberger <adamw@gnome.org> * en_CA.po: Updated Canadian English translation.
-
Sven Neumann authored
2005-08-03 Sven Neumann <sven@gimp.org> * app/core/core-enums.[ch]: added GIMP_UNDO_FOREGROUND_SELECT. * app/tools/Makefile.am * app/tools/gimpforegroundselecttool-undo.[ch]: added stubs for undo in the new foreground selection tool. * tools/pdbgen/pdb/procedural_db.pdb: include gimpbase.h for gimp_canonicalize_identifier(). * app/pdb/procedural_db_cmds.c: regenerated. * app/file/file-utils.c: fixed signedness warning.
-
Sven Neumann authored
-
Sven Neumann authored
2005-08-03 Sven Neumann <sven@gimp.org> * libgimpmath/gimpmd5.c * libgimpmath/test-md5.c * plug-ins/common/CEL.c * plug-ins/common/cartoon.c * plug-ins/common/emboss.c * plug-ins/common/exchange.c * plug-ins/common/gifload.c * plug-ins/common/poppler.c * plug-ins/jpeg/jpeg-save.c * plug-ins/jpeg/jpeg-save.h * plug-ins/metadata/interface.c * plug-ins/metadata/metadata.c * plug-ins/metadata/xmp-model.c * plug-ins/script-fu/siod/sliba.c: fixed signedness warnings.
-
Sven Neumann authored
-
Sven Neumann authored
2005-08-03 Sven Neumann <sven@gimp.org> * libgimpcolor/gimprgb.[ch]: deprecated RGB intensity functions and definitions. These coefficients do not accurately compute luminance for contemporary monitors. Instead the coefficients from the sRGB spec should be used which have now been added. * libgimpcolor/gimpcolor.def: updated. * libgimp/gimpdrawable.c * libgimp/gimppixelfetcher.c * app/base/colorize.c * app/base/levels.c * app/base/temp-buf.c * app/core/gimpdrawable-blend.c * app/core/gimpdrawable-convert.c * app/core/gimpdrawable-desaturate.c * app/core/gimpimage-convert.c * app/core/gimpimage.c * app/gui/splash.c * app/widgets/gimpgradienteditor.c * modules/colorsel_triangle.c * plug-ins/common/aa.c * plug-ins/common/bumpmap.c * plug-ins/common/colorify.c * plug-ins/common/despeckle.c * plug-ins/common/displace.c * plug-ins/common/engrave.c * plug-ins/common/gradmap.c * plug-ins/common/grid.c * plug-ins/common/mng.c * plug-ins/common/newsprint.c * plug-ins/common/png.c * plug-ins/common/whirlpinch.c * plug-ins/gflare/gflare.c * plug-ins/gfli/gfli.c * plug-ins/maze/handy.c * plug-ins/pagecurl/pagecurl.c: use gimp_rgb_luminance() and friends instead of the deprecated intensity functions.
-
- 02 Aug, 2005 11 commits
-
-
Michael Natterer authored
2005-08-03 Michael Natterer <mitch@gimp.org> * libgimp/gimpprocbrowserdialog.[ch]: removed all parameters from gimp_proc_browser_dialog_new() and removed the "scheme_names" stuff. * plug-ins/dbbrowser/procedure-browser.c * plug-ins/pygimp/procbrowser.c * plug-ins/script-fu/script-fu-console.c: changed accordingly. * plug-ins/script-fu/script-fu-interface.c * plug-ins/script-fu/script-fu-scripts.c * plug-ins/script-fu/script-fu-types.h * plug-ins/script-fu/siod-wrapper.c: removed all sorts of conversions between '-' and '_' for procedure names. * plug-ins/script-fu/script-fu.c: use canonical names for script-fu's procedures.
-
Michael Natterer authored
2005-08-03 Michael Natterer <mitch@gimp.org> * app/actions/vectors-commands.c * app/widgets/gimphelp.c: canonicalized some hardcoded procedure names because internal functions accept only canonical names now.
-
Michael Natterer authored
2005-08-03 Michael Natterer <mitch@gimp.org> Changed naming scheme for PDB procedure names from random_crap_that_traditionally_has_underscores to enforced-canonical-identifiers. I'm pretty sure some things are broken after this commit. More changes to come... * libgimpbase/gimpbase.def * libgimpbase/gimputils.[ch]: added gimp_canonicalize_identifier(). * app/pdb/procedural_db.[ch] (struct ProcRecord): added "gchar *original_name" to keep a procedure's original name as reigstered by plug-ins (compat cruft). (procedural_db_init_procs): canonicalized list of deprecated procedures. * app/plug-in/plug-in-proc-def.c (plug_in_proc_def_free): free original_name. * app/plug-in/plug-in-message.c: canonicalize procedure names which are received over the wire. * app/plug-in/plug-in-rc.c: serialize the original_name and create the canonicalized name on-the-fly when deserializing. * app/plug-in/plug-in-run.c: pass the original_name to plug-ins when running them because they strcmp() the passed procedure name. * app/plug-in/plug-ins.c (plug_ins_add_to_db): pass canonical procedure names to procedural_db_execute(). (plug_ins_file_proc_compare): special-case "gimp-xcf", not "gimp_xcf". * app/xcf/xcf.c: changed static XCF procedures accordingly. * tools/pdbgen/app.pl * tools/pdbgen/lib.pl: do some trivial substitutions to generate canonicalized names in app/, and C identifiers with underscores in libgimp/. * tools/pdbgen/pdb/brushes.pdb * tools/pdbgen/pdb/fileops.pdb * tools/pdbgen/pdb/gradients.pdb * tools/pdbgen/pdb/image.pdb * tools/pdbgen/pdb/palettes.pdb * tools/pdbgen/pdb/patterns.pdb * tools/pdbgen/pdb/plug_in.pdb * tools/pdbgen/pdb/procedural_db.pdb * tools/pdbgen/pdb/text_tool.pdb * tools/pdbgen/pdb/transform_tools.pdb: canonicaloized procedure names in calls to std_pdb_deprecated() and in procedure names in generated C code. * app/pdb/*_cmds.c * libgimp/*_pdb.c: regenerated.
-
Sven Neumann authored
2005-08-03 Sven Neumann <sven@gimp.org> * libgimp/gimpbrushmenu.c * libgimp/gimpdrawablecombobox.c * libgimp/gimpfontselectbutton.c * libgimp/gimpgradientmenu.c * libgimp/gimpimagecombobox.c * libgimp/gimppalettemenu.c * libgimp/gimppatternmenu.c: fixed signedness warnings.
-
Manish Singh authored
2005-08-02 Manish Singh <yosh@gimp.org> * plug-ins/pygimp/procbrowser.c: Quick and dirty restore of browser functionality.
-
Michael Natterer authored
2005-08-02 Michael Natterer <mitch@gimp.org> * libgimp/gimpuitypes.h: added GimpProcBrowserDialog typedef here. * libgimp/gimpprocbrowserdialog.[ch] * libgimp/gimpprocview.[ch]: fixed copyright headers, added G_BEGIN_DECLS / G_END_DECLS.
-
Michael Natterer authored
2005-08-02 Michael Natterer <mitch@gimp.org> * plug-ins/dbbrowser/Makefile.am * plug-ins/dbbrowser/gimpprocbrowser.[ch] * plug-ins/dbbrowser/gimpprocview.[ch]: removed these files... * libgimp/Makefile.am * libgimp/gimpui.h * libgimp/gimpui.def * libgimp/gimpprocbrowserdialog.[ch] * libgimp/gimpprocview.[ch]: ...and added them here. Turned the procedure browser into a widget called GimpProcBrowserDialog and changed its API completely. Fixes bug #165009. * plug-ins/dbbrowser/plugin-browser.c * plug-ins/dbbrowser/procedure-browser.c * plug-ins/script-fu/Makefile.am * plug-ins/script-fu/script-fu-console.c: changed accordingly. * plug-ins/pygimp/Makefile.am * plug-ins/pygimp/procbrowser.c: ditto (#if 0'ed stuff so it compiles).
-
Michael Natterer authored
2005-08-02 Michael Natterer <mitch@gimp.org> * POTFILES.in: removed plug-ins/dbbrowser/gimpprocbrowser.c and plug-ins/dbbrowser/gimpprocview.c
-
Michael Natterer authored
2005-08-02 Michael Natterer <mitch@gimp.org> * POTFILES.in: added libgimp/gimpprocbrowserdialog.c and libgimp/gimpprocview.c
-
Sven Neumann authored
2005-08-02 Sven Neumann <sven@gimp.org> * app/tools/gimpforegroundselectoptions.[ch] * app/tools/gimpforegroundselecttool.[ch]: some code cleanup; moved stroke width to the tool options.
-
Takeshi AIHANA authored
2005-08-02 Takeshi AIHANA <aihana@gnome.gr.jp> * ja.po: Fixed wrong translations pointed by kano@na.rim.or.jp.
-
- 01 Aug, 2005 6 commits
-
-
Vincent van Adrighem authored
2005-08-01 Vincent van Adrighem <adrighem@gnome.org> * nl.po: Translation updated.
-
Manish Singh authored
-
Manish Singh authored
2005-07-31 Manish Singh <yosh@gimp.org> * app/composite/Makefile.am * app/composite/make-installer.py: fix code generation filenames.
-
Manish Singh authored
-
Manish Singh authored
2005-07-31 Manish Singh <yosh@gimp.org> * acinclude.m4 * m4macros/Makefile.am * m4macros/detectcflags.m4: new macro: GIMP_DETECT_CFLAGS; used to detect which of a set of compiler options a compiler supports. * configure.in: use the above for the altivec and -fno-strict-aliasing flags. Also, use it to detect the presence of -mmmx and -msse, since those are needed to compile even MMX/SSE assembly with gcc 4.0. Define MMX/SSE_EXTRA_CFLAGS. * app/composite/Makefile.am: compile each of the composite flavors into their own library, so we can use automake's per-target CFLAGS. Use MMX/SSE/ALTIVEC_EXTRA_CFLAGS in the appropriate places. Build libappcomposite.a out of the resulting objects. * app/composite/gimp-composite-3dnow.c * 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 * app/composite/make-installer.py: move the _init functions into the installers, so only actually mmx/sse/etc. code gets compiled under the appropriate CFLAGS. * app/composite/gimp-composite-3dnow-installer.c * app/composite/gimp-composite-altivec-installer.c * app/composite/gimp-composite-mmx-installer.c * app/composite/gimp-composite-sse-installer.c * app/composite/gimp-composite-sse2-installer.c * app/composite/gimp-composite-vis-installer.c: regenerated. * app/composite/gimp-composite.c: remove useless cpu-accel.h include.
-
Adam Weinberger authored
2005-07-31 Adam Weinberger <adamw@gnome.org> * en_CA.po: Updated Canadian English translation.
-
- 31 Jul, 2005 8 commits
-
-
David Odin authored
* app/dialogs/preferences-dialog.c: when the notebook page is changed with the mouse wheel, update the title and the selection in the treeview.
-
Sven Neumann authored
2005-07-31 Sven Neumann <sven@gimp.org> * POTFILES.in: added new files. * de.po: updated.
-
Sven Neumann authored
2005-07-31 Sven Neumann <sven@gimp.org> * app/tools/Makefile.am * app/tools/gimpforegroundselectoptions.[ch]: added options for GimpForegroundSelectionTool. * app/tools/gimpforegroundselecttool.c: also allow to classify background pixels. * app/tools/gimpfreeselecttool.c: implement GimpTool::control and reset the points array if the tool is HALTed.
-
Sven Neumann authored
2005-07-31 Sven Neumann <sven@gimp.org> * app/tools/gimpforegroundselecttool.c: give some visual feedback when the user is drawing. Should use a different GC though.
-
Sven Neumann authored
2005-07-31 Sven Neumann <sven@gimp.org> * app/tools/gimpdrawtool.[ch]: added some const qualifiers.
-
Sven Neumann authored
2005-07-31 Sven Neumann <sven@gimp.org> * app/core/gimpscanconvert.c (gimp_scan_convert_render): pass 255 as value to gimp_scan_convert_render_internal(). * app/tools/gimpforegroundselecttool.[ch]: add paint strokes as foreground color; draw function is missing.
-
Sven Neumann authored
2005-07-31 Sven Neumann <sven@gimp.org> * app/core/gimpscanconvert.c: fixed some minor coding style issues.
-
Sven Neumann authored
2005-07-31 Sven Neumann <sven@gimp.org> * app/display/gimpdisplayshell-render.c * app/display/gimpdisplayshell.[ch]: removed the overlay again. This needs to be done differently. * app/tools/gimpforegroundselecttool.c: changed accordingly.
-
- 30 Jul, 2005 8 commits
-
-
Sven Neumann authored
2005-07-30 Sven Neumann <sven@gimp.org> * app/display/gimpdisplayshell-render.c * app/display/gimpdisplayshell.[ch]: renamed overlay to mask and added a different overlay implementation that will be needed to finish the new foreground-select tool. * app/tools/gimpforegroundselecttool.c: changed accordingly.
-
Sven Neumann authored
2005-07-30 Sven Neumann <sven@gimp.org> * app/tools/gimptoolcontrol.[ch]: transparently handle cursor vs. toggle cursor in the cursor accessor functions. * app/tools/gimpconvolvetool.c * app/tools/gimperasertool.c * app/tools/gimpmagnifytool.c * app/tools/gimptool.c: simplifies things here. * app/tools/gimpforegroundselecttool.c: set a toggle cursor and toggle the tool if a mask is set.
-
Adam Weinberger authored
2005-07-30 Adam Weinberger <adamw@gnome.org> * en_CA.po: Updated Canadian English translation.
-
Sven Neumann authored
2005-07-30 Sven Neumann <sven@gimp.org> * app/tools/gimpforegroundselecttool.c: implement cursor_update(). Suppress standard selection tool functionality if a mask exists.
-
Sven Neumann authored
2005-07-30 Sven Neumann <sven@gimp.org> * app/tools/gimpforegroundselecttool.c: implement oper_update() and give some hints in the statusbar.
-
Sven Neumann authored
-
Sven Neumann authored
-
Sven Neumann authored
2005-07-30 Sven Neumann <sven@gimp.org> * app/display/gimpdisplayshell-render.c * app/display/gimpdisplayshell.[ch]: added gimp_display_shell_set_overlay(); allows to overlay a mask over the display to visualize a selection. * app/tools/gimpforegroundselecttool.[ch]: use the new functionality to display the selection. Escape cancels the tool, Enter applies the selection.
-