FF-1032 - removing "Nodes" from plugin names

This commit is contained in:
John Andrews
2024-04-19 11:11:43 +12:00
parent f68d9b4eae
commit b0ec75dd53
33 changed files with 44 additions and 48 deletions

View File

@@ -42,7 +42,7 @@ namespace FileFlows.VideoNodes.FfmpegBuilderNodes
return false;
if(this is FfmpegBuilderStart == false && Model == null)
throw new Exception("FFMPEG Builder Model not set, you must add and use the \"FFMPEG Builder Start\" node first");
throw new Exception("FFMPEG Builder Model not set, you must add and use the \"FFMPEG Builder Start\" flow element first");
if (this is FfmpegBuilderStart == false)
{

View File

@@ -8,7 +8,7 @@ public class Plugin : FileFlows.Plugin.IPlugin
/// <inheritdoc />
public Guid Uid => new Guid("881b486b-4b38-4e66-b39e-fbc0fc9deee1");
/// <inheritdoc />
public string Name => "Video Nodes";
public string Name => "Video";
/// <inheritdoc />
public string MinimumVersion => "1.0.4.2019";
/// <inheritdoc />

View File

@@ -455,8 +455,7 @@ public class LocalFileService : IFileService
bool isFile = new FileInfo(path).Exists;
FileHelper.SetPermissions(logger, path, file: isFile,
permissions: permissions.Value.ToString("D3"));
FileHelper.SetPermissions(logger, path, file: isFile, permissions: permissions);
FileHelper.ChangeOwner(logger, path, file: isFile, ownerGroup: OwnerGroup);

View File

@@ -9,9 +9,9 @@
<PublishTrimmed>true</PublishTrimmed>
<Company>FileFlows</Company>
<Authors>John Andrews</Authors>
<Product>Video Nodes</Product>
<Product>Video</Product>
<PackageProjectUrl>https://fileflows.com/</PackageProjectUrl>
<Description>Nodes for processing video files. This plugin contains nodes to convert video files to different formats. Node to parse the video information from a file.</Description>
<Description>Flow element for the processing of video files, including but not limited to video file conversion, video file detection, upscaling, downscaling, and transcoding.</Description>
<RootNamespace> FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

View File

@@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace FileFlows.VideoNodes.VideoNodes;
/// <summary>
/// Node that converts a audio file into a video file and generates a video based on the audio
/// Flow Element that converts a audio file into a video file and generates a video based on the audio
/// </summary>
public class AudioToVideo : EncodingNode
{

View File

@@ -217,7 +217,7 @@ namespace FileFlows.VideoNodes
{
if (args.Parameters.ContainsKey(VIDEO_INFO) == false)
{
args.Logger.WLog("No codec information loaded, use a 'VideoFile' node first");
args.Logger.WLog("No codec information loaded, use a 'VideoFile' flow element first");
return null;
}

View File

@@ -102,7 +102,7 @@
"FfmpegBuilderStart": {
"Label": "FFMPEG Builder: Start",
"Outputs": {
"1": "FFMPEG Builder created and ready to add FFMPEG Builder nodes to"
"1": "FFMPEG Builder created and ready to add FFMPEG Builder flow elements to"
},
"Description": "Creates an instance of the FFMPEG Builder which can build a FFMPEG argument to then execute with the FFMPEG Executor."
},
@@ -122,7 +122,7 @@
"1": "FFMPEG Builder ran successfully and created new temporary file",
"2": "No changes detected in FFMPEG Builder, file not created"
},
"Description": "Executes a FFMPEG Builder command created by other FFMPEG Builder nodes.",
"Description": "Executes a FFMPEG Builder command created by other FFMPEG Builder flow elements.",
"Fields": {
"HardwareDecoding": "Hardware Decoding",
"HardwareDecoding-Help": "If the executor should attempt to use hardware decoding. If not available the execution will proceed just without hardware decoding enabled.",
@@ -375,7 +375,7 @@
},
"FfmpegBuilderMetadataRemover": {
"Label": "FFMPEG Builder: Metadata Remover",
"Description": "Removes metadata from the FFMPEG Builder so when the file is processed the selected metadata will be removed.\n\nNote: Only the metadata when this node is effected, if metadata is added after this node runs, that will not be effected.",
"Description": "Removes metadata from the FFMPEG Builder so when the file is processed the selected metadata will be removed.\n\nNote: Only the metadata when this flow element is effected, if metadata is added after this node runs, that will not be effected.",
"Outputs": {
"1": "Metadata removed from FFMPEG Builder"
},
@@ -430,7 +430,7 @@
},
"FfmpegBuilderSubtitleClearDefault": {
"Label": "FFMPEG Builder: Subtitle Clear Default",
"Description": "This node will clear the default flag from subtitles.",
"Description": "This flow element will clear the default flag from subtitles.",
"Fields": {
"LeaveForced": "Leave Forced",
"LeaveForced-Help": "When checked all forced subtitles will not be touched, they will maintain their original setting. This is executed prior to 'Set Forced Default' so takes precedent.",