mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-03-23 01:56:08 -04:00
feat(updater): Improved Updater System w/ Automation & SCM Logic Changes
Signed-off-by: Collecting <collecting@noreply.localhost>
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
|
||||
// SPDX-FileCopyrightText: 2025 citron Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include "common/scm_rev.h"
|
||||
@@ -14,6 +15,11 @@
|
||||
#define TITLE_BAR_FORMAT_IDLE "@TITLE_BAR_FORMAT_IDLE@"
|
||||
#define TITLE_BAR_FORMAT_RUNNING "@TITLE_BAR_FORMAT_RUNNING@"
|
||||
|
||||
// Baked-in Citron Identity
|
||||
#define CITRON_VARIANT "@CITRON_VARIANT_BAKED@"
|
||||
#define CITRON_VERSION "@CITRON_VERSION_BAKED@"
|
||||
#define CITRON_HASH "@CITRON_HASH_BAKED@"
|
||||
|
||||
namespace Common {
|
||||
|
||||
const char g_scm_rev[] = GIT_REV;
|
||||
@@ -27,5 +33,8 @@ const char g_build_id[] = BUILD_ID;
|
||||
const char g_title_bar_format_idle[] = TITLE_BAR_FORMAT_IDLE;
|
||||
const char g_title_bar_format_running[] = TITLE_BAR_FORMAT_RUNNING;
|
||||
|
||||
} // namespace
|
||||
const char g_citron_variant[] = CITRON_VARIANT;
|
||||
const char g_citron_version[] = CITRON_VERSION;
|
||||
const char g_citron_hash[] = CITRON_HASH;
|
||||
|
||||
} // namespace Common
|
||||
|
||||
Reference in New Issue
Block a user