diff --git a/README.md b/README.md index 4faf26a..4d4cb71 100644 --- a/README.md +++ b/README.md @@ -197,6 +197,11 @@ mpv.net bugs and requests: ### Changelog +### 3.6.1 + +- there was a bug causing an exception if both the input editor and config editor + is opened, as soon as one is opened, the other can't be opened + ### 3.6 - playing files from rar archives caused an exception diff --git a/mpv.net/Properties/AssemblyInfo.cs b/mpv.net/Properties/AssemblyInfo.cs index b50ebdb..54f6bbc 100644 --- a/mpv.net/Properties/AssemblyInfo.cs +++ b/mpv.net/Properties/AssemblyInfo.cs @@ -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("3.6.0.0")] -[assembly: AssemblyFileVersion("3.6.0.0")] +[assembly: AssemblyVersion("3.6.1.0")] +[assembly: AssemblyFileVersion("3.6.1.0")] diff --git a/mpv.net/Windows/InputWindow.xaml.cs b/mpv.net/Windows/InputWindow.xaml.cs index 37d0abf..a27411c 100644 --- a/mpv.net/Windows/InputWindow.xaml.cs +++ b/mpv.net/Windows/InputWindow.xaml.cs @@ -41,7 +41,7 @@ namespace mpvnet } public static readonly DependencyProperty Foreground2Property = - DependencyProperty.Register("Foreground2", typeof(Brush), typeof(ConfWindow), new PropertyMetadata(Brushes.DarkSlateGray)); + DependencyProperty.Register("Foreground2", typeof(Brush), typeof(InputWindow), new PropertyMetadata(Brushes.DarkSlateGray)); private void SearchTextBox_TextChanged(object sender, TextChangedEventArgs e) {