mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
Fix version and add link to Dawarich's website in the footer
This commit is contained in:
parent
b3aaa206d7
commit
bff2dd012e
4 changed files with 21 additions and 4 deletions
|
|
@ -1 +1 @@
|
|||
0.6.2
|
||||
0.6.4
|
||||
|
|
|
|||
19
CHANGELOG.md
19
CHANGELOG.md
|
|
@ -5,7 +5,23 @@ 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.6.1] — 2024-06-14
|
||||
## [0.6.4] — 2024-06-18
|
||||
|
||||
### Added
|
||||
|
||||
- A link to Dawarich's website in the footer. It ain't much, but it's honest work.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed version badge in the navbar. Now it will show the correct version of the application.
|
||||
|
||||
### Changed
|
||||
|
||||
- Default map center location was changed.
|
||||
|
||||
---
|
||||
|
||||
## [0.6.3] — 2024-06-14
|
||||
|
||||
⚠️ IMPORTANT: ⚠️
|
||||
|
||||
|
|
@ -29,6 +45,7 @@ Please update your `docker-compose.yml` file to include the following changes:
|
|||
- Fixed a bug where the export file was not being created in the public folder
|
||||
|
||||
---
|
||||
|
||||
## [0.6.2] — 2024-06-14
|
||||
|
||||
This is a debugging release. No changes were made to the application.
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ export default class extends Controller {
|
|||
console.log("Map controller connected")
|
||||
var markers = JSON.parse(this.element.dataset.coordinates)
|
||||
var center = markers[markers.length - 1] || JSON.parse(this.element.dataset.center)
|
||||
var center = (center === undefined) ? [52.516667, 13.383333] : center;
|
||||
var center = (center === undefined) ? [52.514568, 13.350111] : center;
|
||||
var timezone = this.element.dataset.timezone;
|
||||
|
||||
var map = L.map(this.containerTarget, {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<footer class="footer footer-center p-4 bg-base-300 text-base-content">
|
||||
<aside>
|
||||
<p>Dawarich 2023-<%=Time.zone.now.year %></p>
|
||||
<p><a href="https://dawarich.app/" class="link hover:no-underline" target="_blank">Dawarich</a> 2023-<%=Time.zone.now.year %></p>
|
||||
</aside>
|
||||
</footer>
|
||||
|
|
|
|||
Loading…
Reference in a new issue