Update about dialog.

This commit is contained in:
Kalila L 2021-02-01 06:00:55 -05:00
parent 2287aba7fa
commit 9ea1e7e464
2 changed files with 42 additions and 8 deletions

View file

@ -1,5 +1,5 @@
Copyright (c) 2013-2019, High Fidelity, Inc. Copyright (c) 2013-2019, High Fidelity, Inc.
Copyright (c) 2019-2020, Vircadia contributors. Copyright (c) 2019-2021, Vircadia contributors.
All rights reserved. All rights reserved.
https://vircadia.com https://vircadia.com

View file

@ -14,7 +14,7 @@ import stylesUit 1.0
Rectangle { Rectangle {
width: 480 width: 480
height: 706 height: 950
color: "#404040" color: "#404040"
@ -30,11 +30,16 @@ Rectangle {
} }
Item { height: 30; width: 1 } Item { height: 30; width: 1 }
Column { Column {
id: buildColumm id: buildColumn
anchors.left: parent.left anchors.left: parent.left
anchors.leftMargin: 70 anchors.leftMargin: 0
RalewayRegular { RalewayRegular {
text: "Build " + About.buildVersion text: "Interface (Codename Athena)"
size: 16
color: "white"
}
RalewayRegular {
text: "Build " + About.buildVersion + " " + About.releaseName
size: 16 size: 16
color: "white" color: "white"
} }
@ -54,10 +59,21 @@ Rectangle {
textFormat: Text.StyledText textFormat: Text.StyledText
linkColor: "#00B4EF" linkColor: "#00B4EF"
color: "white" color: "white"
text: "<a href=\"https://github.com/vircadia/vircadia\">Vircadia Github</a>." text: "<a href=\"https://vircadia.com\">Website</a>"
size: 20 size: 20
onLinkActivated: { onLinkActivated: {
About.openUrl("https:/github.com/vircadia/vircadia"); About.openUrl("https://vircadia.com");
}
}
RalewayRegular {
textFormat: Text.StyledText
linkColor: "#00B4EF"
color: "white"
text: "<a href=\"https://github.com/vircadia/vircadia\">Source</a>"
size: 20
onLinkActivated: {
About.openUrl("https://github.com/vircadia/vircadia");
} }
} }
@ -117,7 +133,7 @@ Rectangle {
Item { height: 20; width: 1 } Item { height: 20; width: 1 }
RalewayRegular { RalewayRegular {
color: "white" color: "white"
text: "© 2019-2020 Vircadia contributors." text: "© 2019-2021 Vircadia contributors."
size: 14 size: 14
} }
RalewayRegular { RalewayRegular {
@ -135,5 +151,23 @@ Rectangle {
About.openUrl("http://www.apache.org/licenses/LICENSE-2.0.html"); About.openUrl("http://www.apache.org/licenses/LICENSE-2.0.html");
} }
} }
Item { height: 40; width: 1 }
RalewayRegular {
color: "white"
text: "In memoriam,"
size: 14
}
RalewayRegular {
color: "white"
text: "2012 - 2019 the High Fidelity virtual reality project."
size: 14
}
Item { height: 5; width: 1 }
Image {
id: hifiLogo
width: 200; height: 50
fillMode: Image.PreserveAspectFit
source: "../../../images/about-highfidelity.png"
}
} }
} }