Add support for nightly builds to release tool

This commit is contained in:
Jonathan White 2017-11-27 22:46:03 -05:00 committed by Janek Bevendorff
parent bed921c593
commit 3e2443a861
10 changed files with 79 additions and 12 deletions

View file

@ -54,6 +54,9 @@ AboutDialog::AboutDialog(QWidget* parent)
QString debugInfo = "KeePassXC - ";
debugInfo.append(tr("Version %1\n").arg(KEEPASSX_VERSION));
#ifndef KEEPASSXC_RELEASE_BUILD
debugInfo.append(tr("Build Type: Snapshot\n"));
#endif
if (!commitHash.isEmpty()) {
debugInfo.append(tr("Revision: %1").arg(commitHash.left(7)).append("\n"));
}