mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-06-27 15:58:25 +00:00
Update ChatView.qml
Include links for Documentation and FAQ for new users on the "new chat view". Co-authored-by: ThiloteE <73715071+ThiloteE@users.noreply.github.com> Signed-off-by: 3Simplex <10260755+3Simplex@users.noreply.github.com>
This commit is contained in:
parent
4852d39699
commit
4f6c43aec9
@ -841,6 +841,32 @@ Rectangle {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
textFormat: Text.StyledText
|
||||||
|
text: qsTr(
|
||||||
|
"<p></p><a href=\"https://docs.gpt4all.io/index.html\">Documentation
|
||||||
|
")
|
||||||
|
onLinkActivated: { Qt.openUrlExternally("https://docs.gpt4all.io/index.html") }
|
||||||
|
color: theme.textColor
|
||||||
|
linkColor: theme.linkColor
|
||||||
|
font.pixelSize: theme.fontSizeLarge
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
textFormat: Text.StyledText
|
||||||
|
text: qsTr(
|
||||||
|
"<a href=\"https://docs.gpt4all.io/gpt4all_faq.html\">Frequently Asked Questions
|
||||||
|
")
|
||||||
|
onLinkActivated: { Qt.openUrlExternally("https://docs.gpt4all.io/gpt4all_faq.html") }
|
||||||
|
color: theme.textColor
|
||||||
|
linkColor: theme.linkColor
|
||||||
|
font.pixelSize: theme.fontSizeLarge
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
}
|
||||||
|
|
||||||
MyButton {
|
MyButton {
|
||||||
id: downloadButton
|
id: downloadButton
|
||||||
visible: LLM.isNetworkOnline
|
visible: LLM.isNetworkOnline
|
||||||
|
Loading…
Reference in New Issue
Block a user