From 71cd0f61b4438318021cc36f6e9fe0e537f9adb0 Mon Sep 17 00:00:00 2001 From: Krzysztof kuhy Rudnicki Date: Thu, 14 May 2026 19:56:33 +0200 Subject: [PATCH] feat(steam-backlog): protect four additional Steam app IDs Adds 1410710, 10500, 813780, 489830 to PROTECTED_APP_IDS so the enforcer will not uninstall them. Existing tests patch the set, so test outcomes are unaffected. --- steam_backlog_enforcer/game_install.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/steam_backlog_enforcer/game_install.py b/steam_backlog_enforcer/game_install.py index 32311d7..8783487 100644 --- a/steam_backlog_enforcer/game_install.py +++ b/steam_backlog_enforcer/game_install.py @@ -90,6 +90,10 @@ PROTECTED_APP_IDS = { 1158310, 440, 1142710, + 1410710, + 10500, + 813780, + 489830, } STEAMAPPS_PATH = Path("~/.local/share/Steam/steamapps").expanduser()