diff --git a/LICENSE b/LICENSE
index 8dfe384174..d5ca6ae075 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,5 +1,5 @@
Copyright (c) 2013-2019, High Fidelity, Inc.
-Copyright (c) 2019-2020, Vircadia contributors.
+Copyright (c) 2019-2021, Vircadia contributors.
All rights reserved.
https://vircadia.com
diff --git a/interface/resources/qml/hifi/dialogs/TabletAboutDialog.qml b/interface/resources/qml/hifi/dialogs/TabletAboutDialog.qml
index f7a4061f45..92fd86e2b5 100644
--- a/interface/resources/qml/hifi/dialogs/TabletAboutDialog.qml
+++ b/interface/resources/qml/hifi/dialogs/TabletAboutDialog.qml
@@ -14,7 +14,7 @@ import stylesUit 1.0
Rectangle {
width: 480
- height: 706
+ height: 950
color: "#404040"
@@ -30,11 +30,16 @@ Rectangle {
}
Item { height: 30; width: 1 }
Column {
- id: buildColumm
+ id: buildColumn
anchors.left: parent.left
- anchors.leftMargin: 70
+ anchors.leftMargin: 0
RalewayRegular {
- text: "Build " + About.buildVersion
+ text: "Interface (Codename Athena)"
+ size: 16
+ color: "white"
+ }
+ RalewayRegular {
+ text: "Build " + About.buildVersion + " " + About.releaseName
size: 16
color: "white"
}
@@ -54,10 +59,21 @@ Rectangle {
textFormat: Text.StyledText
linkColor: "#00B4EF"
color: "white"
- text: "Vircadia Github."
+ text: "Website"
size: 20
onLinkActivated: {
- About.openUrl("https:/github.com/vircadia/vircadia");
+ About.openUrl("https://vircadia.com");
+ }
+
+ }
+ RalewayRegular {
+ textFormat: Text.StyledText
+ linkColor: "#00B4EF"
+ color: "white"
+ text: "Source"
+ size: 20
+ onLinkActivated: {
+ About.openUrl("https://github.com/vircadia/vircadia");
}
}
@@ -117,7 +133,7 @@ Rectangle {
Item { height: 20; width: 1 }
RalewayRegular {
color: "white"
- text: "© 2019-2020 Vircadia contributors."
+ text: "© 2019-2021 Vircadia contributors."
size: 14
}
RalewayRegular {
@@ -135,5 +151,23 @@ Rectangle {
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"
+ }
}
}