WebHost: Add authors to supported games page (#6123)

This commit is contained in:
Duck
2026-05-09 09:00:00 -06:00
committed by GitHub
parent 7a5acfeceb
commit 3fcd337f65
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -68,6 +68,9 @@
<a href="{{ world.web.bug_report_page }}">Report a Bug</a>
{% endif %}
</details>
{% if "authors" in world.manifest %}
<p>Authors: {{ world.manifest["authors"] | join(", ") }}</p>
{% endif %}
{% endfor %}
</div>
{% endblock %}
+2 -2
View File
@@ -35,8 +35,8 @@ There are also the following optional fields:
* `world_version` - an arbitrary version for that world in order to only load the newest valid world.
An APWorld without a world_version is always treated as older than one with a version
(**Must** use exactly the format `"major.minor.build"`, e.g. `1.0.0`)
* `authors` - a list of authors, to eventually be displayed in various user-facing places such as WebHost and
package managers. Should always be a list of strings.
* `authors` - a list of authors of the world. Displayed in user-facing places like the Supported Games page
on WebHost. Should always be a list of strings.
If the APWorld is packaged as an `.apworld` zip file, it also needs to have `version` and `compatible_version`,
which refer to the version of the APContainer packaging scheme defined in [Files.py](../worlds/Files.py).