From dc3b275291d9550cc20874dd0e5140a20376721c Mon Sep 17 00:00:00 2001 From: Frank Skare Date: Wed, 24 Apr 2019 20:09:54 +0200 Subject: [PATCH] - --- README.md | 11 ++++++----- mpv.net/MainForm.cs | 2 +- mpv.net/Resources/inputConf.txt | 2 +- mpv.net/Resources/mpvNetConfToml.txt | 4 ++-- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 9590b8b..8cd964a 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@ Table of contents ### Features - Customizable context menu defined in the same file as the key bindings -- Searchable config dialog with modern UI -- Searchable input (key/mouse) binding editor with modern UI -- Modern UI using the OS theme color and dark mode -- Rich addon/extension API for .NET languages, over 700 available mpv properties -- Rich scripting API for Python, C#, Lua, JavaScript and PowerShell +- Searchable config dialog +- Searchable input (key/mouse) binding editor +- Dark mode +- Addon/extension API for .NET languages +- Scripting API for Python, C#, Lua, JavaScript and PowerShell - mpv's OSC (on screen controller (play control bar)), IPC, conf files ### Screenshots @@ -96,6 +96,7 @@ The add-on filename must end with 'Addon.dll' should be created (portable or appdata) - there was an issue causing keys not working after a modal window was shown - there was a crash when no script folder existed in the conf folder +- MediaInfo and libmpv were updated ### 3.1 (2019-04-23) diff --git a/mpv.net/MainForm.cs b/mpv.net/MainForm.cs index bfbae7f..c70efbe 100644 --- a/mpv.net/MainForm.cs +++ b/mpv.net/MainForm.cs @@ -25,7 +25,7 @@ namespace mpvnet int LastCursorChangedTickCount; bool IgnoreDpiChanged = true; - public string MpvNetDarkMode { get; set; } = "system"; + public string MpvNetDarkMode { get; set; } = "always"; public bool MpvFullscreen { get; set; } public float MpvAutofit { get; set; } = 0.50f; public int MpvScreen { get; set; } = -1; diff --git a/mpv.net/Resources/inputConf.txt b/mpv.net/Resources/inputConf.txt index 0661a4e..413dc4b 100644 --- a/mpv.net/Resources/inputConf.txt +++ b/mpv.net/Resources/inputConf.txt @@ -145,7 +145,7 @@ _ script-message mpv.net execute-mpv-command #menu: Tools > Execute mpv command... _ script-message mpv.net shell-execute https://mpv.io/manual/stable/ #menu: Help > Show mpv manual - _ script-message mpv.net shell-execute https://github.com/mpv-player/mpv/blob/master/etc/inputConf #menu: Help > Show mpv default keys + _ script-message mpv.net shell-execute https://github.com/mpv-player/mpv/blob/master/etc/input.conf #menu: Help > Show mpv default keys _ script-message mpv.net shell-execute https://github.com/stax76/mpv.net/blob/master/mpv.net/Resources/inputConf.txt #menu: Help > Show mpv.net default keys _ script-message mpv.net shell-execute https://mpv-net.github.io/mpv.net-web-site/ #menu: Help > Show mpv.net web site diff --git a/mpv.net/Resources/mpvNetConfToml.txt b/mpv.net/Resources/mpvNetConfToml.txt index 9ec7a9f..ef9d23b 100644 --- a/mpv.net/Resources/mpvNetConfToml.txt +++ b/mpv.net/Resources/mpvNetConfToml.txt @@ -1,8 +1,8 @@ [[settings]] name = "dark-mode" -default = "system" +default = "always" filter = "mpv.net" help = "Enables a dark theme." options = [{ name = "always" }, - { name = "system" , help = "Windows 10+" }, + { name = "system" , help = "Available on Windows 10 or higher" }, { name = "never" }] \ No newline at end of file