From 7879bda5c1c2fdc8e9235c7e7cc8dcb7f38f8351 Mon Sep 17 00:00:00 2001 From: stax76 Date: Sun, 19 Nov 2023 10:39:27 +0100 Subject: [PATCH] manual update --- docs/manual.md | 6 ++++-- src/MpvNet/InputHelp.cs | 12 ++++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/manual.md b/docs/manual.md index 48ad4b3..b093994 100644 --- a/docs/manual.md +++ b/docs/manual.md @@ -47,9 +47,11 @@ Download 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) diff --git a/src/MpvNet/InputHelp.cs b/src/MpvNet/InputHelp.cs index a8eeb72..940fdd1 100644 --- a/src/MpvNet/InputHelp.cs +++ b/src/MpvNet/InputHelp.cs @@ -10,7 +10,7 @@ public static class InputHelp List bindings = new List() { 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"), "-"), 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"), _("Exit"), "quit", "Esc"), 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 (_("Help"), _("Website mpv"), "script-message-to mpvnet shell-execute https://mpv.io"), - new (_("Help"), _("Website mpv.net"), "script-message-to mpvnet shell-execute https://github.com/mpvnet-player/mpv.net"), + 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", "Home"), new (_("Help"), "-"), - new (_("Help"), _("Manual mpv"), "script-message-to mpvnet shell-execute https://mpv.io/manual/stable"), - 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"), "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", "Ctrl+F2"), 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 ("", _("Exit"), "quit", "Esc"), new ("", "", "quit", "q", _("Exit")),