From 3c5f01c653d72b4b3fd02c73752647d52972e70d Mon Sep 17 00:00:00 2001 From: Hannah von Reth Date: Tue, 19 Jan 2021 12:42:58 +0100 Subject: [PATCH] Include os version 'windows-10.0.19042' in about dialog --- changelog/unreleased/8374 | 6 ++++++ src/libsync/theme.cpp | 11 ++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 changelog/unreleased/8374 diff --git a/changelog/unreleased/8374 b/changelog/unreleased/8374 new file mode 100644 index 00000000000..5f87c21c59b --- /dev/null +++ b/changelog/unreleased/8374 @@ -0,0 +1,6 @@ +Change: Include full os version in the about dialog + +We now include the os version in the about dialog, this might help us to faster +pin down os related issues. + +https://github.com/owncloud/client/pull/8374 diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp index 715faae1491..678e5f40813 100644 --- a/src/libsync/theme.cpp +++ b/src/libsync/theme.cpp @@ -363,17 +363,18 @@ QString Theme::aboutVersions(Theme::VersionFormat format) const } #endif return QCoreApplication::translate("ownCloudTheme::aboutVersions()", - "%1 %2 %3 %4%8" + "%1 %2 %3%8" "%9" - "Libraries Qt %5, %6%8" - "Using virtual files plugin: %7%8") + "Libraries Qt %4, %5%8" + "Using virtual files plugin: %6%8" + "%7") .arg(appName(), _version, - QStringLiteral(__DATE__), - QStringLiteral(__TIME__), + QStringLiteral(__DATE__ " " __TIME__), qtVersionString, QSslSocket::sslLibraryVersionString(), Vfs::modeToString(bestAvailableVfsMode()), + QSysInfo::productType() % QLatin1Char('-') % QSysInfo::kernelVersion(), br, gitUrl); }