diff --git a/.app_version b/.app_version index d21d277b..af2dabf3 100644 --- a/.app_version +++ b/.app_version @@ -1 +1 @@ -0.25.0 +0.25.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 90fa2c7d..1fbfb93a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/app/services/own_tracks/params.rb b/app/services/own_tracks/params.rb index 68f8c751..88533690 100644 --- a/app/services/own_tracks/params.rb +++ b/app/services/own_tracks/params.rb @@ -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], diff --git a/app/views/points/_point.html.erb b/app/views/points/_point.html.erb index b29df387..f96f5714 100644 --- a/app/views/points/_point.html.erb +++ b/app/views/points/_point.html.erb @@ -15,6 +15,6 @@