2018-03-22 05:20:15 -06:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-03-22 05:20:15 -06:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-12-27 11:09:47 -07:00
|
|
|
#include <string>
|
|
|
|
|
2018-03-22 05:20:15 -06:00
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
#include "UICommon/AutoUpdate.h"
|
|
|
|
|
2021-03-12 18:10:53 -07:00
|
|
|
// Refer to docs/autoupdate_overview.md for a detailed overview of the autoupdate process
|
|
|
|
|
2018-03-22 05:20:15 -06:00
|
|
|
class QWidget;
|
|
|
|
|
|
|
|
class Updater : public QThread, public AutoUpdateChecker
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2021-12-27 11:09:47 -07:00
|
|
|
explicit Updater(QWidget* parent, std::string update_track, std::string hash_override);
|
2018-03-22 05:20:15 -06:00
|
|
|
|
|
|
|
void run() override;
|
|
|
|
void OnUpdateAvailable(const NewVersionInformation& info) override;
|
2022-11-01 00:08:35 -06:00
|
|
|
void CheckForUpdate();
|
2018-03-22 05:20:15 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
QWidget* m_parent;
|
2021-12-27 11:09:47 -07:00
|
|
|
std::string m_update_track;
|
|
|
|
std::string m_hash_override;
|
2018-03-22 05:20:15 -06:00
|
|
|
};
|