Skip to content

Commit bff2dd0

Browse files
committed
Fix version and add link to Dawarich's website in the footer
1 parent b3aaa20 commit bff2dd0

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

.app_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.2
1+
0.6.4

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

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
925

1026
⚠️ IMPORTANT: ⚠️
1127

@@ -29,6 +45,7 @@ Please update your `docker-compose.yml` file to include the following changes:
2945
- Fixed a bug where the export file was not being created in the public folder
3046

3147
---
48+
3249
## [0.6.2] — 2024-06-14
3350

3451
This is a debugging release. No changes were made to the application.

app/javascript/controllers/maps_controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default class extends Controller {
1010
console.log("Map controller connected")
1111
var markers = JSON.parse(this.element.dataset.coordinates)
1212
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;
1414
var timezone = this.element.dataset.timezone;
1515

1616
var map = L.map(this.containerTarget, {

app/views/shared/_footer.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<footer class="footer footer-center p-4 bg-base-300 text-base-content">
22
<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>
44
</aside>
55
</footer>

0 commit comments

Comments
 (0)