From 431fb2bfc10a18ee6f319b677550006b64c0cdd3 Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 6 Feb 2026 15:27:39 +0100 Subject: [PATCH 1/3] feat: added create new value function --- .../control/control-audit.md | 7 ++- .../control/std_control_value.proto.json | 59 +++++++++++++++++++ 2 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 definitions/standard/runtime_definition/control/std_control_value.proto.json diff --git a/definitions/standard/runtime_definition/control/control-audit.md b/definitions/standard/runtime_definition/control/control-audit.md index 40c6d6d..727a2a4 100644 --- a/definitions/standard/runtime_definition/control/control-audit.md +++ b/definitions/standard/runtime_definition/control/control-audit.md @@ -17,4 +17,9 @@ break -> stop ## Added - if -- if-else \ No newline at end of file +- if-else + +# 06.02.2026 + +## Added +- value diff --git a/definitions/standard/runtime_definition/control/std_control_value.proto.json b/definitions/standard/runtime_definition/control/std_control_value.proto.json new file mode 100644 index 0000000..bdde248 --- /dev/null +++ b/definitions/standard/runtime_definition/control/std_control_value.proto.json @@ -0,0 +1,59 @@ +{ + "runtimeName": "std::control::value", + "runtimeParameterDefinitions": [ + { + "dataTypeIdentifier": { + "genericKey": "R" + }, + "runtimeName": "value", + "defaultValue": null, + "name": [ + { + "code": "en-US", + "content": "New Value" + } + ], + "description": [ + { + "code": "en-US", + "content": "The value that should be created." + } + ], + "documentation": [] + } + ], + "returnTypeIdentifier": { + "genericKey": "R" + }, + "throwsError": false, + "genericKeys": [ + "R" + ], + "name": [ + { + "code": "en-US", + "content": "New Value" + } + ], + "description": [ + { + "code": "en-US", + "content": "Creates a new value." + } + ], + "documentation": [], + "alias": [ + { + "code": "en-US", + "content": "new;create;control;std" + } + ], + "displayMessage": [ + { + "code": "en-US", + "content": "New ${value}" + } + ], + "deprecationMessage": [], + "displayIcon": "tabler:new-section" +} From 84c23d10f771e40b5dfcf75e13351c25a079b6f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raphael=20G=C3=B6tz?= <52959657+raphael-goetz@users.noreply.github.com> Date: Fri, 6 Feb 2026 15:32:44 +0100 Subject: [PATCH 2/3] Update definitions/standard/runtime_definition/control/std_control_value.proto.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Raphael Götz <52959657+raphael-goetz@users.noreply.github.com> --- .../runtime_definition/control/std_control_value.proto.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/standard/runtime_definition/control/std_control_value.proto.json b/definitions/standard/runtime_definition/control/std_control_value.proto.json index bdde248..091f441 100644 --- a/definitions/standard/runtime_definition/control/std_control_value.proto.json +++ b/definitions/standard/runtime_definition/control/std_control_value.proto.json @@ -16,7 +16,7 @@ "description": [ { "code": "en-US", - "content": "The value that should be created." + "content": "The value to create." } ], "documentation": [] From bac606c5e658f3265bf0ddb7900c93a1d8279615 Mon Sep 17 00:00:00 2001 From: Raphael Date: Wed, 11 Feb 2026 08:12:38 +0100 Subject: [PATCH 3/3] ref: renamed new into save --- .../control/std_control_value.proto.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/definitions/standard/runtime_definition/control/std_control_value.proto.json b/definitions/standard/runtime_definition/control/std_control_value.proto.json index 091f441..2426f7e 100644 --- a/definitions/standard/runtime_definition/control/std_control_value.proto.json +++ b/definitions/standard/runtime_definition/control/std_control_value.proto.json @@ -10,13 +10,13 @@ "name": [ { "code": "en-US", - "content": "New Value" + "content": "Value" } ], "description": [ { "code": "en-US", - "content": "The value to create." + "content": "The value to save." } ], "documentation": [] @@ -32,26 +32,26 @@ "name": [ { "code": "en-US", - "content": "New Value" + "content": "Set Value" } ], "description": [ { "code": "en-US", - "content": "Creates a new value." + "content": "Saves the given value." } ], "documentation": [], "alias": [ { "code": "en-US", - "content": "new;create;control;std" + "content": "value;save;create;control;std" } ], "displayMessage": [ { "code": "en-US", - "content": "New ${value}" + "content": "Save ${value}" } ], "deprecationMessage": [],