From 5670730198c2f46bff5c94d7b116a2e5dc3e891f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Sat, 16 Dec 2023 00:33:52 +0300 Subject: [PATCH] add links to online docs --- README.md | 2 +- graph_node_renderer/deck_holder_renderer.gd | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a6d235..46136e5 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,4 @@ It can connect to Twitch and OBS, allowing you to take stream interactivity to t The app can currently connect to Twitch and read and send chats in a single channel. It can also connect to a single OBS instance (utilizing OBS-WebSocket, which is bundled with modern versions of OBS). -For more information about nodes that currently exist, check out the wiki. +For more information about nodes that currently exist, [check out the wiki.](https://codeberg.org/Eroax/StreamGraph/wiki) diff --git a/graph_node_renderer/deck_holder_renderer.gd b/graph_node_renderer/deck_holder_renderer.gd index e6c6501..39e14e5 100644 --- a/graph_node_renderer/deck_holder_renderer.gd +++ b/graph_node_renderer/deck_holder_renderer.gd @@ -453,3 +453,5 @@ func _on_help_id_pressed(id: int) -> void: match id: HelpMenuId.ABOUT: about_dialog.show() + HelpMenuId.DOCS: + OS.shell_open("https://codeberg.org/Eroax/StreamGraph/wiki")