added help to checksum nodes

This commit is contained in:
John Andrews
2023-08-23 16:35:00 +12:00
parent a91a8abfba
commit e4b82005db
6 changed files with 25 additions and 0 deletions

View File

@@ -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\""
}
}
}
}

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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)