From 783b05c10335d48b873f643964b8c420c5a24905 Mon Sep 17 00:00:00 2001 From: Felanbird <41973452+Felanbird@users.noreply.github.com> Date: Tue, 6 Dec 2022 17:27:27 -0500 Subject: [PATCH] Add docs link for streamlink `--args` (#4217) --- CHANGELOG.md | 1 + src/widgets/settingspages/ExternalToolsPage.cpp | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e620c0b..587d397b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Minor: Added ability to negate search options by prefixing it with an exclamation mark (e.g. `!badge:mod` to search for messages where the author does not have the moderator badge). (#4207) - Minor: Search window input will automatically use currently selected text if present. (#4178) - Minor: Cleared up highlight sound settings (#4194) +- Minor: Added link to streamlink docs for easier user setup. (#4217) - Bugfix: Fixed highlight sounds not reloading on change properly. (#4194) - Bugfix: Fixed CTRL + C not working in reply thread popups. (#4209) - Bugfix: Fixed message input showing as red after removing a message that was more than 500 characters. (#4204) diff --git a/src/widgets/settingspages/ExternalToolsPage.cpp b/src/widgets/settingspages/ExternalToolsPage.cpp index 1d19b91e..68db6d8e 100644 --- a/src/widgets/settingspages/ExternalToolsPage.cpp +++ b/src/widgets/settingspages/ExternalToolsPage.cpp @@ -41,7 +41,10 @@ ExternalToolsPage::ExternalToolsPage() " " + formatRichNamedLink( "https://github.com/streamlink/streamlink/releases/latest", - "Download")); + "Download") + + " " + + formatRichNamedLink("https://streamlink.github.io/cli.html#twitch", + "Documentation")); links->setTextFormat(Qt::RichText); links->setTextInteractionFlags(Qt::TextBrowserInteraction | Qt::LinksAccessibleByKeyboard |