diff --git a/Changelog.md b/Changelog.md index 0b37be9..1208bea 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,8 @@ +### + +- 'Tools > Execute mpv command' was removed, + [mpv-repl](https://github.com/rossy/mpv-repl) is currently the best choice + ### 5.0 - [changed icon design](https://github.com/stax76/mpv.net/blob/master/img/mpvnet.png) @@ -12,13 +17,13 @@ change is that there exist too many different terms, addons, addins, extensions, modules, packages etc.. mpv.net follows Google Chrome as the worlds most popular extendable app, Chrome uses the term Extension. -- a thread synchronisation bug was fixed, the shutdown thread was aborted - if it was running more then 3 seconds, this caused the rating extension - to fail if it was waiting for a drive to wakeup +- a thread synchronization bug was fixed, the shutdown thread was aborted + if it was running more than 3 seconds, this caused the rating extension + to fail if it was waiting for a drive to wake up - a new JavaScript was included to show the playlist with a smaller font size, the script is located at startup/scripts - terminal support added using mpvnet.com ! -- script engine performence and error handling was improved +- script engine performance and error handling was improved - the [scripting wiki page](https://github.com/stax76/mpv.net/wiki/Scripting) was improved - the C# scripting host extension was converted from VB to C# because it's not only used for hosting but I also use it now to code and debug script code diff --git a/img/mpvnet.ico b/img/mpvnet.ico index 5cc5eca..a70ca15 100644 Binary files a/img/mpvnet.ico and b/img/mpvnet.ico differ diff --git a/img/mpvnet.pdn b/img/mpvnet.pdn index 6fb5890..0a3dd6d 100644 Binary files a/img/mpvnet.pdn and b/img/mpvnet.pdn differ diff --git a/img/mpvnet.png b/img/mpvnet.png index c89b6b3..4c08c44 100644 Binary files a/img/mpvnet.png and b/img/mpvnet.png differ diff --git a/mpv.net/Misc/Command.cs b/mpv.net/Misc/Command.cs index 640bd81..73107c4 100644 --- a/mpv.net/Misc/Command.cs +++ b/mpv.net/Misc/Command.cs @@ -158,7 +158,7 @@ namespace mpvnet } } - public static void ExecuteMpvCommand() + public static void ExecuteMpvCommand() // deprecated 2019 { InvokeOnMainThread(new Action(() => { string command = VB.Interaction.InputBox("Enter a mpv command to be executed.", "Execute Command", RegHelp.GetString(App.RegPath, "RecentExecutedCommand")); diff --git a/mpv.net/Resources/inputConf.txt b/mpv.net/Resources/inputConf.txt index 2aaab91..eb40ac6 100644 --- a/mpv.net/Resources/inputConf.txt +++ b/mpv.net/Resources/inputConf.txt @@ -153,7 +153,6 @@ l ab-loop #menu: Tools > Set/clear A-B loop points L cycle-values loop-file "inf" "no" #menu: Tools > Toggle infinite file looping Ctrl+h cycle-values hwdec "auto" "no" #menu: Tools > Toggle Hardware Decoding - _ script-message mpv.net execute-mpv-command #menu: Tools > Execute mpv command... _ script-message mpv.net manage-file-associations #menu: Tools > Manage File Associations... _ script-message mpv.net shell-execute https://mpv.io/manual/stable/ #menu: Help > Show mpv manual diff --git a/mpv.net/Resources/mpvnet.png b/mpv.net/Resources/mpvnet.png index c89b6b3..4c08c44 100644 Binary files a/mpv.net/Resources/mpvnet.png and b/mpv.net/Resources/mpvnet.png differ diff --git a/mpv.net/mpvnet.ico b/mpv.net/mpvnet.ico index 5cc5eca..a70ca15 100644 Binary files a/mpv.net/mpvnet.ico and b/mpv.net/mpvnet.ico differ