diff --git a/BasicNodes/BasicNodes.csproj b/BasicNodes/BasicNodes.csproj index 22b5cbea..b2b130ce 100644 Binary files a/BasicNodes/BasicNodes.csproj and b/BasicNodes/BasicNodes.csproj differ diff --git a/BasicNodes/BasicNodes.en.json b/BasicNodes/BasicNodes.en.json index f16e9aa5..6dfcd0f9 100644 --- a/BasicNodes/BasicNodes.en.json +++ b/BasicNodes/BasicNodes.en.json @@ -75,7 +75,7 @@ "DeleteOriginal-Help": "If the original file should be deleted, this will only happen if the working file is different to the original file" } }, - "Pattern": { + "PatternMatch": { "Description": "Tests the working file and original file against a regular expression.\n\nOutput 1: Matches expression\nOutput 2: Does not match", "Fields": { "Pattern": "Pattern", diff --git a/Builds/BasicNodes.zip b/Builds/BasicNodes.zip index eef3b536..bd2f7afd 100644 Binary files a/Builds/BasicNodes.zip and b/Builds/BasicNodes.zip differ diff --git a/Builds/VideoNodes.zip b/Builds/VideoNodes.zip index 6af075a5..23ae3484 100644 Binary files a/Builds/VideoNodes.zip and b/Builds/VideoNodes.zip differ diff --git a/VideoNodes/VideoNodes.csproj b/VideoNodes/VideoNodes.csproj index 4c3e466b..74686b32 100644 Binary files a/VideoNodes/VideoNodes.csproj and b/VideoNodes/VideoNodes.csproj differ diff --git a/buildplugins.ps1 b/buildplugins.ps1 index c3cf585a..3160dc2f 100644 --- a/buildplugins.ps1 +++ b/buildplugins.ps1 @@ -20,13 +20,13 @@ Get-ChildItem -Path .\ -Filter *.csproj -Recurse -File -Name | ForEach-Object { $json += "`t},`n" # build an instance for FileFlow local code - dotnet build $_ /property:GenerateFullPaths=true /consoleloggerparameters:NoSummary --output:../FileFlows/Server/Plugins/$name/$version + dotnet build $_ --configuration Release /property:GenerateFullPaths=true /consoleloggerparameters:NoSummary --output:../FileFlows/Server/Plugins/$name/$version Remove-Item ../FileFlows/Server/Plugins/$name/$version/Plugin.dll -ErrorAction SilentlyContinue Remove-Item ../FileFlows/Server/Plugins/$name/$version/*.deps.json -ErrorAction SilentlyContinue Remove-Item ../FileFlows/Server/Plugins/$name/$version/ref -Recurse -ErrorAction SilentlyContinue # build instance to be published to repo - dotnet build $_ /property:GenerateFullPaths=true /consoleloggerparameters:NoSummary --output:Builds/$name + dotnet build $_ --configuration Release /property:GenerateFullPaths=true /consoleloggerparameters:NoSummary --output:Builds/$name Remove-Item Builds/$name/Plugin.dll -ErrorAction SilentlyContinue Remove-Item Builds/$name/*.deps.json -ErrorAction SilentlyContinue diff --git a/plugins.json b/plugins.json index 31bec2a1..e1a6118d 100644 --- a/plugins.json +++ b/plugins.json @@ -1,12 +1,12 @@ [ { "Name": "BasicNodes", - "Version": "0.0.1.7", + "Version": "0.0.1.8", "Package": "https://github.com/revenz/FileFlowsPlugins/blob/master/Builds/BasicNodes.zip?raw=true" }, { "Name": "VideoNodes", - "Version": "0.0.1.7", + "Version": "0.0.1.8", "Package": "https://github.com/revenz/FileFlowsPlugins/blob/master/Builds/VideoNodes.zip?raw=true" } ]