Merge pull request #1572 from Freika/dev

0.30.5
This commit is contained in:
Evgenii Burmakin 2025-07-26 21:06:05 +02:00 committed by GitHub
commit ff2db07eee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 3 deletions

View file

@ -1 +1 @@
0.30.4 0.30.5

View file

@ -4,11 +4,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/). and this project adheres to [Semantic Versioning](http://semver.org/).
# [0.30.5] - 2025-07-26
## Fixed
- Trips page now loads correctly.
# [0.30.4] - 2025-07-26 # [0.30.4] - 2025-07-26
## Added ## Added
- Prometheus metrics are now available at `/metrics`. Configure `METRICS_USERNAME` and `METRICS_PASSWORD` environment variables for basic authentication. All other prometheus-related environment variables are also necessary. - Prometheus metrics are now available at `/metrics`. Configure `METRICS_USERNAME` and `METRICS_PASSWORD` environment variables for basic authentication, default values are `prometheus` for both. All other prometheus-related environment variables are also necessary.
## Fixed ## Fixed

View file

@ -5,7 +5,7 @@
<span class="hover:underline"><%= trip.name %></span> <span class="hover:underline"><%= trip.name %></span>
</h2> </h2>
<p class="text-sm text-gray-600 text-center"> <p class="text-sm text-gray-600 text-center">
<%= "#{human_date(trip.started_at)} #{human_date(trip.ended_at)}, #{trip.distance_in_unit(current_user.safe_settings.distance_unit).round} #{distance_unit}" %> <%= "#{human_date(trip.started_at)} #{human_date(trip.ended_at)}, #{trip.distance_in_unit(current_user.safe_settings.distance_unit).round} #{current_user.safe_settings.distance_unit}" %>
</p> </p>
<div style="width: 100%; aspect-ratio: 1/1;" <div style="width: 100%; aspect-ratio: 1/1;"