Merge pull request #955 from Freika/dev

0.25.1
This commit is contained in:
Evgenii Burmakin 2025-03-17 23:45:04 +01:00 committed by GitHub
commit 84f679396e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 9 additions and 5 deletions

View file

@ -1 +1 @@
0.25.0
0.25.1

View file

@ -4,6 +4,12 @@ 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.25.1 - 2025-03-17
## Fixed
- Coordinates on the Points page are now being displayed correctly.
# 0.25.0 - 2025-03-09
This release is focused on improving the visits experience.
@ -32,8 +38,6 @@ end
With any errors, don't hesitate to ask for help in the [Discord server](https://discord.gg/pHsBjpt5J8).
## Added
- A new button to open the visits drawer.

View file

@ -11,7 +11,7 @@ class OwnTracks::Params
# rubocop:disable Metrics/AbcSize
def call
{
lonlat: "POINT(#{params[:lon]} #{params[:lat]})",
lonlat: "POINT(#{params[:lon]} #{params[:lat]})",
battery: params[:batt],
ping: params[:p],
altitude: params[:alt],

View file

@ -15,6 +15,6 @@
</td>
<td class='<%= speed_text_color(point.velocity) %>'><%= point.velocity %></td>
<td><%= point.recorded_at %></td>
<td><%= point.latitude %>, <%= point.longitude %></td>
<td><%= point.lat %>, <%= point.lon %></td>
<td></td>
</tr>