-
This commit is contained in:
@@ -70,6 +70,10 @@ https://github.com/stax76/mpv.net/wiki/Scripting-(CSharp,-Python,-JavaScript,-Lu
|
|||||||
|
|
||||||
### Changelog
|
### Changelog
|
||||||
|
|
||||||
|
### 2.8 (2019-04-12)
|
||||||
|
|
||||||
|
- Win 7 dark-mode render issue fix
|
||||||
|
|
||||||
### 2.7 (2019-04-12)
|
### 2.7 (2019-04-12)
|
||||||
|
|
||||||
- the autofit mpv property was added to the conf editor
|
- the autofit mpv property was added to the conf editor
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("2.7.0.0")]
|
[assembly: AssemblyVersion("2.8.0.0")]
|
||||||
[assembly: AssemblyFileVersion("2.7.0.0")]
|
[assembly: AssemblyFileVersion("2.8.0.0")]
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ namespace Controls
|
|||||||
public static Brush ThemeBrush {
|
public static Brush ThemeBrush {
|
||||||
get {
|
get {
|
||||||
if (Environment.OSVersion.Version.Major < 10)
|
if (Environment.OSVersion.Version.Major < 10)
|
||||||
return new SolidColorBrush(SystemColors.WindowTextColor);
|
return new SolidColorBrush(Colors.DimGray);
|
||||||
else
|
else
|
||||||
return SystemParameters.WindowGlassBrush;
|
return SystemParameters.WindowGlassBrush;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -51,5 +51,5 @@ using System.Windows;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.6.0.0")]
|
[assembly: AssemblyVersion("1.7.0.0")]
|
||||||
[assembly: AssemblyFileVersion("1.6.0.0")]
|
[assembly: AssemblyFileVersion("1.7.0.0")]
|
||||||
|
|||||||
Reference in New Issue
Block a user