Skip to content

Commit

Permalink
Fix version and add link to Dawarich's website in the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Freika committed Jun 18, 2024
1 parent b3aaa20 commit bff2dd0
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .app_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.2
0.6.4
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: ⚠️

Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/controllers/maps_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, {
Expand Down
2 changes: 1 addition & 1 deletion app/views/shared/_footer.html.erb
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit bff2dd0

Please sign in to comment.