From 19734a9983b7edac3b6cb41ac5a953c5c2fa62d0 Mon Sep 17 00:00:00 2001 From: Keshav Bhatt Date: Wed, 30 Mar 2022 20:23:14 +0530 Subject: chore: inform app is minimized via notification - if the app started minimized in tray --- src/utils.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/utils.cpp') diff --git a/src/utils.cpp b/src/utils.cpp index eeab445..0c70ef9 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -204,10 +204,8 @@ QString utils::appDebugInfo() { QString(GIT_BRANCH) + "" << "
  • " + QObject::tr("Commit Hash") + ": " + QString(GIT_HASH) + "
  • " - << "
  • " + QObject::tr("Build Date") + ": " + - QString::fromLatin1(__DATE__) + "
  • " - << "
  • " + QObject::tr("Build Time") + ": " + - QString::fromLatin1(__TIME__) + "
  • " + << "
  • " + QObject::tr("Build Datetime") + ": " + + QString::fromLatin1(BUILD_TIMESTAMP) + "
  • " << "
  • " + QObject::tr("Qt Runtime Version") + ": " + QString(qVersion()) + "
  • " << "
  • " + QObject::tr("Qt Compiled Version") + ": " + @@ -241,6 +239,7 @@ void utils::DisplayExceptionErrorDialog(const QString &error_info) { << "\nApp version: " + QString(VERSIONSTR) << "\nSource Branch: " + QString(GIT_BRANCH) << "\nCommit Hash: " + QString(GIT_HASH) + << "\nBuild Datetime: " + QString(BUILD_TIMESTAMP) << "\nQt Runtime Version: " + QString(qVersion()) << "\nQt Compiled Version: " + QString(QT_VERSION_STR) << "\nSystem: " + QSysInfo::prettyProductName() -- cgit v1.2.3