2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-01-14 19:15:45 +01:00
|
|
|
|
2025-06-05 18:58:54 +00:00
|
|
|
#include "yuzu/about_dialog.h"
|
2018-03-30 11:50:10 +02:00
|
|
|
#include <QIcon>
|
2018-01-14 19:15:45 +01:00
|
|
|
#include "common/scm_rev.h"
|
|
|
|
#include "ui_aboutdialog.h"
|
2025-06-05 18:58:54 +00:00
|
|
|
#include <fmt/ranges.h>
|
2018-01-14 19:15:45 +01:00
|
|
|
|
2021-10-15 15:26:20 -04:00
|
|
|
AboutDialog::AboutDialog(QWidget* parent)
|
2025-06-05 18:58:54 +00:00
|
|
|
: QDialog(parent)
|
|
|
|
, ui{std::make_unique<Ui::AboutDialog>()}
|
|
|
|
{
|
2025-09-09 20:47:49 +02:00
|
|
|
static const std::string description = std::string(Common::g_build_version);
|
|
|
|
static const std::string build_id = std::string(Common::g_build_id);
|
|
|
|
static const std::string compiler = std::string(Common::g_compiler_id);
|
2021-05-16 22:17:17 -04:00
|
|
|
|
2025-06-05 18:58:54 +00:00
|
|
|
std::string yuzu_build;
|
|
|
|
if (Common::g_is_dev_build) {
|
2025-09-09 20:47:49 +02:00
|
|
|
yuzu_build = fmt::format("Eden Nightly | {}-{} | {}", description, build_id, compiler);
|
2025-06-05 18:58:54 +00:00
|
|
|
} else {
|
2025-09-09 20:47:49 +02:00
|
|
|
yuzu_build = fmt::format("Eden | {} | {}", description, compiler);
|
2025-06-05 18:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const auto override_build = fmt::format(fmt::runtime(
|
|
|
|
std::string(Common::g_title_bar_format_idle)),
|
|
|
|
build_id);
|
2021-05-16 22:17:17 -04:00
|
|
|
const auto yuzu_build_version = override_build.empty() ? yuzu_build : override_build;
|
2020-04-07 22:41:45 +02:00
|
|
|
|
2018-01-14 19:15:45 +01:00
|
|
|
ui->setupUi(this);
|
2022-05-14 21:14:13 -07:00
|
|
|
// Try and request the icon from Qt theme (Linux?)
|
|
|
|
const QIcon yuzu_logo = QIcon::fromTheme(QStringLiteral("org.yuzu_emu.yuzu"));
|
|
|
|
if (!yuzu_logo.isNull()) {
|
|
|
|
ui->labelLogo->setPixmap(yuzu_logo.pixmap(200));
|
|
|
|
}
|
2021-05-16 22:17:17 -04:00
|
|
|
ui->labelBuildInfo->setText(
|
|
|
|
ui->labelBuildInfo->text().arg(QString::fromStdString(yuzu_build_version),
|
|
|
|
QString::fromUtf8(Common::g_build_date).left(10)));
|
2018-01-14 19:15:45 +01:00
|
|
|
}
|
|
|
|
|
2018-08-06 12:58:46 -04:00
|
|
|
AboutDialog::~AboutDialog() = default;
|