Add changelog

This commit is contained in:
2019-07-19 00:07:51 +02:00
parent 497805fe1b
commit f64788ca60
3 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
v16 -> v17:
- Add this changelog to the footer
- Locale of the recurring transaction reminder email is now configurable
- Recurring transaction indicator in transaction overview (account details) is now properly translated

View File

@@ -91,7 +91,7 @@ input[type=submit] {
margin-top: 1em; margin-top: 1em;
} }
#footer-container * { #footer-container > hr, div {
display: block; display: block;
} }
@@ -99,7 +99,7 @@ input[type=submit] {
width: 100%; width: 100%;
} }
#footer-container > span { #footer-container > div {
text-align: center; text-align: center;
font-size: 0.9em; font-size: 0.9em;
} }

View File

@@ -1,4 +1,7 @@
<div id="footer-container" th:fragment="footer"> <div id="footer-container" th:fragment="footer">
<hr> <hr>
<span th:text="'financer v' + ${financerVersion}"/> <div>
<span th:text="'financer v' + ${financerVersion}"/>
&nbsp;(<a th:href="@{/changelog.txt}">Changelog</a>)
</div>
</div> </div>