Merge pull request #1102 from Freika/dev

0.25.7
This commit is contained in:
Evgenii Burmakin 2025-04-24 20:00:09 +02:00 committed by GitHub
commit 6f5bcc72a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View file

@ -1 +1 @@
0.25.6
0.25.7

View file

@ -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

View file

@ -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];