2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-05-27 21:28:25 +00:00
|
|
|
import "../../../../imports"
|
2020-06-19 18:06:58 +00:00
|
|
|
import "../../../../shared"
|
2021-01-14 13:23:48 +00:00
|
|
|
import "../../../../shared/status"
|
2020-05-27 21:28:25 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: aboutContainer
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2021-01-14 13:23:48 +00:00
|
|
|
Column {
|
|
|
|
id: generalColumn
|
|
|
|
spacing: Style.current.bigPadding
|
2020-05-27 21:28:25 +00:00
|
|
|
anchors.top: parent.top
|
2021-01-14 13:23:48 +00:00
|
|
|
anchors.topMargin: 46
|
2020-06-17 21:05:59 +00:00
|
|
|
anchors.left: parent.left
|
2021-01-14 13:23:48 +00:00
|
|
|
anchors.leftMargin: contentMargin
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: contentMargin
|
2020-09-23 17:22:05 +00:00
|
|
|
|
2021-01-14 13:23:48 +00:00
|
|
|
StatusSectionDescItem {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "App version"
|
|
|
|
name: qsTrId("version")
|
|
|
|
//% "Version: %1"
|
2021-02-23 19:27:46 +00:00
|
|
|
description: qsTrId("version---1").arg("beta.6")
|
2020-09-23 17:22:05 +00:00
|
|
|
}
|
|
|
|
|
2021-01-14 13:23:48 +00:00
|
|
|
StatusSectionDescItem {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Node version "
|
|
|
|
name: qsTrId("node-version-")
|
2021-01-14 13:23:48 +00:00
|
|
|
description: profileModel.nodeVersion()
|
2020-09-23 17:22:05 +00:00
|
|
|
}
|
2020-06-17 21:05:59 +00:00
|
|
|
|
2021-01-14 13:23:48 +00:00
|
|
|
StyledText {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Check for updates"
|
|
|
|
text: qsTrId("check-for-updates")
|
2021-01-14 13:23:48 +00:00
|
|
|
font.pixelSize: 15
|
|
|
|
color: Style.current.blue
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
hoverEnabled: true
|
|
|
|
onEntered: {
|
|
|
|
parent.font.underline = true
|
|
|
|
}
|
|
|
|
onExited: {
|
|
|
|
parent.font.underline = false
|
|
|
|
}
|
|
|
|
onClicked: {
|
|
|
|
appMain.openLink("https://github.com/status-im/nim-status-client/releases")
|
|
|
|
}
|
|
|
|
}
|
2020-06-17 21:05:59 +00:00
|
|
|
}
|
|
|
|
|
2021-01-14 13:23:48 +00:00
|
|
|
StyledText {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Privacy Policy"
|
|
|
|
text: qsTrId("privacy-policy")
|
2021-01-14 13:23:48 +00:00
|
|
|
font.pixelSize: 15
|
|
|
|
color: Style.current.blue
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
hoverEnabled: true
|
|
|
|
onEntered: {
|
|
|
|
parent.font.underline = true
|
|
|
|
}
|
|
|
|
onExited: {
|
|
|
|
parent.font.underline = false
|
|
|
|
}
|
|
|
|
onClicked: {
|
|
|
|
appMain.openLink("https://status.im/privacy-policy/")
|
|
|
|
}
|
|
|
|
}
|
2020-06-17 21:05:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;height:600;width:800}
|
2020-05-27 21:28:25 +00:00
|
|
|
}
|
2020-06-17 21:05:59 +00:00
|
|
|
##^##*/
|