v6.0.4.0 Stable

This commit is contained in:
stax76
2023-08-17 02:38:41 +02:00
parent 308e3ed044
commit d2e7d4551f
5 changed files with 11 additions and 6 deletions

View File

@@ -1,4 +1,10 @@
# v6.0.4.0 Stable (2023-08-17)
- libmpv-2.dll support
- MediaInfo v23.07
- libmpv shinchiro 2023-08-16
# v6.0.3.2 Beta (2022-10-14)
- Support multiple folders input (regression fix).

View File

@@ -120,14 +120,13 @@ public static class PathStringExtension
return instance;
}
// Ensure trailing directory separator char
public static string AddSep(this string instance)
{
if (string.IsNullOrEmpty(instance))
return "";
if (!instance.EndsWith(Path.DirectorySeparatorChar.ToString()))
instance = instance + Path.DirectorySeparatorChar;
instance += Path.DirectorySeparatorChar;
return instance;
}

View File

@@ -11,7 +11,7 @@
<Identity
Name="5664FrankSkare.mpv.net"
Publisher="CN=6A1A1E69-736C-4C77-B310-7B6D38E32617"
Version="6.0.3.0" />
Version="6.0.4.0" />
<Properties>
<DisplayName>mpv.net</DisplayName>

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.0.3.2")]
[assembly: AssemblyFileVersion("6.0.3.2")]
[assembly: AssemblyVersion("6.0.4.0")]
[assembly: AssemblyFileVersion("6.0.4.0")]

View File

@@ -13,6 +13,7 @@
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
@@ -25,7 +26,6 @@
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>