From bde1b948a66e3fa72faeea63b084974863276b7c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 2 Apr 2017 21:33:48 +0100 Subject: add filters for internet category --- games.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/games.py b/games.py index 74aca91..9b24c3e 100755 --- a/games.py +++ b/games.py @@ -37,7 +37,21 @@ class Games(QtWidgets.QMainWindow): def load_packages(self): with sqlite3.connect('/var/lib/epkg/db/epkg.db') as db: cursor=db.cursor() - cursor.execute('''SELECT * from remote_packages''') + cursor.execute(''' + SELECT + a.category AS cat, + a.name AS pn, + a.version AS av, + i.version AS iv, + a.description AS descr + FROM remote_packages AS a + LEFT JOIN local_packages AS i + ON a.category = i.category + AND a.name = i.name + AND a.slot = i.slot + WHERE a.name IN + ('steam', 'playonlinux', 'armagetronad', 'chromium-bsu', 'supertuxkart', 'teeworlds', 'dosbox', 'snes9x', 'zsnes', 'urbanterror', 'openttd', '0ad', 'warzone2100', 'wesnoth') + ''') rows = cursor.fetchall() for row in rows: -- cgit v1.2.3