mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-02-14 04:08:26 -06:00
fixing comic convert making PDF and CBZ extension uppercase
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
<Authors>John Andrews</Authors>
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
<Authors>John Andrews</Authors>
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -99,7 +99,7 @@ public class ComicConverter: Node
|
||||
|
||||
private string CreateComic(NodeParameters args, string directory, string format)
|
||||
{
|
||||
string file = Path.Combine(args.TempPath, Guid.NewGuid().ToString() + "." + format);
|
||||
string file = Path.Combine(args.TempPath, Guid.NewGuid().ToString() + "." + format.ToLower());
|
||||
args.Logger?.ILog("Creating comic: " + file);
|
||||
if (format == "CBZ")
|
||||
Helpers.ZipHelper.Compress(args, directory, file);
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
<Authors>John Andrews</Authors>
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -5,8 +5,8 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
<Authors>John Andrews</Authors>
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<FileVersion>1.0.0.172</FileVersion>
|
||||
<ProductVersion>1.0.0.172</ProductVersion>
|
||||
<FileVersion>1.0.0.177</FileVersion>
|
||||
<ProductVersion>1.0.0.177</ProductVersion>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
<Authors>John Andrews</Authors>
|
||||
|
||||
Reference in New Issue
Block a user