eden/src/frontend_common/update_checker.h
crueter 7273540d43
WIP: [frontend] Built-in auto updater
Checks latest release and opens a dialog containing the changelog, and
allow the user to select a specific build to download. After
downloading, it prompts the user to open it. Untested but should
auto-mount the DMG on macOS and open up the zip in Windows?

Needs work on Android, but I don't feel like doing it

Signed-off-by: crueter <crueter@eden-emu.dev>
2026-04-09 00:32:19 -04:00

18 lines
430 B
C++

// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright Citra Emulator Project / Azahar Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <optional>
#include "common/net/net.h"
namespace UpdateChecker {
std::optional<Common::Net::Release> GetUpdate();
} // namespace UpdateChecker