{% extends "base.html" %} {% block title %}{{ _("What changed") }} · Wealth Dashboard{% endblock %} {% block heading %}{{ _("What changed") }}{% endblock %} {% block lede %}

{{ _f("You are running version {version}.", version=version) }} {{ _("Release notes are written once, in English, and are not translated — a translation of a note about a fix is one more thing that can be wrong about the fix.") }}

{% endblock %} {% block content %} {% if update_available %}
{{ update_how(update_available) }} {{ _("What is new") }}
{% endif %} {% if releases %} {% for r in releases %}

{{ r.version }}{% if r.version == version %} {{ _("you are here") }}{% endif %}

{% if r.date %}{{ d(r.date) }}{% endif %}
{% for s in r.sections %}

{{ _(s.name ~ " [changelog]") }}

{% endfor %}
{% endfor %} {% else %}

{{ _("No changelog shipped with this build.") }}

{{ _("CHANGELOG.md is not inside the image — it is in the repository, which is where this page reads it from when you run from source.") }}

{% endif %} {% endblock %}