--- rootPath: "../" --- {% extends "base.njk" %} {% block title %}Changelog — Houston{% endblock %} {% block favicon %}{% endblock %} {% block meta %} {% endblock %} {% block inlineStyles %} {% endblock %} {% block body %}
{% if changelog and changelog.length %} {% for release in changelog %}
{{ release.tag }}
{{ release.publishedDate }}
{% if loop.first and not release.isPrerelease %}Latest{% endif %} {% if release.isPrerelease %}Beta{% endif %}
{{ release.body | markdown | safe }}
View on GitHub {% if release.dmgAsset %}Download DMG{% endif %}
{% endfor %} {% else %}

The changelog couldn't load right now.

Read the release notes on GitHub →

{% endif %}
{% include "footer-landing.njk" %} {% endblock %}