mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
Update changelog
This commit is contained in:
parent
56046a6965
commit
85b7a9edf8
2 changed files with 3 additions and 7 deletions
|
|
@ -6,14 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
# 0.24.2 - 2025-02-15
|
||||
|
||||
## TODO:
|
||||
|
||||
- Realtime broadcast for importing progress
|
||||
|
||||
## Fixed
|
||||
|
||||
- Fixed a bug where background jobs to import Immich and Photoprism geolocation data data could not be created by non-admin users.
|
||||
- Fixed a bug where upon point deletion there was an error it was not being removed from the map, while it was actually deleted from the database. #883
|
||||
- Fixed a bug where non-admin users could not import Immich and Photoprism geolocation data.
|
||||
- Fixed a bug where upon point deletion it was not being removed from the map, while it was actually deleted from the database. #883
|
||||
- Fixed a bug where upon import deletion stats were not being recalculated. #824
|
||||
|
||||
### Changed
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ class MapController < ApplicationController
|
|||
|
||||
@coordinates =
|
||||
@points.pluck(:lonlat, :battery, :altitude, :timestamp, :velocity, :id, :country)
|
||||
.map { |lonlat, *rest| [lonlat.y.to_f, lonlat.x.to_f, *rest.map(&:to_s)] }
|
||||
.map { |lonlat, *rest| [lonlat.y, lonlat.x, *rest.map(&:to_s)] }
|
||||
@distance = distance
|
||||
@start_at = Time.zone.at(start_at)
|
||||
@end_at = Time.zone.at(end_at)
|
||||
|
|
|
|||
Loading…
Reference in a new issue