2018-10-23 23:15:59 +03:00
import QtQuick 2.0
import Sailfish . Silica 1.0
Page {
id: page
SilicaFlickable {
id: flickable
anchors.fill: parent
contentHeight: column . height
Column {
id: column
width: parent . width
PageHeader {
title: qsTr ( "About" )
}
2018-11-27 11:58:21 +03:00
2018-11-27 14:08:44 +03:00
/ * D e t a i l I t e m {
2018-11-27 11:58:21 +03:00
label: qsTr ( "Name" )
value: Qt . application . name
2018-11-27 14:08:44 +03:00
} * /
SectionHeader {
text: "Nextcloud " + qsTr ( "Notes" ) + " v" + Qt . application . version
2018-11-27 11:58:21 +03:00
}
2018-11-27 14:08:44 +03:00
LinkedLabel {
id: nextcloudnotesLabel
x: Theme . horizontalPageMargin
width: parent . width - 2 * x
text: qsTr ( "<p>This app is released under the MIT license.</p><p>The source code is available on <a href=\"https://github.com/scharel/harbour-nextcloudnotes\">GitHub</a>.</p>" )
2018-11-27 11:58:21 +03:00
}
2018-11-27 14:08:44 +03:00
Button {
anchors.horizontalCenter: parent . horizontalCenter
text: qsTr ( "MIT License" )
onClicked: pageStack . push ( Qt . resolvedUrl ( "MITLicense.qml" ) )
}
SectionHeader {
text: "ShowdownJS"
2018-11-27 11:58:21 +03:00
}
LinkedLabel {
id: showdownLabel
x: Theme . horizontalPageMargin
width: parent . width - 2 * x
2018-11-27 14:08:44 +03:00
text: qsTr ( "<p>This app uses <a href=\"https://github.com/showdownjs/showdown/tree/1.9.0\">ShowdownJS v1.9</a> to convert Markdown to HTML.</p><p>Showdown 1.x is released under GPL 2.0.</p>" )
}
Button {
anchors.horizontalCenter: parent . horizontalCenter
text: qsTr ( "GPL 2.0 License" )
onClicked: pageStack . push ( Qt . resolvedUrl ( "GPLLicense.qml" ) )
2018-11-27 11:58:21 +03:00
}
2018-10-23 23:15:59 +03:00
}
2018-11-18 00:28:25 +03:00
ViewPlaceholder {
2018-11-27 14:08:44 +03:00
enabled: false
2018-11-18 00:28:25 +03:00
text: qsTr ( "Nextcloud Notes" )
hintText: qsTr ( "for Sailfish OS" )
}
2018-10-23 23:15:59 +03:00
2018-11-18 00:28:25 +03:00
VerticalScrollDecorator { }
2018-10-23 23:15:59 +03:00
}
2018-12-04 19:24:45 +03:00
allowedOrientations: defaultAllowedOrientations
2018-10-23 23:15:59 +03:00
}