manual update

This commit is contained in:
stax76
2023-11-19 10:39:27 +01:00
parent ef062d1b10
commit 7879bda5c1
2 changed files with 10 additions and 8 deletions

View File

@@ -47,9 +47,11 @@ Download
1. [Stable via Microsoft Store](https://www.microsoft.com/store/productId/9N64SQZTB3LM) 1. [Stable via Microsoft Store](https://www.microsoft.com/store/productId/9N64SQZTB3LM)
2. [Stable and beta via GitHub download](../../../releases) 2. [Stable and beta portable via GitHub download](../../../releases)
3. `winget install mpv.net` 3. Stable via command line from Microsoft Store: `winget install mpv.net`
4. [Automated nightly portable builds](https://github.com/mpvnet-player/mpv.net/actions)
[Changelog](changelog.md) [Changelog](changelog.md)

View File

@@ -10,7 +10,7 @@ public static class InputHelp
List<Binding> bindings = new List<Binding>() List<Binding> bindings = new List<Binding>()
{ {
new (_("File"), _("Open Files..."), "script-message-to mpvnet open-files", "o"), new (_("File"), _("Open Files..."), "script-message-to mpvnet open-files", "o"),
new (_("File"), _("Open URL or file from clipboard"), "script-message-to mpvnet open-clipboard", "V"), new (_("File"), _("Open URL or file from clipboard"), "script-message-to mpvnet open-clipboard", "Ctrl+v"),
new (_("File"), _("Open DVD/Blu-ray Drive/Folder..."), "script-message-to mpvnet open-optical-media"), new (_("File"), _("Open DVD/Blu-ray Drive/Folder..."), "script-message-to mpvnet open-optical-media"),
new (_("File"), "-"), new (_("File"), "-"),
new (_("File"), _("Load external audio files..."), "script-message-to mpvnet load-audio", "Alt+a"), new (_("File"), _("Load external audio files..."), "script-message-to mpvnet load-audio", "Alt+a"),
@@ -141,14 +141,14 @@ public static class InputHelp
new (_("Tools"), _("Toggle Hardware Decoding"), "cycle-values hwdec auto no", "Ctrl+h"), new (_("Tools"), _("Toggle Hardware Decoding"), "cycle-values hwdec auto no", "Ctrl+h"),
new (_("Tools"), _("Exit"), "quit", "Esc"), new (_("Tools"), _("Exit"), "quit", "Esc"),
new (_("Tools"), _("Exit Watch Later"), "quit-watch-later", "Q"), new (_("Tools"), _("Exit Watch Later"), "quit-watch-later", "Q"),
new (_("Tools"), _("Show current file in File Explorer"), @"run powershell -command ""explorer.exe '/select,' ( \""${path}\"" -replace '/', '\\' )""", "e"),
new ("", _("Custom")), new ("", _("Custom")),
new (_("Help"), _("Website mpv"), "script-message-to mpvnet shell-execute https://mpv.io"), new (_("Help"), _("Website mpv"), "script-message-to mpvnet shell-execute https://mpv.io", "Ctrl+Home"),
new (_("Help"), _("Website mpv.net"), "script-message-to mpvnet shell-execute https://github.com/mpvnet-player/mpv.net"), new (_("Help"), _("Website mpv.net"), "script-message-to mpvnet shell-execute https://github.com/mpvnet-player/mpv.net", "Home"),
new (_("Help"), "-"), new (_("Help"), "-"),
new (_("Help"), _("Manual mpv"), "script-message-to mpvnet shell-execute https://mpv.io/manual/stable"), new (_("Help"), _("Manual mpv"), "script-message-to mpvnet shell-execute https://mpv.io/manual/stable", "Ctrl+F1"),
new (_("Help"), _("Manual mpv.net"), "script-message-to mpvnet shell-execute https://github.com/mpvnet-player/mpv.net/blob/main/docs/manual.md"), new (_("Help"), _("Manual mpv.net"), "script-message-to mpvnet shell-execute https://github.com/mpvnet-player/mpv.net/blob/main/docs/manual.md", "Ctrl+F2"),
new (_("Help"), "-"), new (_("Help"), "-"),
new (_("Help"), _("awesome-mpv"), "script-message-to mpvnet shell-execute https://github.com/stax76/awesome-mpv", "Ctrl+a"),
new (_("Help"), _("About mpv.net"), "script-message-to mpvnet show-about"), new (_("Help"), _("About mpv.net"), "script-message-to mpvnet show-about"),
new ("", _("Exit"), "quit", "Esc"), new ("", _("Exit"), "quit", "Esc"),
new ("", "", "quit", "q", _("Exit")), new ("", "", "quit", "q", _("Exit")),