mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 19:00:20 -06:00
FF-1032 - removing "Nodes" from plugin names
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
<Authors>John Andrews</Authors>
|
||||
<Product>Image Nodes</Product>
|
||||
<Product>Image</Product>
|
||||
<PackageProjectUrl>https://fileflows.com/</PackageProjectUrl>
|
||||
<Description>Nodes for processing images files. This plugin contains nodes to convert and manipulate images.</Description>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -165,7 +165,7 @@ public abstract class ImageBaseNode:Node
|
||||
{
|
||||
if (args.Parameters.ContainsKey(IMAGE_INFO) == false)
|
||||
{
|
||||
args.Logger?.WLog("No image information loaded, use a 'Image File' node first");
|
||||
args.Logger?.WLog("No image information loaded, use a 'Image File' flow element first");
|
||||
return null;
|
||||
}
|
||||
var result = args.Parameters[IMAGE_INFO] as ImageInfo;
|
||||
|
||||
@@ -5,7 +5,7 @@ public class Plugin : FileFlows.Plugin.IPlugin
|
||||
/// <inheritdoc />
|
||||
public Guid Uid => new Guid("a6ddeee5-4c5a-46c5-80d5-e48552dd6a9b");
|
||||
/// <inheritdoc />
|
||||
public string Name => "Image Nodes";
|
||||
public string Name => "Image";
|
||||
/// <inheritdoc />
|
||||
public string MinimumVersion => "1.0.4.2019";
|
||||
/// <inheritdoc />
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user