Skip to content

Commit

Permalink
add url in readme.qml
Browse files Browse the repository at this point in the history
  • Loading branch information
sc74 committed Oct 27, 2024
1 parent 0899084 commit 952c7b8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 11 deletions.
5 changes: 5 additions & 0 deletions make-test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_QT6=ON ..
make -j$(nproc)
#sudo make install
29 changes: 18 additions & 11 deletions src/modules/notesqml/readme.qml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,24 @@ Item {
}

TextArea {
id: intro
x: 1
y: 0
width: parent.width - fscrollbar.width
font.pointSize: 14
textFormat: Text.MarkdownText
antialiasing: true
activeFocusOnPress: false
wrapMode: Text.WordWrap

text: qsTr("<p>More information can be found on https://github.com/devDucks/astroarch.</p>")
id: intro
x: 1
y: 0
width: parent.width - fscrollbar.width
font.pointSize: 14
textFormat: TextEdit.RichText
antialiasing: true
activeFocusOnPress: false
wrapMode: Text.WordWrap

onLinkActivated: Qt.openUrlExternally( link )

text: qsTr('<p>Find information or ask questions on :</p> \
<p><br />Github <a href="https://github.com/devDucks/astroarch">https://github.com/devDucks/astroarch</a></p> \
<p>Discord <a href="https://discord.com/invite/uJEQCZKBT8">https://discord.com/invite/uJEQCZKBT8</a></p> \
<p>Indilib <a href="https://indilib.org/forum/astro-arch.html">https://indilib.org/forum/astro-arch.html</a></p> \
<p>&nbsp;</p> \
<p><img src="/usr/share/calamares/branding/astroarch/slide1.png" alt="astroarch image" width="96" height="96" />&nbsp; Clear skies and have fun with AstroArch<br />Mattia Procopio</p>')
}
}
}

0 comments on commit 952c7b8

Please sign in to comment.