Skip to content

0.8.4

Compare
Choose a tag to compare
@Freika Freika released this 08 Jul 16:08
· 440 commits to master since this release
427231a

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 the docker-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.

⚠️ It would also be better to migrate your current 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 the docker-compose.yml file. The default value is http 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

  • Support arrays in location-history.json by @Freika in #109

Full Changelog: 0.8.3...0.8.4