mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-04-24 09:18:53 -05:00
Added help to function node
This commit is contained in:
Binary file not shown.
@@ -135,9 +135,10 @@
|
||||
},
|
||||
"Fields": {
|
||||
"Outputs": "Outputs",
|
||||
"Outputs-Help": "The number of outputs this node can have.",
|
||||
"Template": "Template",
|
||||
"Template-Help": "WARNING: This will replace whatever is in the code block with the template you select.",
|
||||
"Code": "Code",
|
||||
"Code-Help": "return -1 for error and flow to stop\nreturn 0 for flow to complete\nreturn 1 or more for the desired output to be called"
|
||||
"Code-Help": "return -1 for error and flow to stop. return 0 for flow to complete. return 1 or more for the desired output to be called"
|
||||
}
|
||||
},
|
||||
"GotoFlow": {
|
||||
|
||||
@@ -16,6 +16,8 @@ namespace FileFlows.BasicNodes.Functions
|
||||
public override FlowElementType Type => FlowElementType.Logic;
|
||||
public override string Icon => "fas fa-code";
|
||||
|
||||
public override string HelpUrl => "https://github.com/revenz/FileFlows/wiki/Function-Node";
|
||||
|
||||
[DefaultValue(1)]
|
||||
[NumberInt(1)]
|
||||
public new int Outputs { get; set; }
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace FileFlows.BasicNodes
|
||||
public class Plugin : FileFlows.Plugin.IPlugin
|
||||
{
|
||||
public string Name => "Basic Nodes";
|
||||
public string MinimumVersion => "0.2.0.310";
|
||||
public string MinimumVersion => "0.2.1.349";
|
||||
|
||||
public void Init() { }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user