mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
Update changelog
This commit is contained in:
parent
b64301696e
commit
5315836c6a
4 changed files with 19 additions and 1 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -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/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
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
|
## [0.1.7] — 2024-04-17
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -21,6 +21,7 @@
|
||||||
<div class="flex flex-row gap-5 w-full px-5">
|
<div class="flex flex-row gap-5 w-full px-5">
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
</div>
|
</div>
|
||||||
|
<%= render 'shared/footer' %>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
5
app/views/shared/_footer.html.erb
Normal file
5
app/views/shared/_footer.html.erb
Normal 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>
|
||||||
Loading…
Reference in a new issue