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
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-12-27 18:09:47 +00:00
|
|
|
#include <string>
|
|
|
|
|
2018-03-22 11:20:15 +00:00
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
#include "UICommon/AutoUpdate.h"
|
|
|
|
|
2021-03-13 01:10:53 +00:00
|
|
|
// Refer to docs/autoupdate_overview.md for a detailed overview of the autoupdate process
|
|
|
|
|
2018-03-22 11:20:15 +00:00
|
|
|
class QWidget;
|
|
|
|
|
|
|
|
class Updater : public QThread, public AutoUpdateChecker
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2021-12-27 18:09:47 +00:00
|
|
|
explicit Updater(QWidget* parent, std::string update_track, std::string hash_override);
|
2018-03-22 11:20:15 +00:00
|
|
|
|
|
|
|
void run() override;
|
|
|
|
void OnUpdateAvailable(const NewVersionInformation& info) override;
|
2022-11-01 06:08:35 +00:00
|
|
|
void CheckForUpdate();
|
2018-03-22 11:20:15 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QWidget* m_parent;
|
2021-12-27 18:09:47 +00:00
|
|
|
std::string m_update_track;
|
|
|
|
std::string m_hash_override;
|
2018-03-22 11:20:15 +00:00
|
|
|
};
|