{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Release Notes - {{ brand_name }}{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Release Notes

Current version: {{ current_version }}. Read what changed, what was fixed, and what users should check after updates.

Back {% if is_admin %} App Updates {% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% if is_admin %}

Release Notes Agent

Use this after finishing an app update. The agent checks the current code state and publishes a note for users.

Publish Manual Note

{% endif %}
{% if notes %} {% for note in notes %}

{{ note[2] }}

{{ note[3] }}

v{{ note[1] }} {{ note[6] }} {% if note[5] != 'all' %} {{ note[5] }} {% endif %}
{{ note[4] }}

Published {{ note[8] or note[7] }}

{% endfor %} {% else %}
No release notes have been published yet.
{% endif %}
{% endblock %}