diff --git a/interface/resources/qml/hifi/dialogs/TabletAboutDialog.qml b/interface/resources/qml/hifi/dialogs/TabletAboutDialog.qml
index 87f307b9bc..4d57d7074c 100644
--- a/interface/resources/qml/hifi/dialogs/TabletAboutDialog.qml
+++ b/interface/resources/qml/hifi/dialogs/TabletAboutDialog.qml
@@ -58,6 +58,18 @@ Rectangle {
onLinkActivated: {
HiFiAbout.openUrl("https:/www.highfidelity.com");
}
+
+ }
+ RalewayRegular {
+ textFormat: Text.StyledText
+ linkColor: "#00B4EF"
+ color: "white"
+ text: "HiFi Community Github."
+ size: 20
+ onLinkActivated: {
+ HiFiAbout.openUrl("https:/github.com/kasenvr/hifi-community");
+ }
+
}
Item { height: 40; width: 1 }
Row {
diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp
index ad82f4ac66..9c60139d06 100644
--- a/interface/src/Application.cpp
+++ b/interface/src/Application.cpp
@@ -7029,7 +7029,7 @@ void Application::updateWindowTitle() const {
auto accountManager = DependencyManager::get();
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();