2018-01-14 18:15:45 +00:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-03-30 09:50:10 +00:00
|
|
|
#include <QIcon>
|
2020-04-07 20:41:45 +00:00
|
|
|
#include <fmt/format.h>
|
2018-01-14 18:15:45 +00:00
|
|
|
#include "common/scm_rev.h"
|
|
|
|
#include "ui_aboutdialog.h"
|
|
|
|
#include "yuzu/about_dialog.h"
|
|
|
|
|
|
|
|
AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui(new Ui::AboutDialog) {
|
2020-04-07 20:41:45 +00:00
|
|
|
const auto build_id = std::string(Common::g_build_id);
|
|
|
|
const auto fmt = std::string(Common::g_title_bar_format_idle);
|
2020-04-07 20:59:09 +00:00
|
|
|
const auto yuzu_build_version =
|
|
|
|
fmt::format(fmt.empty() ? "yuzu Development Build" : fmt, std::string{}, std::string{},
|
|
|
|
std::string{}, std::string{}, std::string{}, build_id);
|
2020-04-07 20:41:45 +00:00
|
|
|
|
2018-01-14 18:15:45 +00:00
|
|
|
ui->setupUi(this);
|
2019-05-09 05:18:28 +00:00
|
|
|
ui->labelLogo->setPixmap(QIcon::fromTheme(QStringLiteral("yuzu")).pixmap(200));
|
|
|
|
ui->labelBuildInfo->setText(ui->labelBuildInfo->text().arg(
|
2020-04-07 20:59:09 +00:00
|
|
|
QString::fromStdString(yuzu_build_version), QString::fromUtf8(Common::g_scm_branch),
|
2019-05-09 05:18:28 +00:00
|
|
|
QString::fromUtf8(Common::g_scm_desc), QString::fromUtf8(Common::g_build_date).left(10)));
|
2018-01-14 18:15:45 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 16:58:46 +00:00
|
|
|
AboutDialog::~AboutDialog() = default;
|