2022-04-23 11:40:06 +00:00
|
|
|
{{ versiondata.version }} ({{ versiondata.date }})
|
|
|
|
{{ top_underline * ((versiondata.version + versiondata.date)|length + 3)}}
|
2021-10-27 21:48:40 +00:00
|
|
|
|
2018-06-06 20:03:36 +00:00
|
|
|
Upgrade instructions are available at
|
2020-09-09 16:05:03 +00:00
|
|
|
https://docs.funkwhale.audio/admin/upgrading.html
|
2018-05-06 13:47:34 +00:00
|
|
|
|
2018-02-27 18:04:50 +00:00
|
|
|
{% for section, _ in sections.items() %}
|
|
|
|
{% if sections[section] %}
|
|
|
|
{% for category, val in definitions.items() if category in sections[section]%}
|
|
|
|
{{ definitions[category]['name'] }}:
|
|
|
|
|
|
|
|
{% if definitions[category]['showcontent'] %}
|
|
|
|
{% for text in sections[section][category].keys()|sort() %}
|
|
|
|
- {{ text }}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
- {{ sections[section][category]['']|join(', ') }}
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% if sections[section][category]|length == 0 %}
|
|
|
|
No significant changes.
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
No significant changes.
|
|
|
|
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|