mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
commit
84f679396e
4 changed files with 9 additions and 5 deletions
|
|
@ -1 +1 @@
|
|||
0.25.0
|
||||
0.25.1
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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],
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue