0.8.4
Added
- Support for multiple hosts. Now you can specify the host of the application by setting the
APPLICATION_HOSTS
(note plural form) environment variable in thedocker-compose.yml
file. Example:
dawarich_app:
image: freikin/dawarich:latest
container_name: dawarich_app
environment:
APPLICATION_HOSTS: "yourhost.com,www.yourhost.com,127.0.0.1"
Note, that there should be no protocol prefixes in the APPLICATION_HOSTS
variable, only the hostnames.
APPLICATION_HOST
to APPLICATION_HOSTS
to avoid any issues in the future, as APPLICATION_HOST
will be deprecated in the near future.
- Support for HTTPS. Now you can specify the protocol of the application by setting the
APPLICATION_PROTOCOL
environment variable in thedocker-compose.yml
file. The default value ishttp
Example:
dawarich_app:
image: freikin/dawarich:latest
container_name: dawarich_app
environment:
APPLICATION_PROTOCOL: "https"
Fixed
- Support for a
location-history.json
file from Google Takeout. It turned out, that this file could contain not only an object with location data history but also an array of objects with location data history. Now Dawarich can handle both cases and import the data correctly.
What's Changed
Full Changelog: 0.8.3...0.8.4