chore: more dev QoL, exclude dolphin dev from json. fix: scummvm

This commit is contained in:
Richard Macias
2025-05-27 10:49:08 -05:00
parent c8f15240ba
commit 461d2863ba
10 changed files with 136 additions and 32 deletions

View File

@@ -24,6 +24,10 @@ def generate_markdown_table(apps):
rows.append(divider)
for app in apps:
meta = app.get("meta", {})
if meta.get("excludeFromTable", False):
continue
name = app.get("name", "")
category = ", ".join(app.get("categories", []))
obtainium_link = make_obtainium_link(app)