File tree Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 1
- 0.6.2
1
+ 0.6.4
Original file line number Diff line number Diff line change @@ -5,7 +5,23 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
- ## [ 0.6.1] — 2024-06-14
8
+ ## [ 0.6.4] — 2024-06-18
9
+
10
+ ### Added
11
+
12
+ - A link to Dawarich's website in the footer. It ain't much, but it's honest work.
13
+
14
+ ### Fixed
15
+
16
+ - Fixed version badge in the navbar. Now it will show the correct version of the application.
17
+
18
+ ### Changed
19
+
20
+ - Default map center location was changed.
21
+
22
+ ---
23
+
24
+ ## [ 0.6.3] — 2024-06-14
9
25
10
26
⚠️ IMPORTANT: ⚠️
11
27
@@ -29,6 +45,7 @@ Please update your `docker-compose.yml` file to include the following changes:
29
45
- Fixed a bug where the export file was not being created in the public folder
30
46
31
47
---
48
+
32
49
## [ 0.6.2] — 2024-06-14
33
50
34
51
This is a debugging release. No changes were made to the application.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export default class extends Controller {
10
10
console . log ( "Map controller connected" )
11
11
var markers = JSON . parse ( this . element . dataset . coordinates )
12
12
var center = markers [ markers . length - 1 ] || JSON . parse ( this . element . dataset . center )
13
- var center = ( center === undefined ) ? [ 52.516667 , 13.383333 ] : center ;
13
+ var center = ( center === undefined ) ? [ 52.514568 , 13.350111 ] : center ;
14
14
var timezone = this . element . dataset . timezone ;
15
15
16
16
var map = L . map ( this . containerTarget , {
Original file line number Diff line number Diff line change 1
1
< footer class ="footer footer-center p-4 bg-base-300 text-base-content ">
2
2
< aside >
3
- < p > Dawarich 2023-<%= Time . zone . now . year %> </ p >
3
+ < p > < a href =" https://dawarich.app/ " class =" link hover:no-underline " target =" _blank " > Dawarich</ a > 2023-<%= Time . zone . now . year %> </ p >
4
4
</ aside >
5
5
</ footer >
You can’t perform that action at this time.
0 commit comments