diff options
author | SilverBeamx <molto.falso@gmail.com> | 2020-04-07 22:41:45 +0200 |
---|---|---|
committer | SilverBeamx <molto.falso@gmail.com> | 2020-04-07 22:41:45 +0200 |
commit | 6b512d78c994550ff653d519af7784023be5ebd2 (patch) | |
tree | 1036a2ce099a1c097e8dca9ab09bd3306e03e819 /src | |
parent | Hack BUILD_FULLNAME into GenerateSCMRev.cmake (diff) | |
download | yuzu-6b512d78c994550ff653d519af7784023be5ebd2.tar yuzu-6b512d78c994550ff653d519af7784023be5ebd2.tar.gz yuzu-6b512d78c994550ff653d519af7784023be5ebd2.tar.bz2 yuzu-6b512d78c994550ff653d519af7784023be5ebd2.tar.lz yuzu-6b512d78c994550ff653d519af7784023be5ebd2.tar.xz yuzu-6b512d78c994550ff653d519af7784023be5ebd2.tar.zst yuzu-6b512d78c994550ff653d519af7784023be5ebd2.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/about_dialog.cpp | 8 | ||||
-rw-r--r-- | src/yuzu/main.cpp | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/src/yuzu/about_dialog.cpp b/src/yuzu/about_dialog.cpp index d39b3f07a..e7985c8a7 100644 --- a/src/yuzu/about_dialog.cpp +++ b/src/yuzu/about_dialog.cpp @@ -3,15 +3,21 @@ // Refer to the license.txt file included. #include <QIcon> +#include <fmt/format.h> #include "common/scm_rev.h" #include "ui_aboutdialog.h" #include "yuzu/about_dialog.h" AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui(new Ui::AboutDialog) { + const auto build_id = std::string(Common::g_build_id); + const auto fmt = std::string(Common::g_title_bar_format_idle); + const auto yuzuBuildVersion = fmt::format(fmt.empty() ? "yuzu Development Build" : fmt, std::string{}, std::string{}, + std::string{}, std::string{}, std::string{}, build_id); + ui->setupUi(this); ui->labelLogo->setPixmap(QIcon::fromTheme(QStringLiteral("yuzu")).pixmap(200)); ui->labelBuildInfo->setText(ui->labelBuildInfo->text().arg( - QString::fromUtf8(Common::g_build_fullname), QString::fromUtf8(Common::g_scm_branch), + QString::fromStdString(yuzuBuildVersion), QString::fromUtf8(Common::g_scm_branch), QString::fromUtf8(Common::g_scm_desc), QString::fromUtf8(Common::g_build_date).left(10))); } diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 940f24dc8..5cefb5d72 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -205,7 +205,13 @@ GMainWindow::GMainWindow() ConnectMenuEvents(); ConnectWidgetEvents(); - LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_fullname, Common::g_scm_branch, + const auto build_id = std::string(Common::g_build_id); + const auto fmt = std::string(Common::g_title_bar_format_idle); + const auto yuzuBuildVersion = + fmt::format(fmt.empty() ? "yuzu Development Build" : fmt, std::string{}, std::string{}, + std::string{}, std::string{}, std::string{}, build_id); + + LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", yuzuBuildVersion, Common::g_scm_branch, Common::g_scm_desc); #ifdef ARCHITECTURE_x86_64 LOG_INFO(Frontend, "Host CPU: {}", Common::GetCPUCaps().cpu_string); |