diff --git a/BasicNodes/Scripting/BatScript.cs b/BasicNodes/Scripting/BatScript.cs index 892c752b..9d0c5315 100644 --- a/BasicNodes/Scripting/BatScript.cs +++ b/BasicNodes/Scripting/BatScript.cs @@ -13,7 +13,7 @@ namespace FileFlows.BasicNodes.Scripting; public class BatScript : ScriptBase { /// - public override string Icon => "svg:bat"; + public override string Icon => "svg:dos"; /// public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/bat-script"; /// diff --git a/BasicNodes/Scripting/Function.cs b/BasicNodes/Scripting/Function.cs index 06af7475..218e0265 100644 --- a/BasicNodes/Scripting/Function.cs +++ b/BasicNodes/Scripting/Function.cs @@ -15,7 +15,7 @@ public class Function : Node /// public override FlowElementType Type => FlowElementType.Logic; /// - public override string Icon => "fas fa-code"; + public override string Icon => "svg:javascript"; /// public override bool FailureNode => true; /// diff --git a/BasicNodes/Scripting/PowerShellScript.cs b/BasicNodes/Scripting/PowerShellScript.cs index 95f8d989..96c35ecc 100644 --- a/BasicNodes/Scripting/PowerShellScript.cs +++ b/BasicNodes/Scripting/PowerShellScript.cs @@ -13,7 +13,7 @@ namespace FileFlows.BasicNodes.Scripting; public class PowerShellScript : ScriptBase { /// - public override string Icon => "svg:ps1"; + public override string Icon => "svg:powershell"; /// public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/powershell-script"; diff --git a/BasicNodes/Scripting/ShellScript.cs b/BasicNodes/Scripting/ShellScript.cs index 37882d5c..4ecb9653 100644 --- a/BasicNodes/Scripting/ShellScript.cs +++ b/BasicNodes/Scripting/ShellScript.cs @@ -12,7 +12,7 @@ namespace FileFlows.BasicNodes.Scripting; public class ShellScript : ScriptBase { /// - public override string Icon => "svg:sh"; + public override string Icon => "svg:bash"; /// public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/shell-script"; diff --git a/BasicNodes/i18n/en.json b/BasicNodes/i18n/en.json index 4b790b8f..bce4658e 100644 --- a/BasicNodes/i18n/en.json +++ b/BasicNodes/i18n/en.json @@ -22,7 +22,7 @@ } }, "BatScript": { - "Label": "BAT Script", + "Label": "Batch (.bat)", "Description": "Allows you to execute a batch (.bat) script in a Windows environment.", "Outputs": { "1": "returned 1", @@ -41,7 +41,7 @@ } }, "CSharpScript": { - "Label": "C# Script", + "Label": "C# Function", "Description": "Allows you to execute a C# code inside the Flow.", "Outputs": { "1": "returned 1", @@ -60,7 +60,7 @@ } }, "ShellScript": { - "Label": "Shell Script", + "Label": "Shell (.sh))", "Description": "Allows you to execute a shell (.sh) script in a Unix-like environment.", "Outputs": { "1": "returned 1", @@ -79,7 +79,7 @@ } }, "PowerShellScript": { - "Label": "PowerShell Script", + "Label": "PowerShell (.ps1)", "Description": "Allows you to execute a PowerShell (.ps1) script in a Windows environment.", "Outputs": { "1": "returned 1",