From 1083e1c07d2d2ee3f4b2a36632a97f422513e40c Mon Sep 17 00:00:00 2001 From: MeijiRestored <42336759+MeijiRestored@users.noreply.github.com> Date: Thu, 24 Apr 2025 09:00:24 +0200 Subject: [PATCH 1/2] var fix --- app/javascript/controllers/maps_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/controllers/maps_controller.js b/app/javascript/controllers/maps_controller.js index 7bfd059e..cb97def8 100644 --- a/app/javascript/controllers/maps_controller.js +++ b/app/javascript/controllers/maps_controller.js @@ -50,7 +50,7 @@ export default class extends BaseController { this.liveMapEnabled = this.userSettings.live_map_enabled || false; this.countryCodesMap = countryCodesMap(); this.speedColoredPolylines = this.userSettings.speed_colored_routes || false; - this.speedColorScale = this.userSettings.speed_color_scale || colorFormatEncode(speedColorScaleDefault); + this.speedColorScale = this.userSettings.speed_color_scale || colorFormatEncode(colorStopsFallback); this.center = this.markers[this.markers.length - 1] || [52.514568, 13.350111]; From 67fb5a056327ab6889ee60b824f320fe8a5f17be Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Thu, 24 Apr 2025 19:59:24 +0200 Subject: [PATCH 2/2] Update changelog and app version --- .app_version | 2 +- CHANGELOG.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.app_version b/.app_version index 3f44db94..d8980711 100644 --- a/.app_version +++ b/.app_version @@ -1 +1 @@ -0.25.6 +0.25.7 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0998b18c..467f8c26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +# 0.25.7 - 2025-04-24 + +## Fixed + +- Map loading error. #1094 + # 0.25.6 - 2025-04-23 ## Added