mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 16:59:31 -06:00
added help to checksum nodes
This commit is contained in:
@@ -18,6 +18,12 @@
|
||||
"Outputs": {
|
||||
"1": "Checksum stored in variables \"SHA256\" and \"Checksum\""
|
||||
}
|
||||
},
|
||||
"SHA512Checksum": {
|
||||
"Description": "Computes a SHA512 checksum of the working file and stores it in the variable \"SHA512\" and in \"Checksum\".",
|
||||
"Outputs": {
|
||||
"1": "Checksum stored in variables \"SHA512\" and \"Checksum\""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,6 +8,10 @@ namespace ChecksumNodes
|
||||
public override int Outputs => 1;
|
||||
public override FlowElementType Type => FlowElementType.Logic;
|
||||
public override string Icon => "fas fa-file-contract";
|
||||
/// <summary>
|
||||
/// Get the help URL
|
||||
/// </summary>
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/checksum-nodes/md5";
|
||||
|
||||
private Dictionary<string, object> _Variables;
|
||||
public override Dictionary<string, object> Variables => _Variables;
|
||||
|
||||
@@ -9,6 +9,10 @@ namespace ChecksumNodes
|
||||
public override FlowElementType Type => FlowElementType.Logic;
|
||||
|
||||
public override string Icon => "fas fa-file-contract";
|
||||
/// <summary>
|
||||
/// Get the help URL
|
||||
/// </summary>
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/checksum-nodes/sha1";
|
||||
|
||||
private Dictionary<string, object> _Variables;
|
||||
public override Dictionary<string, object> Variables => _Variables;
|
||||
|
||||
@@ -8,6 +8,10 @@ namespace ChecksumNodes
|
||||
public override int Outputs => 1;
|
||||
public override FlowElementType Type => FlowElementType.Logic;
|
||||
|
||||
/// <summary>
|
||||
/// Get the help URL
|
||||
/// </summary>
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/checksum-nodes/sha256";
|
||||
public override string Icon => "fas fa-file-contract";
|
||||
|
||||
private Dictionary<string, object> _Variables;
|
||||
|
||||
@@ -9,6 +9,10 @@ namespace ChecksumNodes
|
||||
public override FlowElementType Type => FlowElementType.Logic;
|
||||
|
||||
public override string Icon => "fas fa-file-contract";
|
||||
/// <summary>
|
||||
/// Get the help URL
|
||||
/// </summary>
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/checksum-nodes/sha512";
|
||||
|
||||
private Dictionary<string, object> _Variables;
|
||||
public override Dictionary<string, object> Variables => _Variables;
|
||||
|
||||
@@ -4,6 +4,9 @@ public class FfmpegBuilderHdrToSdr : FfmpegBuilderNode
|
||||
{
|
||||
public override int Outputs => 2;
|
||||
|
||||
/// <summary>
|
||||
/// Get the help URL
|
||||
/// </summary>
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/video-nodes/ffmpeg-builder/hdr-to-sdr";
|
||||
|
||||
public override int Execute(NodeParameters args)
|
||||
|
||||
Reference in New Issue
Block a user