gimp/libgimp
Jehan 345d148e21 libgimp: do not return a possibly invalid pointer.
Fixes the patch from !470 which is mostly right, except that
g_param_spec_sink() may possibly lead to finalizing the GParamSpec
(typically if it was a just-created floating spec). We don't want to
return pointer to freed data. Let's return NULL instead.

Also looking closer at the memory handling here, it looks the right
annotation for @pspec is (transfer floating). Basically we are sinking a
floating object into a full object and taking ownership of this sunk
object. But if the object was already sunk, we are reffing it and
keeping this additional reference, not the passed argument's. Hopefully
it's right since the annotation and handling of floating object with
GObject Introspection seems very unclear to me (even in core GObject
code, I see what looks like contradictory annotations).
2021-10-12 20:13:20 +02:00
..
.gitignore libgimp: update .gitignore 2020-10-26 12:28:06 +01:00
COPYING Change a bazillion URLs to https:// 2018-07-14 14:19:27 +02:00
GimpUi-3.0.metadata MR !343: using GimpUi prefix in Vala plug-ins too. 2020-09-26 22:11:53 +02:00
Makefile.am app, libgimp*: glib-genmarshal warns about --header --body 2021-04-17 22:50:49 +02:00
Makefile.gi libgimp: new metadata support concept in GimpSaveProcedure and new… 2020-11-23 02:15:13 +01:00
gimp-debug.c libgimp, devel-docs: enhance GIMP-PLUGIN-DEBUG backtrace 2020-12-18 01:17:54 +01:00
gimp-debug.h libgimp, devel-docs: enhance GIMP-PLUGIN-DEBUG backtrace 2020-12-18 01:17:54 +01:00
gimp-private.h Remove the entire old plug-in interface 2019-09-04 00:03:12 +02:00
gimp-shm.c Issue #3753 - Gimp master don't build on mingw-w64 errors on... 2019-08-05 16:02:38 +02:00
gimp-shm.h libgimp: forgot to actually add gimp-shm.[ch] 2019-08-04 20:18:10 +02:00
gimp.c app, libgimp: Add metadata preference for saving thumbnail by default 2021-10-12 13:20:47 -04:00
gimp.def app, libgimp: Add metadata preference for saving thumbnail by default 2021-10-12 13:20:47 -04:00
gimp.h app, libgimp: Add metadata preference for saving thumbnail by default 2021-10-12 13:20:47 -04:00
gimp_pdb.c pdb, plug-ins: change gimp_temp_name() to gimp_temp_file() 2019-09-11 22:32:44 +02:00
gimp_pdb.h pdb, plug-ins: change gimp_temp_name() to gimp_temp_file() 2019-09-11 22:32:44 +02:00
gimp_pdb_headers.h Rename the "fileops" PDB group to just "file" 2019-09-10 21:38:11 +02:00
gimpaspectpreview.c app, libgimp, pdb, plug-ins: more functions moved to get|set(). 2021-04-06 14:34:31 +02:00
gimpaspectpreview.h libgimp: update non-generated API using GimpItem/GimpDrawable/GimpLayer. 2019-08-22 15:54:36 +02:00
gimpbrush_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpbrush_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpbrushes_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpbrushes_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpbrushselect.c libgimp: add docs and annotations for gimp_brush_select_new(). 2021-04-28 00:51:40 +02:00
gimpbrushselect.h gir: More missing annotations 2020-05-08 16:57:45 +02:00
gimpbrushselect_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimpbrushselect_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpbrushselectbutton.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimpbrushselectbutton.h libgimp: clean up the instance private code in all select buttons 2019-08-04 17:04:22 +02:00
gimpbuffer_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpbuffer_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpchannel.c libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpchannel.h libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpchannel_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpchannel_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpcontext_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpcontext_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpdebug_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpdebug_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpdisplay.c Remove the entire old plug-in interface 2019-09-04 00:03:12 +02:00
gimpdisplay.h app, libgimp: get rid of all ID GTypes and ID param specs 2019-08-29 11:39:34 +02:00
gimpdisplay_pdb.c app, libgimp, pdb: new gimp_display_present() PDB call. 2021-04-30 03:46:52 +02:00
gimpdisplay_pdb.h app, libgimp, pdb: new gimp_display_present() PDB call. 2021-04-30 03:46:52 +02:00
gimpdrawable.c libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpdrawable.h libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpdrawable_pdb.c app, libgimp, pdb, plug-ins: more functions moved to get|set(). 2021-04-06 14:34:31 +02:00
gimpdrawable_pdb.h app, libgimp, pdb, plug-ins: more functions moved to get|set(). 2021-04-06 14:34:31 +02:00
gimpdrawablecolor_pdb.c app, libgimp, pdb: remove references of removed functions. 2020-10-26 15:36:42 +01:00
gimpdrawablecolor_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpdrawableedit_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimpdrawableedit_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpdrawablepreview.c app, libgimp, pdb, plug-ins: more functions moved to get|set(). 2021-04-06 14:34:31 +02:00
gimpdrawablepreview.h libgimp: update non-generated API using GimpItem/GimpDrawable/GimpLayer. 2019-08-22 15:54:36 +02:00
gimpdynamics_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpdynamics_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpedit_pdb.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimpedit_pdb.h app, libgimp, pdb, plug-ins: allow pasting multiple full layers. 2021-04-24 23:22:58 +02:00
gimpenums.c.tail libgimpbase: remove enum GimpBlendMode, it's not used any longer 2019-11-19 21:13:31 +01:00
gimpenums.h pdb, libgimp: generate some useless API docs for enums extracted from app/ 2019-07-24 01:55:06 +02:00
gimpexport.c app, libgimp, pdb, plug-ins: more functions moved to get|set(). 2021-04-06 14:34:31 +02:00
gimpexport.h libgimp: add GIMP_EXPORT_NEEDS_CROP export capability 2020-06-25 18:20:47 +03:00
gimpfile_pdb.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimpfile_pdb.h app: support saving/exporting with multi-selection. 2020-05-17 18:32:16 +02:00
gimpfileprocedure.c libgimp, plug-ins: add a "format name" concept to GimpFileProcedure. 2020-12-17 02:13:43 +01:00
gimpfileprocedure.h libgimp, plug-ins: add a "format name" concept to GimpFileProcedure. 2020-12-17 02:13:43 +01:00
gimpfloatingsel_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimpfloatingsel_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpfonts_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpfonts_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpfontselect.c Properly prefix the values of enum GimpPDBProcType 2019-08-30 12:52:28 +02:00
gimpfontselect.h libgimp: port gimp*select.[ch] to the new plug-in API 2019-08-04 16:08:49 +02:00
gimpfontselect_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimpfontselect_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpfontselectbutton.c libgimp: Always use g_object_notify_by_pspec() 2021-01-02 14:29:04 +01:00
gimpfontselectbutton.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpgimprc.c libgimp*: fix various missing (transfer) annotations. 2019-08-01 01:52:07 +02:00
gimpgimprc.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpgimprc_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpgimprc_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpgpparams-body.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimpgpparams.c app, libgimp: don't duplicate _gimp_gp_param_def_to_param_spec() 2019-09-04 10:41:19 +02:00
gimpgpparams.h app, libgimp: add _gimp_gp_params_free() to gimpgpparams 2019-09-05 20:59:57 +02:00
gimpgradient_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpgradient_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpgradients_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpgradients_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpgradientselect.c Properly prefix the values of enum GimpPDBProcType 2019-08-30 12:52:28 +02:00
gimpgradientselect.h libgimp: port gimp*select.[ch] to the new plug-in API 2019-08-04 16:08:49 +02:00
gimpgradientselect_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimpgradientselect_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpgradientselectbutton.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimpgradientselectbutton.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimphelp_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimphelp_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpimage.c libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpimage.h libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpimage_pdb.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimpimage_pdb.h app, libgimp, pdb, plug-ins: update some more functions to get|set(). 2021-04-06 00:49:07 +02:00
gimpimagecolorprofile.c libgimp: remove a ton of deprecated API that is unused 2019-08-27 16:32:25 +02:00
gimpimagecolorprofile.h libgimp: remove a ton of deprecated API that is unused 2019-08-27 16:32:25 +02:00
gimpimagecolorprofile_pdb.c pdb: change paths and URIs in the "plug_in" group to GFiles 2019-09-11 23:54:53 +02:00
gimpimagecolorprofile_pdb.h pdb: change the URIs in the color profile API to GFiles 2019-09-11 22:44:17 +02:00
gimpimagecombobox.c libgimp: fix (destroy) and (closure) annotations. 2021-03-20 16:43:09 +01:00
gimpimagecombobox.h gir: Add (closure) tags 2020-05-04 21:31:30 +02:00
gimpimageconvert_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimpimageconvert_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpimagegrid_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpimagegrid_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpimageguides_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpimageguides_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpimagemetadata-save.c app, libgimp: Add metadata preference for saving thumbnail by default 2021-10-12 13:20:47 -04:00
gimpimagemetadata.c libgimp: fix issue #6050 Phantom comments on pictures. 2021-03-22 16:06:54 -04:00
gimpimagemetadata.h app, libgimp, plug-ins: move Orientation metadata handling into core. 2020-09-24 12:43:41 +02:00
gimpimageprocedure.c Issue #6767: sensitivity API NO_IMAGE not working in Python. 2021-04-29 23:53:35 +02:00
gimpimageprocedure.h app, libgimp, libgimpconfig, extensions: image procedures now with… 2021-04-04 01:40:00 +02:00
gimpimagesamplepoints_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpimagesamplepoints_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpimageselect_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimpimageselect_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpimagetransform_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimpimagetransform_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpimageundo_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpimageundo_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpitem.c libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpitem.h libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpitem_pdb.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimpitem_pdb.h pdb, libgimp: change all generated ID array return values to object arrays 2019-09-05 13:01:00 +02:00
gimpitemcombobox.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimpitemcombobox.h gir: Add (closure) tags 2020-05-04 21:31:30 +02:00
gimpitemtransform_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpitemtransform_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimplayer.c libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimplayer.h libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimplayer_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimplayer_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimplayermask.c libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimplayermask.h libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimploadprocedure.c libgimp: doc fixes and improvements in procedure subclasses 2019-10-29 22:15:58 +01:00
gimploadprocedure.h gir: Add (closure) tags 2020-05-04 21:31:30 +02:00
gimpmessage_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpmessage_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimppainttools_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimppainttools_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimppalette_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimppalette_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimppalettes_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimppalettes_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimppaletteselect.c Properly prefix the values of enum GimpPDBProcType 2019-08-30 12:52:28 +02:00
gimppaletteselect.h libgimp: port gimp*select.[ch] to the new plug-in API 2019-08-04 16:08:49 +02:00
gimppaletteselect_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimppaletteselect_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimppaletteselectbutton.c libgimp: Always use g_object_notify_by_pspec() 2021-01-02 14:29:04 +01:00
gimppaletteselectbutton.h libgimp: clean up the instance private code in all select buttons 2019-08-04 17:04:22 +02:00
gimpparamspecs-body.c libgimp*: check all return values of g_param_spec_internal() 2019-12-27 19:53:08 +01:00
gimpparamspecs-desc.c libgimp: revive parameter range descriptions in the procedure browser 2020-04-28 19:14:11 +02:00
gimpparamspecs-desc.h libgimp: revive parameter range descriptions in the procedure browser 2020-04-28 19:14:11 +02:00
gimpparamspecs.c app, libgimp: share the code of libgimp/gimpparamspecs.c with app/ 2019-09-04 16:48:26 +02:00
gimpparamspecs.h app, libgimp: get rid of all ID GTypes and ID param specs 2019-08-29 11:39:34 +02:00
gimppattern_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimppattern_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimppatterns_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimppatterns_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimppatternselect.c Properly prefix the values of enum GimpPDBProcType 2019-08-30 12:52:28 +02:00
gimppatternselect.h patternselect: Document pattern_name parameter 2020-05-12 20:03:56 +02:00
gimppatternselect_pdb.c pdb, libgimp: use GIMP_VALLUES_GET_ENUM() in libgimp PDB wrappers 2019-09-04 01:49:35 +02:00
gimppatternselect_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimppatternselectbutton.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimppatternselectbutton.h libgimp: clean up the instance private code in all select buttons 2019-08-04 17:04:22 +02:00
gimppdb-private.h libgmp: move the remaining legacy code to gimplegacy, even PLUG_IN_INFO 2019-08-06 23:06:15 +02:00
gimppdb.c Issue #6033: fix calling gimp_pdb_run_procedure_argv() with no… 2021-04-08 21:14:02 +00:00
gimppdb.h gimppdb: Allow more easy bindable API 2020-09-20 11:36:01 +00:00
gimppdb_pdb.c app, libgimp, pdb: new API to advertize when procedures are sensitive. 2021-04-04 01:40:00 +02:00
gimppdb_pdb.h app, libgimp, pdb: new API to advertize when procedures are sensitive. 2021-04-04 01:40:00 +02:00
gimppdbprocedure.c libgimp: warn on attempts to install or uninstall a GimpPDBprocedure 2019-09-09 01:46:26 +02:00
gimppdbprocedure.h libgimp: add a GimpPDB class and subclass GimpProcedure as GimpPDBProcedure 2019-08-06 12:22:23 +02:00
gimppixbuf.c libimp: merge public gimppixbuf functions into gimplayer and gimpdrawable 2019-08-07 22:26:05 +02:00
gimppixbuf.h libimp: merge public gimppixbuf functions into gimplayer and gimpdrawable 2019-08-07 22:26:05 +02:00
gimpplugin-private.h libgimp: remove gimp_plug_in_create_procedure() from the API 2019-09-10 12:11:32 +02:00
gimpplugin.c libgimp: new gimp_plug_in_error_quark() / GIMP_PLUG_IN_ERROR. 2021-04-04 01:40:00 +02:00
gimpplugin.h libgimp: new gimp_plug_in_error_quark() / GIMP_PLUG_IN_ERROR. 2021-04-04 01:40:00 +02:00
gimpplugin_pdb.c pdb: rename all functions in the "plug_in" group 2019-09-11 23:58:47 +02:00
gimpplugin_pdb.h pdb: rename all functions in the "plug_in" group 2019-09-11 23:58:47 +02:00
gimpprocbrowserdialog.c gir: (skip) functions with varargs 2020-05-21 13:49:38 +02:00
gimpprocbrowserdialog.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpprocedure-params.h Remove GimpInt16Array 2021-02-18 11:32:45 +00:00
gimpprocedure-private.h Remove the entire old plug-in interface 2019-09-04 00:03:12 +02:00
gimpprocedure.c libgimp: do not return a possibly invalid pointer. 2021-10-12 20:13:20 +02:00
gimpprocedure.h Issue #6767: sensitivity API NO_IMAGE not working in Python. 2021-04-29 23:53:35 +02:00
gimpprocedureconfig-private.h libgimp: rename "Save|Load Defaults" buttons in GimpProcedureDialog. 2021-01-07 21:59:59 +01:00
gimpprocedureconfig.c libgimp, libgimpconfig: use gimp_parasite_get_data(). 2021-01-30 08:57:43 +01:00
gimpprocedureconfig.h libgimp: add gimp_procedure_config_save_metadata() 2020-06-08 14:28:47 +02:00
gimpproceduredialog.c libgimp: have gimp_procedure_dialog_new() behave like g_object_new(). 2021-08-03 19:47:19 +02:00
gimpproceduredialog.h plug-in, libgimp: Fixes #6753: redesign of WebP Export dialog 2021-06-18 16:42:08 +05:30
gimpprocview.c libgimp: revive parameter range descriptions in the procedure browser 2020-04-28 19:14:11 +02:00
gimpprocview.h Simplify the plug-in query API and fix plugin-browser 2019-09-08 14:59:09 +02:00
gimpprogress.c libgimp: improve gimp_progress_update(). 2021-02-15 22:30:30 +01:00
gimpprogress.h gimpprogress: Add arg descriptions to vfuncs 2020-05-08 10:39:33 +02:00
gimpprogress_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpprogress_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpprogressbar.c libgimp: Don't use g_message() for log message 2020-12-30 12:21:46 +01:00
gimpprogressbar.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpsaveprocedure.c app, libgimp: Add metadata preference for saving thumbnail by default 2021-10-12 13:20:47 -04:00
gimpsaveprocedure.h libgimp: new metadata support concept in GimpSaveProcedure and new… 2020-11-23 02:15:13 +01:00
gimpsaveproceduredialog.c libgimp: always keep the same number of columns for metadata settings. 2020-12-30 22:34:49 +01:00
gimpsaveproceduredialog.h libgimp, plug-ins: add an "(edit)" link next to "Metadata" frame in… 2020-12-17 19:11:51 +01:00
gimpselectbutton.c libgimp: some random minor cleanups 2019-08-04 23:02:42 +02:00
gimpselectbutton.h libgimp: some random minor cleanups 2019-08-04 23:02:42 +02:00
gimpselection.c libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpselection.h libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpselection_pdb.c app, libgimp, pdb: fix gimp_selection_float() usage. 2020-05-18 02:09:45 +02:00
gimpselection_pdb.h app, libgimp, pdb: fix gimp_selection_float() usage. 2020-05-18 02:09:45 +02:00
gimptextlayer_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimptextlayer_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimptexttool_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimptexttool_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpthumbnailprocedure.c libgimp: doc fixes and improvements in procedure subclasses 2019-10-29 22:15:58 +01:00
gimpthumbnailprocedure.h gir: Add (closure) tags 2020-05-04 21:31:30 +02:00
gimptilebackendplugin.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimptilebackendplugin.h libgimp: update non-generated API using GimpItem/GimpDrawable/GimpLayer. 2019-08-22 15:54:36 +02:00
gimptypes.h libgimp: add GimpProcedureConfig which implements the GimpConfig interface 2019-09-20 12:34:03 +02:00
gimpui.c app, libgimp: protect a bit GDK X Window calls. 2020-06-21 12:54:13 +02:00
gimpui.def plug-in, libgimp: Fixes #6753: redesign of WebP Export dialog 2021-06-18 16:42:08 +05:30
gimpui.h libgimp: new metadata support concept in GimpSaveProcedure and new… 2020-11-23 02:15:13 +01:00
gimpuimarshal.list libgimp/gimpuitypes.h abstract class for resource selection buttons. 2006-06-26 01:47:22 +00:00
gimpuitypes.h libgimp: new metadata support concept in GimpSaveProcedure and new… 2020-11-23 02:15:13 +01:00
gimpunit_pdb.c pdb, libgimp: use GIMP_VALUES_GET,DUP_FOO() in the libgimp PDB wrappers 2019-09-04 02:49:33 +02:00
gimpunit_pdb.h pdb, libgimp: remove double API generation from PDB. 2019-09-03 13:31:27 +02:00
gimpunitcache.c Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpunitcache.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpvectors.c libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpvectors.h libgimp: use G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE for… 2021-04-06 13:02:03 +02:00
gimpvectors_pdb.c app, libgimp*, pdb, plug-ins: use g_memdup2() instead of g_memdup() 2021-08-26 17:32:09 +02:00
gimpvectors_pdb.h pdb: update autogenerated files. 2020-05-25 22:55:01 +02:00
gimpzoompreview.c app, libgimp, pdb, plug-ins: more functions moved to get|set(). 2021-04-06 14:34:31 +02:00
gimpzoompreview.h libgimp: update non-generated API using GimpItem/GimpDrawable/GimpLayer. 2019-08-22 15:54:36 +02:00
libgimp-intl.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
meson.build libgimp: fix (again) the meson build. 2021-08-04 01:19:02 +02:00
stdplugins-intl.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00