add version to credits in manifest

This commit is contained in:
Cheri Dawn 2024-05-21 23:37:12 +03:00
parent 0705441b8a
commit e4670192fe
2 changed files with 4 additions and 0 deletions

View file

@ -2,6 +2,7 @@
author = "who made the manifest for the game"
contributors = [] # optional list of strings.
year = "when it was made"
version = "" # optional version string
license = "license for this manifest"

View file

@ -421,6 +421,9 @@ class SetageShell(Cmd):
if "contributors" in cred:
print(f"\tWith contributions by {", ".join(cred["contributors"])}")
if "version" in cred:
print(f"\tVersion: {cred["version"]}")
if "license" in cred:
print(f"\tLicense: {cred["license"]}")
print("\nSETAGE credits:")