mirror of
https://github.com/Abdess/retrobios.git
synced 2026-06-23 11:52:47 +00:00
feat: complete retrobat coverage, fix large file resolution, fix readme variants
This commit is contained in:
parent
d834688593
commit
c13d3d13bf
3 changed files with 220 additions and 592 deletions
|
|
@ -97,6 +97,9 @@ def generate_readme(db: dict, configs: dict) -> str:
|
|||
for sha1, entry in db.get("files", {}).items():
|
||||
path = entry.get("path", "")
|
||||
parts = path.split("/")
|
||||
# Skip .variants/ files from main listing (shown under their canonical file)
|
||||
if ".variants/" in path:
|
||||
continue
|
||||
if len(parts) >= 3:
|
||||
system = f"{parts[1]}/{parts[2]}"
|
||||
elif len(parts) >= 2:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue