add version to credits in manifest
This commit is contained in:
parent
0705441b8a
commit
e4670192fe
2 changed files with 4 additions and 0 deletions
|
@ -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"
|
||||
|
||||
|
||||
|
|
|
@ -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:")
|
||||
|
|
Loading…
Reference in a new issue