This commit is contained in:
Frank Skare
2019-07-06 02:39:25 +02:00
parent 9e2bf46636
commit 751c8779f4
3 changed files with 5 additions and 10 deletions

View File

@@ -5,6 +5,7 @@
settings were modified
- when multiple files are selected in Windows File Explorer and enter is
pressed, the files are opened, the order is random however
- libmpv was updated to shinchiro 2019-06-30
### 4.5

View File

@@ -52,7 +52,7 @@ Table of contents
- 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))
- 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
- [Command Line Interface](https://mpv.io/manual/master/#options)
- DXVA2 video decoding acceleration

View File

@@ -109,15 +109,9 @@ namespace mpvnet
}
else
{
string switchName = i.Substring(2);
switch (switchName)
{
case "fs":
case "fullscreen":
mp.Fullscreen = true;
break;
}
string name = i.Substring(2);
mp.ProcessProperty(name, "yes");
ProcessProperty(name, "yes");
}
}
}