Merge
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
<RootNamespace>ComicCompressor</RootNamespace>
|
<RootNamespace>ComicCompressor</RootNamespace>
|
||||||
<OutputName>ComicCompress</OutputName>
|
<OutputName>ComicCompress</OutputName>
|
||||||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||||||
|
<Configurations>Debug;Release;ReleaseWDbg</Configurations>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -9,4 +9,7 @@
|
|||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
|
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWDbg|AnyCPU'">
|
||||||
|
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
|
||||||
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
@@ -13,6 +13,7 @@ Global
|
|||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
Release|Any CPU = Release|Any CPU
|
Release|Any CPU = Release|Any CPU
|
||||||
|
ReleaseWDbg|Any CPU = ReleaseWDbg|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{2625C71D-E4EC-4768-BF04-87AAB364916A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{2625C71D-E4EC-4768-BF04-87AAB364916A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
|||||||
+6
-5
@@ -141,13 +141,14 @@ namespace ComicCompressor
|
|||||||
|
|
||||||
Logger.Log(progVersion, LogLevel.Verbose, true);
|
Logger.Log(progVersion, LogLevel.Verbose, true);
|
||||||
|
|
||||||
var progress = new Progress<ProgressInfo>( p => Logger.Log(p.ToString(), LogLevel.Verbose, true) );
|
//var progress = new Progress<ProgressInfo>( p => Logger.Log(p.ToString(), LogLevel.Verbose, true) );
|
||||||
FFmpeg.SetExecutablesPath(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location));
|
//FFmpeg.SetExecutablesPath(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location));
|
||||||
FFmpegDownloader.GetLatestVersion(FFmpegVersion.Official,progress);
|
//FFmpegDownloader.GetLatestVersion(FFmpegVersion.Official,progress);
|
||||||
|
|
||||||
|
|
||||||
//FFmpeg.SetExecutablesPath (Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "FFmpeg"));
|
//==//FFmpeg.SetExecutablesPath (Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "FFmpeg"));
|
||||||
Logger.Log(FFmpeg.ExecutablesPath, LogLevel.Verbose, true);
|
|
||||||
|
//Logger.Log(FFmpeg.ExecutablesPath, LogLevel.Verbose, true);
|
||||||
|
|
||||||
|
|
||||||
IList<string> files = new FileParser().ListAllFiles(Input, Recursive);
|
IList<string> files = new FileParser().ListAllFiles(Input, Recursive);
|
||||||
|
|||||||
@@ -26,7 +26,8 @@
|
|||||||
},
|
},
|
||||||
"DEV_UFF": {
|
"DEV_UFF": {
|
||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"commandLineArgs": "-i \"E:\\SynologyDrive\\SynologyDrive\\A\\_PRINT_TEMPLATES_\\DEV_IN\" -o \"E:\\SynologyDrive\\SynologyDrive\\A\\_PRINT_TEMPLATES_\\DEV_OUT\" -r -s -j -a -n"
|
"commandLineArgs": "-i \"E:\\SynologyDrive\\SynologyDrive\\A\\_PRINT_TEMPLATES_\\DEV_IN\" -o \"E:\\SynologyDrive\\SynologyDrive\\A\\_PRINT_TEMPLATES_\\DEV_OUT\" -r -s -j -a -n",
|
||||||
|
"nativeDebugging": true
|
||||||
},
|
},
|
||||||
"DEV_HOME": {
|
"DEV_HOME": {
|
||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
|
|||||||
Reference in New Issue
Block a user