Merge branch 'master' into gpx-imports

This commit is contained in:
Eugene Burmakin 2024-06-19 11:09:24 +02:00
commit 98211351b8
4 changed files with 21 additions and 4 deletions

View file

@ -1 +1 @@
0.6.2
0.6.4

View file

@ -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.

View file

@ -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, {

View file

@ -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>