This commit is contained in:
Frank Skare
2019-04-12 18:01:23 +02:00
parent 1bae00051b
commit b93972c7f7
4 changed files with 9 additions and 5 deletions

View File

@@ -70,6 +70,10 @@ https://github.com/stax76/mpv.net/wiki/Scripting-(CSharp,-Python,-JavaScript,-Lu
### Changelog
### 2.8 (2019-04-12)
- Win 7 dark-mode render issue fix
### 2.7 (2019-04-12)
- the autofit mpv property was added to the conf editor

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("2.7.0.0")]
[assembly: AssemblyFileVersion("2.7.0.0")]
[assembly: AssemblyVersion("2.8.0.0")]
[assembly: AssemblyFileVersion("2.8.0.0")]

View File

@@ -9,7 +9,7 @@ namespace Controls
public static Brush ThemeBrush {
get {
if (Environment.OSVersion.Version.Major < 10)
return new SolidColorBrush(SystemColors.WindowTextColor);
return new SolidColorBrush(Colors.DimGray);
else
return SystemParameters.WindowGlassBrush;
}

View File

@@ -51,5 +51,5 @@ using System.Windows;
// 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("1.6.0.0")]
[assembly: AssemblyFileVersion("1.6.0.0")]
[assembly: AssemblyVersion("1.7.0.0")]
[assembly: AssemblyFileVersion("1.7.0.0")]