cdb240f3d4
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.
Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.
The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.
Following REUSE has a few advantages over the current approach:
- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
`.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
files like binary assets / images is always accurate and up to date
To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.
[REUSE]: https://reuse.software
Follow-up to 01cf05bc75
86 lines
3.4 KiB
C++
86 lines
3.4 KiB
C++
// SPDX-FileCopyrightText: 2017 Citra Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include <QButtonGroup>
|
|
#include <QMessageBox>
|
|
#include <QPushButton>
|
|
#include <QtConcurrent/qtconcurrentrun.h>
|
|
#include "common/logging/log.h"
|
|
#include "common/telemetry.h"
|
|
#include "core/telemetry_session.h"
|
|
#include "ui_compatdb.h"
|
|
#include "yuzu/compatdb.h"
|
|
|
|
CompatDB::CompatDB(Core::TelemetrySession& telemetry_session_, QWidget* parent)
|
|
: QWizard(parent, Qt::WindowTitleHint | Qt::WindowCloseButtonHint | Qt::WindowSystemMenuHint),
|
|
ui{std::make_unique<Ui::CompatDB>()}, telemetry_session{telemetry_session_} {
|
|
ui->setupUi(this);
|
|
connect(ui->radioButton_Perfect, &QRadioButton::clicked, this, &CompatDB::EnableNext);
|
|
connect(ui->radioButton_Great, &QRadioButton::clicked, this, &CompatDB::EnableNext);
|
|
connect(ui->radioButton_Okay, &QRadioButton::clicked, this, &CompatDB::EnableNext);
|
|
connect(ui->radioButton_Bad, &QRadioButton::clicked, this, &CompatDB::EnableNext);
|
|
connect(ui->radioButton_IntroMenu, &QRadioButton::clicked, this, &CompatDB::EnableNext);
|
|
connect(ui->radioButton_WontBoot, &QRadioButton::clicked, this, &CompatDB::EnableNext);
|
|
connect(button(NextButton), &QPushButton::clicked, this, &CompatDB::Submit);
|
|
connect(&testcase_watcher, &QFutureWatcher<bool>::finished, this,
|
|
&CompatDB::OnTestcaseSubmitted);
|
|
}
|
|
|
|
CompatDB::~CompatDB() = default;
|
|
|
|
enum class CompatDBPage {
|
|
Intro = 0,
|
|
Selection = 1,
|
|
Final = 2,
|
|
};
|
|
|
|
void CompatDB::Submit() {
|
|
QButtonGroup* compatibility = new QButtonGroup(this);
|
|
compatibility->addButton(ui->radioButton_Perfect, 0);
|
|
compatibility->addButton(ui->radioButton_Great, 1);
|
|
compatibility->addButton(ui->radioButton_Okay, 2);
|
|
compatibility->addButton(ui->radioButton_Bad, 3);
|
|
compatibility->addButton(ui->radioButton_IntroMenu, 4);
|
|
compatibility->addButton(ui->radioButton_WontBoot, 5);
|
|
switch ((static_cast<CompatDBPage>(currentId()))) {
|
|
case CompatDBPage::Selection:
|
|
if (compatibility->checkedId() == -1) {
|
|
button(NextButton)->setEnabled(false);
|
|
}
|
|
break;
|
|
case CompatDBPage::Final:
|
|
back();
|
|
LOG_DEBUG(Frontend, "Compatibility Rating: {}", compatibility->checkedId());
|
|
telemetry_session.AddField(Common::Telemetry::FieldType::UserFeedback, "Compatibility",
|
|
compatibility->checkedId());
|
|
|
|
button(NextButton)->setEnabled(false);
|
|
button(NextButton)->setText(tr("Submitting"));
|
|
button(CancelButton)->setVisible(false);
|
|
|
|
testcase_watcher.setFuture(
|
|
QtConcurrent::run([this] { return telemetry_session.SubmitTestcase(); }));
|
|
break;
|
|
default:
|
|
LOG_ERROR(Frontend, "Unexpected page: {}", currentId());
|
|
}
|
|
}
|
|
|
|
void CompatDB::OnTestcaseSubmitted() {
|
|
if (!testcase_watcher.result()) {
|
|
QMessageBox::critical(this, tr("Communication error"),
|
|
tr("An error occurred while sending the Testcase"));
|
|
button(NextButton)->setEnabled(true);
|
|
button(NextButton)->setText(tr("Next"));
|
|
button(CancelButton)->setVisible(true);
|
|
} else {
|
|
next();
|
|
// older versions of QT don't support the "NoCancelButtonOnLastPage" option, this is a
|
|
// workaround
|
|
button(CancelButton)->setVisible(false);
|
|
}
|
|
}
|
|
|
|
void CompatDB::EnableNext() {
|
|
button(NextButton)->setEnabled(true);
|
|
}
|