add alpha warnings

This commit is contained in:
Iuri Matias 2020-06-25 17:20:15 -04:00
parent 8cb8395ceb
commit 20e0f2c625
2 changed files with 34 additions and 5 deletions

View File

@ -34,7 +34,7 @@ Item {
} }
StyledText { StyledText {
id: element11 id: element11
text: qsTr("Version: 1.0") text: qsTr("Version: alpha.0")
anchors.left: parent.left anchors.left: parent.left
anchors.leftMargin: 24 anchors.leftMargin: 24
anchors.top: element10.top anchors.top: element10.top
@ -68,6 +68,7 @@ Item {
} }
} }
StyledText { StyledText {
id: faqLink
text: "<a href='https://status.im/docs/FAQs.html'>Frequently asked questions</a>" text: "<a href='https://status.im/docs/FAQs.html'>Frequently asked questions</a>"
anchors.left: parent.left anchors.left: parent.left
anchors.leftMargin: 24 anchors.leftMargin: 24
@ -81,6 +82,20 @@ Item {
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
} }
} }
StyledText {
id: warningMessage
x: 772
text: qsTr("Thanks for trying Status Desktop! Please note that this is an alpha release and we advise you that using this app should be done for testing purposes only and you assume the full responsibility for all risks concerning your data and funds. Status makes no claims of security or integrity of funds in these builds.")
font.bold: true
anchors.top: faqLink.bottom
anchors.topMargin: 30
anchors.horizontalCenter: parent.horizontalCenter
font.pixelSize: 14
font.letterSpacing: 0.1
width: 700
wrapMode: Text.Wrap
color: Theme.black
}
} }
/*##^## /*##^##

View File

@ -69,15 +69,29 @@ RowLayout {
} }
} }
StyledText {
id: warningMessage
x: 772
text: qsTr("Thanks for trying Status Desktop! Please note that this is an alpha release and we advise you that using this app should be done for testing purposes only and you assume the full responsibility for all risks concerning your data and funds. Status makes no claims of security or integrity of funds in these builds.")
font.bold: true
anchors.top: rctPageIndicator.bottom
anchors.topMargin: 10
anchors.horizontalCenter: parent.horizontalCenter
font.pixelSize: 14
font.letterSpacing: 0.1
width: 700
wrapMode: Text.Wrap
color: Theme.black
}
StyledButton { StyledButton {
id: btnGetStarted id: btnGetStarted
label: "Get started" label: "I understand"
anchors.top: rctPageIndicator.bottom anchors.top: warningMessage.bottom
anchors.topMargin: 87 anchors.topMargin: 17
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
width: 146 width: 146
height: 44 height: 44
} }
StyledText { StyledText {