Added
- Support for miles. To switch to miles, provide
DISTANCE_UNIT
environment variable with valuemi
in thedocker-compose.yml
file. Default value iskm
.
It's recommended to update your stats manually after changing the DISTANCE_UNIT
environment variable. You can do this by clicking the "Update stats" button on the Stats page.
⚠️IMPORTANT⚠️: All settings are still should be provided in meters. All calculations though will be converted to feets and miles if DISTANCE_UNIT
is set to mi
.
dawarich_app:
image: freikin/dawarich:latest
container_name: dawarich_app
environment:
APPLICATION_HOST: "localhost"
APPLICATION_PROTOCOL: "http"
APPLICATION_PORT: "3000"
TIME_ZONE: "UTC"
+ DISTANCE_UNIT: "mi"
dawarich_sidekiq:
image: freikin/dawarich:latest
container_name: dawarich_sidekiq
environment:
APPLICATION_HOST: "localhost"
APPLICATION_PROTOCOL: "http"
APPLICATION_PORT: "3000"
TIME_ZONE: "UTC"
+ DISTANCE_UNIT: "mi"
Changed
- Default time range on the map is now 1 day instead of 1 month. It will help you with performance issues if you have a lot of points in the database.
💙 This release is supported by James Manolios on Patreon 💙
What's Changed
- Default to today in maps page by @tetebueno in #138
- Miles by @Freika in #200
New Contributors
- @tetebueno made their first contribution in #138
Full Changelog: 0.13.2...0.13.3