add alpha warnings
This commit is contained in:
parent
8cb8395ceb
commit
20e0f2c625
|
@ -34,7 +34,7 @@ Item {
|
|||
}
|
||||
StyledText {
|
||||
id: element11
|
||||
text: qsTr("Version: 1.0")
|
||||
text: qsTr("Version: alpha.0")
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: 24
|
||||
anchors.top: element10.top
|
||||
|
@ -68,6 +68,7 @@ Item {
|
|||
}
|
||||
}
|
||||
StyledText {
|
||||
id: faqLink
|
||||
text: "<a href='https://status.im/docs/FAQs.html'>Frequently asked questions</a>"
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: 24
|
||||
|
@ -81,6 +82,20 @@ Item {
|
|||
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
|
||||
}
|
||||
}
|
||||
|
||||
/*##^##
|
||||
|
|
|
@ -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 {
|
||||
id: btnGetStarted
|
||||
label: "Get started"
|
||||
anchors.top: rctPageIndicator.bottom
|
||||
anchors.topMargin: 87
|
||||
label: "I understand"
|
||||
anchors.top: warningMessage.bottom
|
||||
anchors.topMargin: 17
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
width: 146
|
||||
height: 44
|
||||
|
||||
}
|
||||
|
||||
StyledText {
|
||||
|
|
Loading…
Reference in New Issue