From 3cf547e9032cd2342a92dff8a4c7d68085c63628 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Tue, 4 Aug 2026 23:09:54 +0900 Subject: [PATCH] chore: backport changes from dzgui7 branch --- dzgui/api/steam.py | 1 + dzgui/views/pages/preconnect.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dzgui/api/steam.py b/dzgui/api/steam.py index 9e128f6..c5b0074 100644 --- a/dzgui/api/steam.py +++ b/dzgui/api/steam.py @@ -139,6 +139,7 @@ def get_remote_signatures(mods: list[str]) -> list[tuple[str, str, int, int]]: j = r.json() rows = j["response"]["publishedfiledetails"] for row in rows: + # NOTE: not a valid published file if row["result"] == 9: continue title = str(row["title"]) diff --git a/dzgui/views/pages/preconnect.py b/dzgui/views/pages/preconnect.py index 345f7a7..47adfb6 100644 --- a/dzgui/views/pages/preconnect.py +++ b/dzgui/views/pages/preconnect.py @@ -284,7 +284,7 @@ class PreConnectionAssistant(Gtk.Box): allows_dl, running_app = prereqs.allows_downloads if len(prereqs.mods) > 0 and allows_dl is False: msg = ( - f"The game '{running_app}' is currently running in Steam, but background downloads are not enabled.\n" + f"The app '{running_app}' is currently running in Steam, but background downloads are not enabled.\n" "Either stop the game first, or update your global Steam settings or the game's local settings.\n" "Otherwise, mods may be queued for download but never update." )