From 9393ba7eb2f08a6c48dfa408b4b6e6048e432465 Mon Sep 17 00:00:00 2001 From: Redstones563 <65236603+Redstones563@users.noreply.github.com> Date: Tue, 26 Sep 2023 17:23:53 -0400 Subject: [PATCH 1/3] Update steam-appmanifest.py Literally all that needed to be changed was one line. This is why libraries should deprecate their old features instead of removing them. --- steam-appmanifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam-appmanifest.py b/steam-appmanifest.py index 725149c..8f65349 100755 --- a/steam-appmanifest.py +++ b/steam-appmanifest.py @@ -167,7 +167,7 @@ def onRefreshClick(self, widget): html = urlopen(url) tree = ElementTree() tree.parse(html) - games_xml = tree.getiterator('game') + games_xml = tree.iter('game') for game in games_xml: appid = int(game.find('appID').text) name = game.find('name').text From eabf095376f0d67c8b8d74cf64517878cd194923 Mon Sep 17 00:00:00 2001 From: Smoothie <65236603+Redstones563@users.noreply.github.com> Date: Wed, 28 Aug 2024 21:27:28 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 332032f..7c583ac 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Steam AppManifest generator +Steam AppManifest generator (Patched to work with modern XML formatting updates) =========================== This is a short python script that tricks Steam for Linux into downloading non-Linux apps. From 4074740aa8d1881a3d144716986fa0b6546f191e Mon Sep 17 00:00:00 2001 From: Smoothie <65236603+Redstones563@users.noreply.github.com> Date: Wed, 28 Aug 2024 21:28:34 -0400 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c583ac..332032f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Steam AppManifest generator (Patched to work with modern XML formatting updates) +Steam AppManifest generator =========================== This is a short python script that tricks Steam for Linux into downloading non-Linux apps.