[gegl] operations: add titles to manys ops missing them



commit 0dd06a515fae062f48dd5da30da9a4c1b6e3a4d8
Author: Øyvind Kolås <pippin gimp org>
Date:   Tue May 2 20:16:17 2017 +0200

    operations: add titles to manys ops missing them

 operations/common/color-rotate.c              |    1 +
 operations/common/convolution-matrix.c        |    1 +
 operations/common/display.c                   |    1 +
 operations/common/dropshadow.c                |    1 +
 operations/common/gaussian-blur.c             |    1 +
 operations/common/remap.c                     |    1 +
 operations/workshop/ditto.c                   |    1 +
 operations/workshop/external/gluas.c          |    4 ++--
 operations/workshop/external/line-profile.c   |    1 +
 operations/workshop/generated/average.c       |    1 +
 operations/workshop/generated/blend-reflect.c |    1 +
 operations/workshop/generated/blend.rb        |    1 +
 operations/workshop/generated/negation.c      |    1 +
 operations/workshop/generated/soft-burn.c     |    1 +
 operations/workshop/generated/soft-dodge.c    |    1 +
 operations/workshop/generated/subtractive.c   |    1 +
 16 files changed, 17 insertions(+), 2 deletions(-)
---
diff --git a/operations/common/color-rotate.c b/operations/common/color-rotate.c
index ace641f..9ae3a03 100644
--- a/operations/common/color-rotate.c
+++ b/operations/common/color-rotate.c
@@ -405,6 +405,7 @@ gegl_op_class_init (GeglOpClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "categories",   "color",
     "name",         "gegl:color-rotate",
+    "title",        _("Color Rotate"),
     "description",  _("Replace a range of colors with another"),
     NULL);
 }
diff --git a/operations/common/convolution-matrix.c b/operations/common/convolution-matrix.c
index fd6a77f..7af8922 100644
--- a/operations/common/convolution-matrix.c
+++ b/operations/common/convolution-matrix.c
@@ -612,6 +612,7 @@ gegl_op_class_init (GeglOpClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "categories",  "generic",
     "name",        "gegl:convolution-matrix",
+    "title",       _("Convolution Matrix"),
     "description", _("Apply a generic 5x5 convolution matrix"),
     NULL);
 }
diff --git a/operations/common/display.c b/operations/common/display.c
index d84cb72..10cbbfe 100644
--- a/operations/common/display.c
+++ b/operations/common/display.c
@@ -138,6 +138,7 @@ gegl_op_class_init (GeglOpClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "name"        , "gegl:display",
     "categories"  , "meta:display",
+    "title"       , _("Display"),
     "description" ,
     _("Display the input buffer in a window."),
     NULL);
diff --git a/operations/common/dropshadow.c b/operations/common/dropshadow.c
index 9fd8385..c670ef0 100644
--- a/operations/common/dropshadow.c
+++ b/operations/common/dropshadow.c
@@ -110,6 +110,7 @@ gegl_op_class_init (GeglOpClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "name",        "gegl:dropshadow",
     "categories",  "effects:light",
+    "title",       _("Dropshadow"),
     "description",
     _("Creates a dropshadow effect on the input buffer"),
     NULL);
diff --git a/operations/common/gaussian-blur.c b/operations/common/gaussian-blur.c
index 1ed9b85..d92a930 100644
--- a/operations/common/gaussian-blur.c
+++ b/operations/common/gaussian-blur.c
@@ -115,6 +115,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
     "name",           "gegl:gaussian-blur",
+    "title",          _("Gaussian Blur"),
     "categories",     "blur",
     "reference-hash", "5d10ee663c5ff908c3c081e516154873",
     "description", _("Performs an averaging of neighboring pixels with the "
diff --git a/operations/common/remap.c b/operations/common/remap.c
index edd47aa..c37a84b 100644
--- a/operations/common/remap.c
+++ b/operations/common/remap.c
@@ -97,6 +97,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
     "name"       , "gegl:remap",
+    "title"      , _("Remap"),
     "description",
           _("stretch components of pixels individually based on luminance envelopes"),
     "categories" , "compositors",
diff --git a/operations/workshop/ditto.c b/operations/workshop/ditto.c
index a0fd1cb..54132e0 100644
--- a/operations/workshop/ditto.c
+++ b/operations/workshop/ditto.c
@@ -111,6 +111,7 @@ gegl_op_class_init (GeglOpClass *klass)
   gegl_operation_class_set_keys (operation_class,
   "categories"  , "distort",
   "name"        , "gegl:ditto",
+  "title"       , _("Ditto"),
   "description" , _("Test op to do a 1:1 map of input to output, while sampling"),
   NULL);
 }
diff --git a/operations/workshop/external/gluas.c b/operations/workshop/external/gluas.c
index 982b7c8..a4f478c 100644
--- a/operations/workshop/external/gluas.c
+++ b/operations/workshop/external/gluas.c
@@ -991,9 +991,9 @@ gegl_op_class_init (GeglOpClass *klass)
   gegl_operation_class_set_keys (operation_class,
   "name"        , "gegl:gluas",
   "categories"  , "script:misc",
+  "title"       , _("gluas"),
   "description" ,
-        _("A general purpose filter/composer implementation proxy for the"
-          " lua programming language."),
+        _("Pixel level filter/composer scripting protoyping with lua. See 
http://pippin.gimp.org/image-processing/ for further details."),
         NULL);
 }
 
diff --git a/operations/workshop/external/line-profile.c b/operations/workshop/external/line-profile.c
index 0e4b7e6..b8fb51e 100644
--- a/operations/workshop/external/line-profile.c
+++ b/operations/workshop/external/line-profile.c
@@ -193,6 +193,7 @@ gegl_op_class_init (GeglOpClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "name"        , "gegl:line-profile",
     "categories"  , "debug",
+    "title"       , _("Line Profile"),
     "description" ,
           _("Renders luminance profiles for red green and blue components along"
             " the specified line in the input buffer, plotted in a buffer of the"
diff --git a/operations/workshop/generated/average.c b/operations/workshop/generated/average.c
index fc800b6..7df9d1c 100644
--- a/operations/workshop/generated/average.c
+++ b/operations/workshop/generated/average.c
@@ -105,6 +105,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
   "name"        , "gegl:average",
+  "title"       , "average",
   "categories"  , "compositors:blend",
   "description" ,
         _("Image blending operation 'average' (<tt>c = (cA + aB)/2</tt>)"),
diff --git a/operations/workshop/generated/blend-reflect.c b/operations/workshop/generated/blend-reflect.c
index ef8d535..37a3807 100644
--- a/operations/workshop/generated/blend-reflect.c
+++ b/operations/workshop/generated/blend-reflect.c
@@ -105,6 +105,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
   "name"        , "gegl:blend-reflect",
+  "title"       , "blend-reflect",
   "categories"  , "compositors:blend",
   "description" ,
         _("Image blending operation 'blend-reflect' (<tt>c = cB>=1.0?1.0:cA*cA / (1.0-cB)</tt>)"),
diff --git a/operations/workshop/generated/blend.rb b/operations/workshop/generated/blend.rb
index 1348d02..9758112 100755
--- a/operations/workshop/generated/blend.rb
+++ b/operations/workshop/generated/blend.rb
@@ -143,6 +143,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
   \"name\"        , \"gegl:#{name}\",
+  \"title\"       , \"#{name}\",
   \"categories\"  , \"compositors:blend\",
   \"description\" ,
         _(\"Image blending operation '#{name}' (<tt>c = #{formula}</tt>)\"),
diff --git a/operations/workshop/generated/negation.c b/operations/workshop/generated/negation.c
index fcf245d..f68dbca 100644
--- a/operations/workshop/generated/negation.c
+++ b/operations/workshop/generated/negation.c
@@ -105,6 +105,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
   "name"        , "gegl:negation",
+  "title"       , "negation",
   "categories"  , "compositors:blend",
   "description" ,
         _("Image blending operation 'negation' (<tt>c = 1.0 - fabs(1.0-cA-cB)</tt>)"),
diff --git a/operations/workshop/generated/soft-burn.c b/operations/workshop/generated/soft-burn.c
index 4a7b122..a53e2c8 100644
--- a/operations/workshop/generated/soft-burn.c
+++ b/operations/workshop/generated/soft-burn.c
@@ -105,6 +105,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
   "name"        , "gegl:soft-burn",
+  "title"       , "soft-burn",
   "categories"  , "compositors:blend",
   "description" ,
         _("Image blending operation 'soft-burn' (<tt>c = (cA+cB<1.0)?0.5*cB / (1.0 - cA):1.0-0.5*(1.0 - cA) 
/ cB</tt>)"),
diff --git a/operations/workshop/generated/soft-dodge.c b/operations/workshop/generated/soft-dodge.c
index e5ccfc9..f7155a3 100644
--- a/operations/workshop/generated/soft-dodge.c
+++ b/operations/workshop/generated/soft-dodge.c
@@ -105,6 +105,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
   "name"        , "gegl:soft-dodge",
+  "title"       , "soft-dodge",
   "categories"  , "compositors:blend",
   "description" ,
         _("Image blending operation 'soft-dodge' (<tt>c = (cA+cB<1.0)?0.5*cA / (1.0 - cB):1.0-0.5*(1.0 - 
cB)/cA</tt>)"),
diff --git a/operations/workshop/generated/subtractive.c b/operations/workshop/generated/subtractive.c
index eace570..9286429 100644
--- a/operations/workshop/generated/subtractive.c
+++ b/operations/workshop/generated/subtractive.c
@@ -105,6 +105,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
   "name"        , "gegl:subtractive",
+  "title"       , "subtractive",
   "categories"  , "compositors:blend",
   "description" ,
         _("Image blending operation 'subtractive' (<tt>c = cA+cB-1.0</tt>)"),


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]