Version parameter: Show Qt platform plugin, OS and CPU arch
authorMichael Schuster <michael@schuster.ms>
Sat, 7 Mar 2020 05:31:14 +0000 (06:31 +0100)
committerMichael Schuster <michael@schuster.ms>
Sat, 7 Mar 2020 05:31:14 +0000 (06:31 +0100)
Signed-off-by: Michael Schuster <michael@schuster.ms>
src/libsync/theme.cpp

index 8f6dbd83fe424bd01a7caee017336b95ebdc369c..fde29c4165a51553c1c85056a1e7e92863f11a09 100644 (file)
@@ -550,7 +550,9 @@ QString Theme::versionSwitchOutput() const
     stream << "Git revision " << GIT_SHA1 << endl;
 #endif
     stream << "Using Qt " << qVersion() << ", built against Qt " << QT_VERSION_STR << endl;
+    stream << "Using Qt platform plugin '" << QGuiApplication::platformName() << "'" << endl;
     stream << "Using '" << QSslSocket::sslLibraryVersionString() << "'" << endl;
+    stream << "Running on " << Utility::platformName() << ", " << QSysInfo::currentCpuArchitecture() << endl;
     return helpText;
 }