From ab46bd5739e265272ea34677f4fc9da8010ec7fa Mon Sep 17 00:00:00 2001 From: cosmic-snow <134004613+cosmic-snow@users.noreply.github.com> Date: Mon, 1 Jul 2024 01:35:31 +0200 Subject: [PATCH] Add documentation link to HomeView.qml (#2486) Additionally link to the documentation at https://docs.gpt4all.io/gpt4all_chat.html Signed-off-by: cosmic-snow <134004613+cosmic-snow@users.noreply.github.com> --- gpt4all-chat/qml/HomeView.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gpt4all-chat/qml/HomeView.qml b/gpt4all-chat/qml/HomeView.qml index a9c6b402..84f4d1da 100644 --- a/gpt4all-chat/qml/HomeView.qml +++ b/gpt4all-chat/qml/HomeView.qml @@ -221,6 +221,12 @@ Rectangle { onClicked: { Qt.openUrlExternally("https://github.com/nomic-ai/gpt4all/releases") } } + MyFancyLink { + text: qsTr("Documentation") + imageSource: "qrc:/gpt4all/icons/info.svg" + onClicked: { Qt.openUrlExternally("https://docs.gpt4all.io/gpt4all_chat.html") } + } + MyFancyLink { text: qsTr("Discord") imageSource: "qrc:/gpt4all/icons/discord.svg"