2018-03-22 11:20:15 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-03-22 11:20:15 +00:00
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Updater.h"
|
2018-03-22 11:20:15 +00:00
|
|
|
|
2021-12-27 18:09:47 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2018-03-22 11:20:15 +00:00
|
|
|
#include <QCheckBox>
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QTextBrowser>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#include "Common/Version.h"
|
2018-05-28 01:48:04 +00:00
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/QtUtils/RunOnObject.h"
|
|
|
|
#include "DolphinQt/Settings.h"
|
2018-03-22 11:20:15 +00:00
|
|
|
|
2021-03-13 01:10:53 +00:00
|
|
|
// Refer to docs/autoupdate_overview.md for a detailed overview of the autoupdate process
|
|
|
|
|
2021-12-27 18:09:47 +00:00
|
|
|
Updater::Updater(QWidget* parent, std::string update_track, std::string hash_override)
|
|
|
|
: m_parent(parent), m_update_track(std::move(update_track)),
|
|
|
|
m_hash_override(std::move(hash_override))
|
2018-03-22 11:20:15 +00:00
|
|
|
{
|
|
|
|
connect(this, &QThread::finished, this, &QObject::deleteLater);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Updater::run()
|
|
|
|
{
|
2021-12-27 18:09:47 +00:00
|
|
|
AutoUpdateChecker::CheckForUpdate(m_update_track, m_hash_override);
|
2018-05-24 22:19:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Updater::CheckForUpdate()
|
|
|
|
{
|
|
|
|
m_update_available = false;
|
2021-12-27 18:09:47 +00:00
|
|
|
AutoUpdateChecker::CheckForUpdate(m_update_track, m_hash_override);
|
2018-05-24 22:19:36 +00:00
|
|
|
|
|
|
|
return m_update_available;
|
2018-03-22 11:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Updater::OnUpdateAvailable(const NewVersionInformation& info)
|
|
|
|
{
|
|
|
|
bool later = false;
|
2018-05-24 22:19:36 +00:00
|
|
|
m_update_available = true;
|
2018-03-22 11:20:15 +00:00
|
|
|
|
2018-05-21 22:27:12 +00:00
|
|
|
std::optional<int> choice = RunOnObject(m_parent, [&] {
|
2018-03-22 11:20:15 +00:00
|
|
|
QDialog* dialog = new QDialog(m_parent);
|
|
|
|
dialog->setWindowTitle(tr("Update available"));
|
2018-05-14 07:00:40 +00:00
|
|
|
dialog->setWindowFlags(dialog->windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
2018-03-22 11:20:15 +00:00
|
|
|
|
|
|
|
auto* label = new QLabel(
|
|
|
|
tr("<h2>A new version of Dolphin is available!</h2>Dolphin %1 is available for "
|
|
|
|
"download. "
|
|
|
|
"You are running %2.<br> Would you like to update?<br><h4>Release Notes:</h4>")
|
|
|
|
.arg(QString::fromStdString(info.new_shortrev))
|
2022-01-13 23:04:22 +00:00
|
|
|
.arg(QString::fromStdString(Common::GetScmDescStr())));
|
2018-03-22 11:20:15 +00:00
|
|
|
label->setTextFormat(Qt::RichText);
|
|
|
|
|
|
|
|
auto* changelog = new QTextBrowser;
|
|
|
|
|
|
|
|
changelog->setHtml(QString::fromStdString(info.changelog_html));
|
|
|
|
changelog->setOpenExternalLinks(true);
|
|
|
|
changelog->setMinimumWidth(400);
|
|
|
|
|
|
|
|
auto* update_later_check = new QCheckBox(tr("Update after closing Dolphin"));
|
|
|
|
|
|
|
|
connect(update_later_check, &QCheckBox::toggled, [&](bool checked) { later = checked; });
|
|
|
|
|
|
|
|
auto* buttons = new QDialogButtonBox;
|
|
|
|
|
|
|
|
auto* never_btn =
|
|
|
|
buttons->addButton(tr("Never Auto-Update"), QDialogButtonBox::DestructiveRole);
|
|
|
|
buttons->addButton(tr("Remind Me Later"), QDialogButtonBox::RejectRole);
|
|
|
|
buttons->addButton(tr("Install Update"), QDialogButtonBox::AcceptRole);
|
|
|
|
|
|
|
|
auto* layout = new QVBoxLayout;
|
|
|
|
dialog->setLayout(layout);
|
|
|
|
|
|
|
|
layout->addWidget(label);
|
|
|
|
layout->addWidget(changelog);
|
|
|
|
layout->addWidget(update_later_check);
|
|
|
|
layout->addWidget(buttons);
|
|
|
|
|
2019-07-23 22:18:58 +00:00
|
|
|
connect(never_btn, &QPushButton::clicked, [dialog] {
|
2019-07-30 11:57:06 +00:00
|
|
|
Settings::Instance().SetAutoUpdateTrack(QString{});
|
2018-03-22 11:20:15 +00:00
|
|
|
dialog->reject();
|
|
|
|
});
|
|
|
|
|
|
|
|
connect(buttons, &QDialogButtonBox::accepted, dialog, &QDialog::accept);
|
|
|
|
connect(buttons, &QDialogButtonBox::rejected, dialog, &QDialog::reject);
|
|
|
|
|
|
|
|
return dialog->exec();
|
|
|
|
});
|
|
|
|
|
2018-05-21 22:27:12 +00:00
|
|
|
if (choice && *choice == QDialog::Accepted)
|
2018-03-22 11:20:15 +00:00
|
|
|
{
|
2018-03-22 23:29:03 +00:00
|
|
|
TriggerUpdate(info, later ? AutoUpdateChecker::RestartMode::NO_RESTART_AFTER_UPDATE :
|
|
|
|
AutoUpdateChecker::RestartMode::RESTART_AFTER_UPDATE);
|
2018-03-22 11:20:15 +00:00
|
|
|
|
|
|
|
if (!later)
|
2019-06-24 19:20:34 +00:00
|
|
|
{
|
|
|
|
RunOnObject(m_parent, [this] {
|
|
|
|
m_parent->close();
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
}
|
2018-03-22 11:20:15 +00:00
|
|
|
}
|
|
|
|
}
|