Update CHANGELOG.md and docker-compose.yml

This commit is contained in:
Eugene Burmakin 2024-10-19 18:43:08 +02:00
parent 750bb4976c
commit 7567886224
2 changed files with 9 additions and 0 deletions

View file

@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
# 0.15.5 - 2024-10-16 # 0.15.5 - 2024-10-16
### Fixed
- Fixed a bug where Google Takeout import was failing due to unsupported date format with milliseconds in the file.
- Fixed a bug that prevented using the Photon API host with http protocol. Now you can use both http and https protocols for the Photon API host. You now need to explicitly provide `PHOTON_API_USE_HTTPS` to be `true` or `false` depending on what protocol you want to use.
### Changed ### Changed
- The Map page now by default uses timeframe based on last point tracked instead of the today's points. If there are no points, the map will use the today's timeframe. - The Map page now by default uses timeframe based on last point tracked instead of the today's points. If there are no points, the map will use the today's timeframe.

View file

@ -62,6 +62,8 @@ services:
TIME_ZONE: Europe/London TIME_ZONE: Europe/London
APPLICATION_PROTOCOL: http APPLICATION_PROTOCOL: http
DISTANCE_UNIT: km DISTANCE_UNIT: km
PHOTON_API_HOST: photon.komoot.io
PHOTON_API_USE_HTTPS: true
logging: logging:
driver: "json-file" driver: "json-file"
options: options:
@ -111,6 +113,8 @@ services:
BACKGROUND_PROCESSING_CONCURRENCY: 10 BACKGROUND_PROCESSING_CONCURRENCY: 10
APPLICATION_PROTOCOL: http APPLICATION_PROTOCOL: http
DISTANCE_UNIT: km DISTANCE_UNIT: km
PHOTON_API_HOST: photon.komoot.io
PHOTON_API_USE_HTTPS: true
logging: logging:
driver: "json-file" driver: "json-file"
options: options: