Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unified UI (Armored UI) #886

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
201 changes: 197 additions & 4 deletions interface/resources/qml/hifi/dialogs/AboutDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,201 @@ ScrollingWindow {
minSize: Qt.vector2d(480, 706)
title: "About"

TabletAboutDialog {
width: pane.width
height: pane.height
}
Column {
x: 45
y: 30
spacing: 5

Image {
width: 278; height: 73
fillMode: Image.PreserveAspectFit
source: "../../../images/brand-banner.svg"
}
Item { height: 25; width: 1 }
Column {
id: buildColumn
anchors.left: parent.left
anchors.leftMargin: 0
RalewayRegular {
text: "Interface"
size: 16
color: "white"
}
RalewayRegular {
text: "Build " + About.buildVersion + " " + About.releaseName
size: 16
color: "white"
}
RalewayRegular {
text: "Released " + About.buildDate
size: 16
color: "white"
}
}
Item { height: 10; width: 1 }
RalewayRegular {
text: "An open source virtual reality platform."
size: 20
color: "white"
}
RalewayRegular {
textFormat: Text.StyledText
linkColor: "#00B4EF"
color: "white"
text: "<a href=\"https://overte.org\">Website</a>"
size: 20
onLinkActivated: {
About.openUrl("https://overte.org");
}

}
RalewayRegular {
textFormat: Text.StyledText
linkColor: "#00B4EF"
color: "white"
text: "<a href=\"https://github.com/overte-org/overte\">Source</a>"
size: 20
onLinkActivated: {
About.openUrl("https://github.com/overte-org/overte");
}

}
Item { height: 25; width: 1 }
Row {
spacing: 5
Image {
sourceSize.width: 34
sourceSize.height: 25
source: "../../../images/about-qt.png"
MouseArea {
anchors.fill: parent
onClicked: {
About.openUrl("https://www.qt.io/");
}
}
}
RalewayRegular {
color: "white"
text: "Built using Qt " + About.qtVersion
size: 12
anchors.verticalCenter: parent.verticalCenter
}
Item { height: 1; width: 15 }
Image {
sourceSize.width: 34
sourceSize.height: 25
source: "../../../images/about-qt.png"
MouseArea {
anchors.fill: parent
onClicked: {
About.openUrl("https://www.qt.io/");
}
}
}
RalewayRegular {
color: "white"
text: "Qt WebEngine " + About.qtWebEngineVersion
size: 12
anchors.verticalCenter: parent.verticalCenter
}
}
Row {
spacing: 5
Image {
sourceSize.width: 25
sourceSize.height: 25
source: "../../../images/about-chromium.svg"
MouseArea {
anchors.fill: parent
onClicked: {
About.openUrl("https://www.chromium.org/");
}
}
}
RalewayRegular {
color: "white"
text: "Chromium " + About.qtChromiumVersion
size: 12
anchors.verticalCenter: parent.verticalCenter
}
}
Row {
spacing: 5

Image {
sourceSize.width: 70
sourceSize.height: 26
source: "../../../images/about-physics.png"
}
RalewayRegular {
color: "white"
text: "Physics powered by Bullet"
size: 12
anchors.verticalCenter: parent.verticalCenter
}

Image {
sourceSize.width: 34
sourceSize.height: 25
source: "../../../images/about-opus.png"
MouseArea {
anchors.fill: parent
onClicked: {
About.openUrl("http://opus-codec.org/");
}
}
}
RalewayRegular {
color: "white"
text: "Built using the Opus codec."
size: 12
anchors.verticalCenter: parent.verticalCenter
}
}
Item { height: 20; width: 1 }
RalewayRegular {
color: "white"
text: "© 2022 - 2023 Overte e.V."
size: 14
}
RalewayRegular {
color: "white"
text: "© 2019 - 2021 Vircadia contributors."
size: 14
}
RalewayRegular {
color: "white"
text: "© 2012 - 2019 High Fidelity, Inc. All rights reserved."
size: 14
}
RalewayRegular {
textFormat: Text.StyledText
color: "white"
linkColor: "#00B4EF"
text: "Distributed under the <a href=\"http://www.apache.org/licenses/LICENSE-2.0.html\">Apache License, Version 2.0.</a>."
size: 14
onLinkActivated: {
About.openUrl("http://www.apache.org/licenses/LICENSE-2.0.html");
}
}
Item { height: 35; 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"
}
}

}
Loading
Loading