From bff2dd012ec731c5fefcbdfee0042879ec9988ae Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Tue, 18 Jun 2024 22:11:12 +0200 Subject: [PATCH] Fix version and add link to Dawarich's website in the footer --- .app_version | 2 +- CHANGELOG.md | 19 ++++++++++++++++++- app/javascript/controllers/maps_controller.js | 2 +- app/views/shared/_footer.html.erb | 2 +- 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.app_version b/.app_version index b6160487..d2b13eb6 100644 --- a/.app_version +++ b/.app_version @@ -1 +1 @@ -0.6.2 +0.6.4 diff --git a/CHANGELOG.md b/CHANGELOG.md index b7f8aa7b..27903a9a 100644 --- a/CHANGELOG.md +++ b/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. diff --git a/app/javascript/controllers/maps_controller.js b/app/javascript/controllers/maps_controller.js index 129b3c21..bf212250 100644 --- a/app/javascript/controllers/maps_controller.js +++ b/app/javascript/controllers/maps_controller.js @@ -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, { diff --git a/app/views/shared/_footer.html.erb b/app/views/shared/_footer.html.erb index 02238c98..944a96ae 100644 --- a/app/views/shared/_footer.html.erb +++ b/app/views/shared/_footer.html.erb @@ -1,5 +1,5 @@