-
This commit is contained in:
@@ -5,6 +5,7 @@
|
|||||||
settings were modified
|
settings were modified
|
||||||
- when multiple files are selected in Windows File Explorer and enter is
|
- when multiple files are selected in Windows File Explorer and enter is
|
||||||
pressed, the files are opened, the order is random however
|
pressed, the files are opened, the order is random however
|
||||||
|
- libmpv was updated to shinchiro 2019-06-30
|
||||||
|
|
||||||
### 4.5
|
### 4.5
|
||||||
|
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ Table of contents
|
|||||||
- Searchable command palette to quickly launch commands and look for keys ([Screenshot](#command-palette-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))
|
- Modern UI with dark mode ([Screenshot](#config-editor-screenshot))
|
||||||
- Addon/extension API for .NET languages
|
- Addon/extension API for .NET languages
|
||||||
- Scripting API for Python, C#, Lua, JavaScript and PowerShell ([wiki](https://github.com/stax76/mpv.net/wiki/Scripting))
|
- 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
|
- mpv's OSC, IPC and conf files
|
||||||
- [Command Line Interface](https://mpv.io/manual/master/#options)
|
- [Command Line Interface](https://mpv.io/manual/master/#options)
|
||||||
- DXVA2 video decoding acceleration
|
- DXVA2 video decoding acceleration
|
||||||
|
|||||||
@@ -109,15 +109,9 @@ namespace mpvnet
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
string switchName = i.Substring(2);
|
string name = i.Substring(2);
|
||||||
|
mp.ProcessProperty(name, "yes");
|
||||||
switch (switchName)
|
ProcessProperty(name, "yes");
|
||||||
{
|
|
||||||
case "fs":
|
|
||||||
case "fullscreen":
|
|
||||||
mp.Fullscreen = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user