From 2004184a96cc43c8e569fc8d3ed8a6ed18513239 Mon Sep 17 00:00:00 2001 From: Harrissou Sant-anna Date: Fri, 10 Jul 2020 02:22:07 +0200 Subject: [PATCH] Use string representation for Color functions example output --- resources/function_help/json/color_cmyk | 2 +- resources/function_help/json/color_cmyka | 2 +- resources/function_help/json/color_grayscale_average | 2 +- resources/function_help/json/color_hsl | 2 +- resources/function_help/json/color_hsla | 2 +- resources/function_help/json/color_hsv | 2 +- resources/function_help/json/color_hsva | 2 +- resources/function_help/json/color_mix_rgb | 2 +- resources/function_help/json/color_rgb | 2 +- resources/function_help/json/color_rgba | 2 +- resources/function_help/json/create_ramp | 4 ++-- resources/function_help/json/project_color | 2 +- resources/function_help/json/set_color_part | 2 +- 13 files changed, 14 insertions(+), 14 deletions(-) diff --git a/resources/function_help/json/color_cmyk b/resources/function_help/json/color_cmyk index fb8c83818b3..f3fd3293b4a 100644 --- a/resources/function_help/json/color_cmyk +++ b/resources/function_help/json/color_cmyk @@ -7,5 +7,5 @@ {"arg":"magenta","description":"magenta component of the color, as a percentage integer value from 0 to 100"}, {"arg":"yellow","description":"yellow component of the color, as a percentage integer value from 0 to 100"}, {"arg":"black","description":"black component of the color, as a percentage integer value from 0 to 100"}], - "examples": [ { "expression":"color_cmyk(100,50,0,10)", "returns":"0,115,230"}] + "examples": [ { "expression":"color_cmyk(100,50,0,10)", "returns":"'0,115,230'"}] } diff --git a/resources/function_help/json/color_cmyka b/resources/function_help/json/color_cmyka index 2235eb7ab70..7897553dade 100644 --- a/resources/function_help/json/color_cmyka +++ b/resources/function_help/json/color_cmyka @@ -8,5 +8,5 @@ {"arg":"yellow","description":"yellow component of the color, as a percentage integer value from 0 to 100"}, {"arg":"black","description":"black component of the color, as a percentage integer value from 0 to 100"}, {"arg":"alpha","description":"alpha component as an integer value from 0 (completely transparent) to 255 (opaque)."}], - "examples": [ { "expression":"color_cmyk(100,50,0,10,200)", "returns":"0,115,230,200"}] + "examples": [ { "expression":"color_cmyk(100,50,0,10,200)", "returns":"'0,115,230,200'"}] } diff --git a/resources/function_help/json/color_grayscale_average b/resources/function_help/json/color_grayscale_average index 221093a0d4b..82733e04802 100644 --- a/resources/function_help/json/color_grayscale_average +++ b/resources/function_help/json/color_grayscale_average @@ -6,5 +6,5 @@ "arguments": [ {"arg":"color", "description":"a color string"} ], - "examples": [ { "expression":"color_grayscale_average('255,100,50')", "returns":"127,127,127,255"}] + "examples": [ { "expression":"color_grayscale_average('255,100,50')", "returns":"'135,135,135,255'"}] } diff --git a/resources/function_help/json/color_hsl b/resources/function_help/json/color_hsl index ee9dab03179..56fd6560ecc 100644 --- a/resources/function_help/json/color_hsl +++ b/resources/function_help/json/color_hsl @@ -6,5 +6,5 @@ "arguments": [ {"arg":"hue","description":"hue of the color, as an integer value from 0 to 360"}, {"arg":"saturation","description":"saturation percentage of the color as an integer value from 0 to 100"}, {"arg":"lightness","description":"lightness percentage of the color as an integer value from 0 to 100"}], - "examples": [ { "expression":"color_hsl(100,50,70)", "returns":"166,217,140"}] + "examples": [ { "expression":"color_hsl(100,50,70)", "returns":"'166,217,140'"}] } diff --git a/resources/function_help/json/color_hsla b/resources/function_help/json/color_hsla index 7139b13f672..5a13239e12c 100644 --- a/resources/function_help/json/color_hsla +++ b/resources/function_help/json/color_hsla @@ -7,5 +7,5 @@ {"arg":"saturation","description":"saturation percentage of the color as an integer value from 0 to 100"}, {"arg":"lightness","description":"lightness percentage of the color as an integer value from 0 to 100"}, {"arg":"alpha","description":"alpha component as an integer value from 0 (completely transparent) to 255 (opaque)."}], - "examples": [ { "expression":"color_hsla(100,50,70,200)", "returns":"166,217,140,200"}] + "examples": [ { "expression":"color_hsla(100,50,70,200)", "returns":"'166,217,140,200'"}] } diff --git a/resources/function_help/json/color_hsv b/resources/function_help/json/color_hsv index 1004f7f28af..2f91a019734 100644 --- a/resources/function_help/json/color_hsv +++ b/resources/function_help/json/color_hsv @@ -6,5 +6,5 @@ "arguments": [ {"arg":"hue","description":"hue of the color, as an integer value from 0 to 360"}, {"arg":"saturation","description":"saturation percentage of the color as an integer value from 0 to 100"}, {"arg":"value","description":"value percentage of the color as an integer from 0 to 100"}], - "examples": [ { "expression":"color_hsv(40,100,100)", "returns":"255,170,0"}] + "examples": [ { "expression":"color_hsv(40,100,100)", "returns":"'255,170,0'"}] } diff --git a/resources/function_help/json/color_hsva b/resources/function_help/json/color_hsva index 96248611557..6efa061cc6d 100644 --- a/resources/function_help/json/color_hsva +++ b/resources/function_help/json/color_hsva @@ -7,6 +7,6 @@ {"arg":"saturation","description":"saturation percentage of the color as an integer value from 0 to 100"}, {"arg":"value","description":"value percentage of the color as an integer from 0 to 100"}, {"arg":"alpha","description":"alpha component as an integer value from 0 (completely transparent) to 255 (opaque)"}], - "examples": [ { "expression":"color_hsva(40,100,100,200)", "returns":"255,170,0,200"}] + "examples": [ { "expression":"color_hsva(40,100,100,200)", "returns":"'255,170,0,200'"}] } diff --git a/resources/function_help/json/color_mix_rgb b/resources/function_help/json/color_mix_rgb index 0416ef05bd4..ac195fcc2f3 100644 --- a/resources/function_help/json/color_mix_rgb +++ b/resources/function_help/json/color_mix_rgb @@ -8,5 +8,5 @@ {"arg":"color2", "description":"a color string"}, {"arg":"ratio", "description":"a ratio"} ], - "examples": [ { "expression":"color_mix_rgb('0,0,0','255,255,255',0.5)", "returns":"127,127,127,255"}] + "examples": [ { "expression":"color_mix_rgb('0,0,0','255,255,255',0.5)", "returns":"'127,127,127,255'"}] } diff --git a/resources/function_help/json/color_rgb b/resources/function_help/json/color_rgb index 71389b7aa61..62d9a128713 100644 --- a/resources/function_help/json/color_rgb +++ b/resources/function_help/json/color_rgb @@ -6,6 +6,6 @@ "arguments": [ {"arg":"red","description":"red component as an integer value from 0 to 255"}, {"arg":"green","description":"green component as an integer value from 0 to 255"}, {"arg":"blue","description":"blue component as an integer value from 0 to 255"}], - "examples": [ { "expression":"color_rgb(255,127,0)", "returns":"255,127,0"}] + "examples": [ { "expression":"color_rgb(255,127,0)", "returns":"'255,127,0'"}] } diff --git a/resources/function_help/json/color_rgba b/resources/function_help/json/color_rgba index eebf3f6e1b7..252c944bc8b 100644 --- a/resources/function_help/json/color_rgba +++ b/resources/function_help/json/color_rgba @@ -7,5 +7,5 @@ {"arg":"green","description":"green component as an integer value from 0 to 255"}, {"arg":"blue","description":"blue component as an integer value from 0 to 255"}, {"arg":"alpha","description":"alpha component as an integer value from 0 (completely transparent) to 255 (opaque)."}], - "examples": [ { "expression":"color_rgba(255,127,0,200)", "returns":"255,127,0,200"}] + "examples": [ { "expression":"color_rgba(255,127,0,200)", "returns":"'255,127,0,200'"}] } diff --git a/resources/function_help/json/create_ramp b/resources/function_help/json/create_ramp index 9f5098b547d..bef5a5cd882 100644 --- a/resources/function_help/json/create_ramp +++ b/resources/function_help/json/create_ramp @@ -4,6 +4,6 @@ "groups": ["Color"], "description": "Returns a gradient ramp from a map of color strings and steps.", "arguments": [ {"arg":"map","description":"a map of color strings and steps"}, - {"arg":"discrete","optional":true,"description":"declare whether the color ramp is discrete"}], - "examples": [ { "expression":"ramp_color(create_array(map(0,'0,0,0',1,'255,0,0')),1)", "returns":"'255,0,0,255'"} ] + {"arg":"discrete","optional":true,"default":"false","description":"set this parameter to true to create a discrete color ramp"}], + "examples": [ { "expression":"ramp_color(create_ramp(map(0,'0,0,0',1,'255,0,0')),1)", "returns":"'255,0,0,255'"} ] } diff --git a/resources/function_help/json/project_color b/resources/function_help/json/project_color index 777bcf39cfc..24e208b266a 100644 --- a/resources/function_help/json/project_color +++ b/resources/function_help/json/project_color @@ -4,6 +4,6 @@ "groups": ["Color"], "description": "Returns a color from the project's color scheme.", "arguments": [ {"arg":"name","description":"a color name"}], - "examples": [ { "expression":"project_color('Logo color')", "returns":"20,140,50"} + "examples": [ { "expression":"project_color('Logo color')", "returns":"'20,140,50'"} ] } diff --git a/resources/function_help/json/set_color_part b/resources/function_help/json/set_color_part index c4ea9edbad7..aaa71fa0a73 100644 --- a/resources/function_help/json/set_color_part +++ b/resources/function_help/json/set_color_part @@ -8,5 +8,5 @@ {"arg":"component", "description":"a string corresponding to the color component to set. Valid options are:
"}, {"arg":"value", "description":"new value for color component, respecting the ranges listed above"} ], - "examples": [ { "expression":"set_color_part('200,10,30','green',50)", "returns":"200,50,30"}] + "examples": [ { "expression":"set_color_part('200,10,30','green',50)", "returns":"'200,50,30,255'"}] }