diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp
index 1b22dbd329..e68e3a2de1 100644
--- a/interface/src/Application.cpp
+++ b/interface/src/Application.cpp
@@ -656,8 +656,8 @@ private:
/**jsdoc
*
The Controller.Hardware.Application
object has properties representing Interface's state. The property
* values are integer IDs, uniquely identifying each output. Read-only.
- * These states can be mapped to actions or functions or Controller.Standard
items in a {@link RouteObject}
- * mapping (e.g., using the {@link RouteObject#when} method). Each data value is either 1.0
for "true" or
+ *
These states can be mapped to actions or functions or Controller.Standard
items in a {@link RouteObject}
+ * mapping (e.g., using the {@link RouteObject#when} method). Each data value is either 1.0
for "true" or
* 0.0
for "false".
*
*
@@ -679,7 +679,7 @@ private:
* CameraIndependent | number | number | The camera is in independent mode. |
* CameraEntity | number | number | The camera is in entity mode. |
* InHMD | number | number | The user is in HMD mode. |
- * AdvancedMovement | number | number | Advanced movement (walking) controls are
+ * |
AdvancedMovement | number | number | Advanced movement (walking) controls are
* enabled. |
* StrafeEnabled | number | number | Strafing is enabled |
* LeftHandDominant | number | number | Dominant hand set to left. |
@@ -829,7 +829,7 @@ bool setupEssentials(int& argc, char** argv, bool runningMarkerExisted) {
audioDLLPath += "/audioWin7";
}
QCoreApplication::addLibraryPath(audioDLLPath);
-#endif
+#endif
QString defaultScriptsOverrideOption = getCmdOption(argc, constArgv, "--defaultScriptsOverride");
@@ -949,7 +949,7 @@ bool setupEssentials(int& argc, char** argv, bool runningMarkerExisted) {
DependencyManager::set();
DependencyManager::set();
PlatformHelper::setup();
-
+
QObject::connect(PlatformHelper::instance(), &PlatformHelper::systemWillWake, [] {
QMetaObject::invokeMethod(DependencyManager::get().data(), "noteAwakening", Qt::QueuedConnection);
QMetaObject::invokeMethod(DependencyManager::get().data(), "noteAwakening", Qt::QueuedConnection);
@@ -1139,7 +1139,7 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo
QFontDatabase::addApplicationFont(PathUtils::resourcesPath() + "fonts/Graphik-SemiBold.ttf");
QFontDatabase::addApplicationFont(PathUtils::resourcesPath() + "fonts/Graphik-Regular.ttf");
QFontDatabase::addApplicationFont(PathUtils::resourcesPath() + "fonts/Graphik-Medium.ttf");
- _window->setWindowTitle("Project Athena");
+ _window->setWindowTitle("Vircadia Interface");
Model::setAbstractViewStateInterface(this); // The model class will sometimes need to know view state details from us
@@ -1162,7 +1162,7 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo
deadlockWatchdogThread->setMainThreadID(QThread::currentThreadId());
deadlockWatchdogThread->start();
- // Pause the deadlock watchdog when we sleep, or it might
+ // Pause the deadlock watchdog when we sleep, or it might
// trigger a false positive when we wake back up
auto platformHelper = PlatformHelper::instance();
@@ -3166,7 +3166,7 @@ void Application::showLoginScreen() {
QJsonObject loginData = {};
loginData["action"] = "login dialog popped up";
UserActivityLogger::getInstance().logAction("encourageLoginDialog", loginData);
- _window->setWindowTitle("Project Athena");
+ _window->setWindowTitle("Vircadia Interface");
} else {
resumeAfterLoginDialogActionTaken();
}
@@ -3789,8 +3789,8 @@ void Application::setPreferredCursor(const QString& cursorName) {
if (_displayPlugin && _displayPlugin->isHmd()) {
_preferredCursor.set(cursorName.isEmpty() ? DEFAULT_CURSOR_NAME : cursorName);
}
- else {
- _preferredCursor.set(cursorName.isEmpty() ? Cursor::Manager::getIconName(Cursor::Icon::SYSTEM) : cursorName);
+ else {
+ _preferredCursor.set(cursorName.isEmpty() ? Cursor::Manager::getIconName(Cursor::Icon::SYSTEM) : cursorName);
}
showCursor(Cursor::Manager::lookupIcon(_preferredCursor.get()));
@@ -3977,7 +3977,7 @@ void Application::handleSandboxStatus(QNetworkReply* reply) {
DependencyManager::get()->loadSettings(addressLookupString);
sentTo = SENT_TO_PREVIOUS_LOCATION;
}
-
+
UserActivityLogger::getInstance().logAction("startup_sent_to", {
{ "sent_to", sentTo },
{ "sandbox_is_running", sandboxIsRunning },
@@ -4212,7 +4212,7 @@ bool Application::event(QEvent* event) {
idle();
#ifdef DEBUG_EVENT_QUEUE_DEPTH
- // The event queue may very well grow beyond 400, so
+ // The event queue may very well grow beyond 400, so
// this code should only be enabled on local builds
{
int count = ::hifi::qt::getEventQueueSize(QThread::currentThread());
@@ -4251,7 +4251,7 @@ bool Application::event(QEvent* event) {
{ //testing to see if we can set focus when focus is not set to root window.
_glWidget->activateWindow();
_glWidget->setFocus();
- return true;
+ return true;
}
case QEvent::TouchBegin:
@@ -5236,7 +5236,7 @@ void Application::idle() {
}
}
#endif
-
+
checkChangeCursor();
#if !defined(DISABLE_QML)
@@ -5489,7 +5489,7 @@ void Application::loadSettings() {
RenderScriptingInterface::getInstance()->loadSettings();
// Setup the PerformanceManager which will enforce the several settings to match the Preset
- // On the first run, the Preset is evaluated from the
+ // On the first run, the Preset is evaluated from the
getPerformanceManager().setupPerformancePresetSettings(_firstRun.get());
// finish initializing the camera, based on everything we checked above. Third person camera will be used if no settings
@@ -5535,7 +5535,7 @@ bool Application::importEntities(const QString& urlOrFilename, const bool isObse
_entityClipboard->withWriteLock([&] {
_entityClipboard->eraseAllOctreeElements();
- // FIXME: readFromURL() can take over the main event loop which may cause problems, especially if downloading the JSON
+ // FIXME: readFromURL() can take over the main event loop which may cause problems, especially if downloading the JSON
// from the Web.
success = _entityClipboard->readFromURL(urlOrFilename, isObservable, callerId);
if (success) {
@@ -7063,7 +7063,7 @@ void Application::updateWindowTitle() const {
auto accountManager = DependencyManager::get();
auto isInErrorState = nodeList->getDomainHandler().isInErrorState();
- QString buildVersion = " - Project Athena v0.86.0 K2 - "
+ QString buildVersion = " - Vircadia Interface - "
+ (BuildInfo::BUILD_TYPE == BuildInfo::BuildType::Stable ? QString("Version") : QString("Build"))
+ " " + applicationVersion();
@@ -8735,7 +8735,7 @@ bool Application::isThrottleRendering() const {
bool Application::hasFocus() const {
bool result = (QApplication::activeWindow() != nullptr);
-
+
#if defined(Q_OS_WIN)
// On Windows, QWidget::activateWindow() - as called in setFocus() - makes the application's taskbar icon flash but doesn't
// take user focus away from their current window. So also check whether the application is the user's current foreground