diff --git a/README.md b/README.md index 6d506bf..93e0983 100644 --- a/README.md +++ b/README.md @@ -8,23 +8,23 @@ mpv.net is based on libmpv which offers a straightforward C API that was designe #### CLI options -mpv.net has a basic CLI parser to support mpv's [CLI options](https://mpv.io/manual/master/#options). +mpv.net has a basic CLI parser to support the CLI options of mpv/libmpv [CLI options](https://mpv.io/manual/master/#options). #### High quality video output -libmpv has an OpenGL based video output that is capable of many features loved by videophiles, such as video scaling with popular high quality algorithms, color management, frame timing, interpolation, HDR, and more. +mpv/libmpv has an OpenGL based video output that is capable of many features loved by videophiles, such as video scaling with popular high quality algorithms, color management, frame timing, interpolation, HDR, and more. #### On Screen Controller -mpv.net uses mpv's OSC offering play controls with a modern flat design. +mpv.net uses the OSC of mpv/libmpv offering play controls with a modern flat design. #### GPU video decoding -libmpv leverages the FFmpeg hwaccel APIs to support DXVA2 video decoding acceleration. +mpv/libmpv leverages the FFmpeg hwaccel APIs to support DXVA2 video decoding acceleration. #### Active development -mpv.net is under active development, focusing on user feedback. Want a feature? Post a [patch](https://github.com/stax76/mpv.net/pulls) or [request it](https://github.com/stax76/mpv.net/issues)! +mpv.net is under active development. Want a feature? Post a [patch](https://github.com/stax76/mpv.net/pulls) or [request it](https://github.com/stax76/mpv.net/issues)! Table of contents ----------------- diff --git a/mpv.net/Windows/CommandPaletteWindow.xaml.cs b/mpv.net/Windows/CommandPaletteWindow.xaml.cs index aa0f686..5f5c15c 100644 --- a/mpv.net/Windows/CommandPaletteWindow.xaml.cs +++ b/mpv.net/Windows/CommandPaletteWindow.xaml.cs @@ -33,7 +33,8 @@ namespace mpvnet bool Filter(CommandItem item) { - if (item.Command == "") return false; + if (item.Command == "" || item.Path == "") + return false; string filter = FilterTextBox.Text.ToLower(); if (filter == "") return true; if (item.Command.ToLower().Contains(filter) || diff --git a/mpv.net/Windows/ConfWindow.xaml b/mpv.net/Windows/ConfWindow.xaml index 4328e05..fa54a92 100644 --- a/mpv.net/Windows/ConfWindow.xaml +++ b/mpv.net/Windows/ConfWindow.xaml @@ -31,7 +31,6 @@ Open config folder Show mpv manual Show support forum - Write config to disk \ No newline at end of file diff --git a/mpv.net/Windows/ConfWindow.xaml.cs b/mpv.net/Windows/ConfWindow.xaml.cs index 37315ab..06223f2 100644 --- a/mpv.net/Windows/ConfWindow.xaml.cs +++ b/mpv.net/Windows/ConfWindow.xaml.cs @@ -240,10 +240,5 @@ namespace mpvnet { Process.Start("https://github.com/stax76/mpv.net#Support"); } - - private void ApplyTextBlock_MouseUp(object sender, MouseButtonEventArgs e) - { - WriteToDisk(); - } } } \ No newline at end of file diff --git a/mpv.net/mpv.ico b/mpv.net/mpv.ico deleted file mode 100644 index 5467e4e..0000000 Binary files a/mpv.net/mpv.ico and /dev/null differ diff --git a/mpv.net/mpv.net.csproj b/mpv.net/mpv.net.csproj index ef52418..28bb1aa 100644 --- a/mpv.net/mpv.net.csproj +++ b/mpv.net/mpv.net.csproj @@ -90,7 +90,7 @@ - mpv.ico + mpvnet.ico app.manifest @@ -235,6 +235,7 @@ LICENSE.txt PreserveNewest + diff --git a/mpv.net/mpvnet.ico b/mpv.net/mpvnet.ico new file mode 100644 index 0000000..27fefc0 Binary files /dev/null and b/mpv.net/mpvnet.ico differ