mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-08 20:07:47 +02:00
Merge pull request #9 from kasenvr/feature/quality-of-life-k2
Feature/quality of life k2
This commit is contained in:
commit
b470a765aa
2 changed files with 13 additions and 1 deletions
|
@ -58,6 +58,18 @@ Rectangle {
|
||||||
onLinkActivated: {
|
onLinkActivated: {
|
||||||
HiFiAbout.openUrl("https:/www.highfidelity.com");
|
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 }
|
Item { height: 40; width: 1 }
|
||||||
Row {
|
Row {
|
||||||
|
|
|
@ -7029,7 +7029,7 @@ void Application::updateWindowTitle() const {
|
||||||
auto accountManager = DependencyManager::get<AccountManager>();
|
auto accountManager = DependencyManager::get<AccountManager>();
|
||||||
auto isInErrorState = nodeList->getDomainHandler().isInErrorState();
|
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"))
|
+ (BuildInfo::BUILD_TYPE == BuildInfo::BuildType::Stable ? QString("Version") : QString("Build"))
|
||||||
+ " " + applicationVersion();
|
+ " " + applicationVersion();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue