Also add build infos in the archive

Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
This commit is contained in:
Kevin Ottens 2020-10-05 21:56:42 +02:00 committed by Michael Schuster (Rebase PR Action)
parent 8ce137cc53
commit 3fca307fbb

View file

@ -125,6 +125,9 @@ void createDebugArchive(const QString &filename)
}
zip.addFile("__nextcloud_client_parameters.txt", QCoreApplication::arguments().join(' ').toUtf8());
const auto buildInfo = QString(OCC::Theme::instance()->about() + "\n\n" + OCC::Theme::instance()->aboutDetails());
zip.addFile("__nextcloud_client_buildinfo.txt", buildInfo.toUtf8());
}
}