Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2512c02bff | ||
|
|
351fae8344 | ||
|
|
30b562a1e1 | ||
|
|
8a9a017875 | ||
|
|
fa0b0f496f | ||
|
|
83b5d9b65c |
23
README.md
23
README.md
@@ -43,18 +43,18 @@ Table of contents
|
||||
|
||||
### Features
|
||||
|
||||
- Customizable context menu defined in the same file as the key bindings ([Screenshot](#context-menu))
|
||||
- Searchable config dialog ([Screenshot](#config-editor))
|
||||
- Searchable input (key/mouse) binding editor ([Screenshot](#input-editor))
|
||||
- Searchable command palette to quickly launch commands and look for keys ([Screenshot](#command-palette))
|
||||
- Modern UI with dark mode ([Screenshot](#config-editor))
|
||||
- Customizable context menu defined in the same file as the key bindings ([Screenshot](#context-menu-screenshot))
|
||||
- Searchable config dialog ([Screenshot](#config-editor-screenshot))
|
||||
- Searchable input (key/mouse) binding editor ([Screenshot](#input-editor-screenshot))
|
||||
- Searchable command palette to quickly launch commands and look for keys ([Screenshot](#command-palette-screenshot))
|
||||
- Modern UI with dark mode ([Screenshot](#config-editor-screenshot))
|
||||
- Addon/extension API for .NET languages
|
||||
- Scripting API for Python, C#, Lua, JavaScript and PowerShell ([wiki](https://github.com/stax76/mpv.net/wiki/Scripting))
|
||||
- mpv's OSC, IPC and conf files
|
||||
- Support of the same [CLI options](https://mpv.io/manual/master/#options) as mpv
|
||||
- DXVA2 video decoding acceleration
|
||||
- OpenGL based video output capable of features loved by videophiles, such as video scaling with popular high quality algorithms, color management, frame timing, interpolation, HDR, and more
|
||||
- Search feature powered by [Everything](https://www.voidtools.com) to find and play media
|
||||
- Search feature powered by [Everything](https://www.voidtools.com) to find and play media ([Screenshot](#media-search-screenshot))
|
||||
|
||||
### Screenshots
|
||||
|
||||
@@ -87,6 +87,12 @@ Just press Ctrl+Shift+P and find it easily in the searchable command palette.
|
||||
|
||||

|
||||
|
||||
#### Media Search Screenshot
|
||||
|
||||
Media search feature powered by [Everything](https://www.voidtools.com) to find and play media.
|
||||
|
||||

|
||||
|
||||
### Context Menu
|
||||
|
||||
The context menu can be customized via input.conf file located in the config directory:
|
||||
@@ -191,6 +197,11 @@ mpv.net bugs and requests: <https://github.com/stax76/mpv.net/issues>
|
||||
|
||||
### 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
|
||||
|
||||
BIN
img/MediaSearch.png
Normal file
BIN
img/MediaSearch.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 125 KiB |
@@ -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")]
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user