Update changelog

This commit is contained in:
Eugene Burmakin 2024-04-21 17:58:13 +02:00
parent b64301696e
commit 5315836c6a
4 changed files with 19 additions and 1 deletions

View file

@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.1.8] — 2024-04-21
### Added
- Application version badge to the navbar with check for updates button
- Npm dependencies install to Github build workflow
- Footer
### Changed
- Disabled map points rendering by default to improve performance on big datasets
## [0.1.7] — 2024-04-17
### Added

File diff suppressed because one or more lines are too long

View file

@ -21,6 +21,7 @@
<div class="flex flex-row gap-5 w-full px-5">
<%= yield %>
</div>
<%= render 'shared/footer' %>
</div>
</body>
</html>

View file

@ -0,0 +1,5 @@
<footer class="footer footer-center p-4 bg-base-300 text-base-content">
<aside>
<p>Dawarich 2023-<%=Time.zone.now.year %></p>
</aside>
</footer>