Skip to content

Commit

Permalink
Include os version 'windows-10.0.19042' in about dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOneRing committed Jan 19, 2021
1 parent bce70f1 commit 3c5f01c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions changelog/unreleased/8374
Original file line number Diff line number Diff line change
@@ -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
11 changes: 6 additions & 5 deletions src/libsync/theme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 3c5f01c

Please sign in to comment.