v7.0.0.5 Beta

This commit is contained in:
stax76
2023-12-28 06:11:42 +01:00
parent 6ef9f32d4f
commit d41faad9d9
3 changed files with 6 additions and 6 deletions

View File

@@ -1,11 +1,11 @@
# v7.0.0.5 Beta (2023-??-??) # v7.0.0.5 Beta (2023-12-28)
- Fix mpv.net option `language` not working from command line. - Fix mpv.net option `language` not working from command line.
- Chinese and German translation updated. - Chinese and German translation updated.
- More libplacebo options added. - More libplacebo options added.
- Support of the mpv option `title-bar`. - Support of the mpv option `title-bar`.
- Fix video being rendered with black line at the bottom. - Video being less often rendered with black line at the bottom.
- The conf file reader/writer detects if the user prefers space before and after the equal sign. - The conf file reader/writer detects if the user prefers space before and after the equal sign.
- The portable download includes like the installer debug symbols. - The portable download includes like the installer debug symbols.
- Setup questions on startup removed. - Setup questions on startup removed.

View File

@@ -11,9 +11,9 @@
<UseWindowsForms>true</UseWindowsForms> <UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>mpv-icon.ico</ApplicationIcon> <ApplicationIcon>mpv-icon.ico</ApplicationIcon>
<Product>mpv.net</Product> <Product>mpv.net</Product>
<FileVersion>7.0.0.4</FileVersion> <FileVersion>7.0.0.5</FileVersion>
<AssemblyVersion>7.0.0.4</AssemblyVersion> <AssemblyVersion>7.0.0.5</AssemblyVersion>
<InformationalVersion>7.0.0.4</InformationalVersion> <InformationalVersion>7.0.0.5</InformationalVersion>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
</PropertyGroup> </PropertyGroup>

View File

@@ -79,7 +79,7 @@ public class AppClass
public static string About => "Copyright (C) 2000-2023 mpv.net/mpv/mplayer\n" + public static string About => "Copyright (C) 2000-2023 mpv.net/mpv/mplayer\n" +
$"{AppInfo.Product} {AppInfo.Version}" + GetLastWriteTime(Environment.ProcessPath!) + "\n" + $"{AppInfo.Product} {AppInfo.Version}" + GetLastWriteTime(Environment.ProcessPath!) + "\n" +
$"{Player.GetPropertyString("mpv-version")}" + GetLastWriteTime(Folder.Startup + "libmpv-2.dll") + "\n" + $"{Player.GetPropertyString("mpv-version")}" + GetLastWriteTime(Folder.Startup + "libmpv-2.dll") + "\n" +
$"ffmpeg {Player.GetPropertyString("ffmpeg-version")}\n" + "\nGPL v2 License"; $"ffmpeg {Player.GetPropertyString("ffmpeg-version")}\n" + "GPL v2 License";
static string GetLastWriteTime(string path) static string GetLastWriteTime(string path)
{ {