diff --git a/README.md b/README.md index 693d270..807b40a 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ Features exclusiv to mpv.net - Searchable config editor - Searchable input (shorcut keys) editor - C# and PowerShell Scripting -- Global hotkeys +- Global keyboard shortcuts - Command palette to quickly and easily find commands and keys - Extension API for .NET languages (C#, VB.NET and F#) - Setup as x64 installer, portable, Chocolatey and WinGet diff --git a/docs/Changelog.md b/docs/Changelog.md index b8e5f8d..5702826 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -4,7 +4,9 @@ not yet released - Various conf editor improvements. (hooke007) - Custom conf folder location feature removed (a directory sym link can be used instead). -- Inno Setup replaced with MS Store MSIX setup. +- Inno Setup replaced with Microsoft Store setup, + file associations for the portable release can be created + with commands found in the menu and command palette. - Fix script-opts files being ingnored. diff --git a/docs/Manual.md b/docs/Manual.md index a46ce44..6835683 100644 --- a/docs/Manual.md +++ b/docs/Manual.md @@ -131,7 +131,13 @@ input.conf file, if it's missing mpv.net generates it with the following default [input.conf defaults](../../../tree/master/src/Resources/input.conf.txt) -Global hotkeys are supported via global-input.conf file. +Please be aware that once input.conf exists, mpv.net cannot update it, this means +the menu becomes outdated when mpv.net is updated with new or changed default menu +items. The only way to get an up-to-date menu is either resetting the menu by +deleting input.conf or updating it by manually editing input.conf. This is +currently the biggest design problem of mpv.net and it's difficult to overcome. + +Global keyboard shortcuts are supported via global-input.conf file. The config folder can be opened from the context menu: `Settings > Open Config Folder` @@ -196,7 +202,7 @@ Adds files to the playlist, requires [--process-instance=single](#--process-inst #### --command=\ Sends a input command to a running mpv.net instance via command line, for instance -to create global hotkeys with AutoHotkey. Requires [process-instance=single](#--process-instancevalue). +to create global keyboard shortcuts with AutoHotkey. Requires [process-instance=single](#--process-instancevalue). ### Audio diff --git a/src/Misc/Misc.cs b/src/Misc/Misc.cs index 72462cc..9805492 100644 --- a/src/Misc/Misc.cs +++ b/src/Misc/Misc.cs @@ -48,9 +48,9 @@ namespace mpvnet { switch (value) { - case 5: return "SEARCH"; // BROWSER_SEARCH - case 6: return "FAVORITES"; // BROWSER_FAVORITES - case 7: return "HOMEPAGE"; // BROWSER_HOME + case 5: return "SEARCH"; // BROWSER_SEARCH + case 6: return "FAVORITES"; // BROWSER_FAVORITES + case 7: return "HOMEPAGE"; // BROWSER_HOME case 15: return "MAIL"; // LAUNCH_MAIL case 33: return "PRINT"; // PRINT case 11: return "NEXT"; // MEDIA_NEXTTRACK