mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-08 07:08:09 +00:00
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>
18 lines
430 B
C++
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
|