From 565c5b5f62e16304cd815ee035c5763ff53d1b47 Mon Sep 17 00:00:00 2001 From: Collecting Date: Thu, 11 Dec 2025 07:30:12 +0000 Subject: [PATCH] feat: Backup Paths & Disable Option for Linux Signed-off-by: Collecting --- src/citron/uisettings.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/citron/uisettings.h b/src/citron/uisettings.h index 74e142d4e..12785e481 100644 --- a/src/citron/uisettings.h +++ b/src/citron/uisettings.h @@ -150,6 +150,13 @@ namespace UISettings { Setting check_for_updates_on_start{linkage, true, "check_for_updates_on_start", Category::Ui}; + // User might not want backups. Allow them to disable/re-enable accordingly. + Setting updater_enable_backups{linkage, true, "updater/enableBackups", Category::Ui}; + + // The custom directory to store AppImage backups on Linux. If empty, backups are stored + // in a 'backup' folder next to the main AppImage. + Setting updater_backup_path{linkage, "", "updater/backupPath", Category::Ui}; + // Discord RPC Setting enable_discord_presence{linkage, true, "enable_discord_presence", Category::Ui};