[gegl] ops: add title meta-data to some ops lacking it
- From: Øyvind Kolås <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] ops: add title meta-data to some ops lacking it
- Date: Thu, 4 May 2017 22:17:28 +0000 (UTC)
commit d58f3c6690a4a8315d1915133b902e94be76d178
Author: Øyvind Kolås <pippin gimp org>
Date: Fri May 5 00:17:08 2017 +0200
ops: add title meta-data to some ops lacking it
operations/common/gblur-1d.c | 1 +
operations/common/image-compare.c | 4 ++--
operations/common/layer.c | 1 +
operations/common/matting-global.c | 1 +
operations/common/svg-huerotate.c | 1 +
operations/common/svg-luminancetoalpha.c | 1 +
operations/common/svg-matrix.c | 1 +
operations/common/svg-saturate.c | 1 +
operations/external/ff-save.c | 1 +
9 files changed, 10 insertions(+), 2 deletions(-)
---
diff --git a/operations/common/gblur-1d.c b/operations/common/gblur-1d.c
index af9137c..4d7c18e 100644
--- a/operations/common/gblur-1d.c
+++ b/operations/common/gblur-1d.c
@@ -908,6 +908,7 @@ gegl_op_class_init (GeglOpClass *klass)
gegl_operation_class_set_keys (operation_class,
"name", "gegl:gblur-1d",
"categories", "hidden:blur",
+ "title", _("1D Gaussian-blur"),
"reference-hash", "33713bd5bab893c8e585c72cb8607e80",
"description",
_("Performs an averaging of neighboring pixels with the "
diff --git a/operations/common/image-compare.c b/operations/common/image-compare.c
index 4a4e73c..efdc5b2 100644
--- a/operations/common/image-compare.c
+++ b/operations/common/image-compare.c
@@ -205,8 +205,8 @@ gegl_op_class_init (GeglOpClass *klass)
"name" , "gegl:image-compare",
"categories" , "programming",
"description", _("Compares if input and aux buffers are "
- "different. Results are saved in the "
- "properties."),
+ "different. Global statistics are saved in the "
+ "properties and a visual difference image is produced as a visual result. "),
NULL);
}
diff --git a/operations/common/layer.c b/operations/common/layer.c
index e556a9c..d39bcd3 100644
--- a/operations/common/layer.c
+++ b/operations/common/layer.c
@@ -268,6 +268,7 @@ gegl_op_class_init (GeglOpClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:layer",
"categories" , "meta",
+ "title" , _("Layer"),
"description", _("A layer in the traditional sense"),
NULL);
}
diff --git a/operations/common/matting-global.c b/operations/common/matting-global.c
index adbe26e..6f156cc 100644
--- a/operations/common/matting-global.c
+++ b/operations/common/matting-global.c
@@ -487,6 +487,7 @@ static void gegl_op_class_init (GeglOpClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:matting-global",
"categories" , "matting",
+ "title" , _("Matting Global"),
"description",
_("Given a sparse user supplied tri-map and an input image, create a "
"foreground alpha matte. Set white as foreground, black as background "
diff --git a/operations/common/svg-huerotate.c b/operations/common/svg-huerotate.c
index 8e523c3..c20bbb9 100644
--- a/operations/common/svg-huerotate.c
+++ b/operations/common/svg-huerotate.c
@@ -115,6 +115,7 @@ gegl_op_class_init (GeglOpClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:svg-huerotate",
"categories" , "compositors:svgfilter",
+ "title" , _("SVG huderotate"),
"description", _("SVG color matrix operation svg_huerotate"),
NULL);
}
diff --git a/operations/common/svg-luminancetoalpha.c b/operations/common/svg-luminancetoalpha.c
index 593c620..98c4abf 100644
--- a/operations/common/svg-luminancetoalpha.c
+++ b/operations/common/svg-luminancetoalpha.c
@@ -90,6 +90,7 @@ gegl_op_class_init (GeglOpClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:svg-luminancetoalpha",
"categories" , "compositors:svgfilter",
+ "title" , _("SVG Luminance to Alpha"),
"reference-hash", "6763517c5421d736b855ffa2ebd845c9",
"description",
_("SVG color matrix operation svg_luminancetoalpha"),
diff --git a/operations/common/svg-matrix.c b/operations/common/svg-matrix.c
index 14ff607..87d5baf 100644
--- a/operations/common/svg-matrix.c
+++ b/operations/common/svg-matrix.c
@@ -131,6 +131,7 @@ gegl_op_class_init (GeglOpClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:svg-matrix",
"categories" , "compositors:svgfilter",
+ "title" , _("SVG Matrix"),
"description",_("SVG color matrix operation svg_matrix"),
NULL);
}
diff --git a/operations/common/svg-saturate.c b/operations/common/svg-saturate.c
index 47a0d67..f4c87cf 100644
--- a/operations/common/svg-saturate.c
+++ b/operations/common/svg-saturate.c
@@ -125,6 +125,7 @@ gegl_op_class_init (GeglOpClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:svg-saturate",
"categories" , "compositors:svgfilter",
+ "title" , _("SVG Saturate"),
"description", _("SVG color matrix operation svg_saturate"),
NULL);
}
diff --git a/operations/external/ff-save.c b/operations/external/ff-save.c
index 21057a2..27c4aaa 100644
--- a/operations/external/ff-save.c
+++ b/operations/external/ff-save.c
@@ -1091,6 +1091,7 @@ gegl_op_class_init (GeglOpClass *klass)
gegl_operation_class_set_keys (operation_class,
"name" , "gegl:ff-save",
+ "title" , _("FFmpeg Frame Saver"),
"categories" , "output:video",
"description" , _("FFmpeg video output sink"),
NULL);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]