Merge pull request #9 from kasenvr/feature/quality-of-life-k2

Feature/quality of life k2
This commit is contained in:
kasenvr 2019-12-10 21:10:06 -05:00 committed by GitHub
commit b470a765aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View file

@ -58,6 +58,18 @@ Rectangle {
onLinkActivated: {
HiFiAbout.openUrl("https:/www.highfidelity.com");
}
}
RalewayRegular {
textFormat: Text.StyledText
linkColor: "#00B4EF"
color: "white"
text: "<a href=\"https:/github.com/kasenvr/hifi-community\">HiFi Community Github</a>."
size: 20
onLinkActivated: {
HiFiAbout.openUrl("https:/github.com/kasenvr/hifi-community");
}
}
Item { height: 40; width: 1 }
Row {

View file

@ -7029,7 +7029,7 @@ void Application::updateWindowTitle() const {
auto accountManager = DependencyManager::get<AccountManager>();
auto isInErrorState = nodeList->getDomainHandler().isInErrorState();
QString buildVersion = " - Kasen Community Edition v0.86.0 K1 - "
QString buildVersion = " - Kasen Community Edition v0.86.0 K2 - "
+ (BuildInfo::BUILD_TYPE == BuildInfo::BuildType::Stable ? QString("Version") : QString("Build"))
+ " " + applicationVersion();