Skip to content

Releases: Freika/dawarich

0.8.3

04 Jul 21:07
47f3e55
Compare
Choose a tag to compare

Added

  • Notifications system. Now you will receive a notification when an import or export is finished, when stats update is completed and if any error occurs during any of these processes. Notifications are displayed in the top right corner of the screen and are stored in the database. You can see all your notifications on the Notifications page.
  • Swagger API docs for /api/v1/owntracks/points. You can find the API docs at /api-docs.

What's Changed

Full Changelog: 0.8.2...0.8.3

0.8.2

30 Jun 15:59
55004c7
Compare
Choose a tag to compare

Added

  • Google Takeout geodata, taken from a mobile devise, is now fully supported and can be imported to the Dawarich. The import process is the same as for other kinds of files, just select the JSON file and choose "Google Phone Takeout" as a source.

Fixed

  • Fixed a bug where an imported point was not being saved to the database if a point with the same timestamp and already existed in the database even if it was another user's point.

What's Changed

  • [0.8.2] Implement support for Google Phone Takeout import by @Freika in #94

Full Changelog: 0.8.1...0.8.2

0.8.1

30 Jun 10:59
ce0d7e3
Compare
Choose a tag to compare

Added

  • The first user in the system can now create new users from the Settings page. This is useful for creating new users without the need to enable registrations. The default password for new users is password.

Changed

  • Registrations are now disabled by default. On the initial setup, a default user with email user@domain.com and password password is created. You can change the password in the Settings page.
  • On the Imports page, now you can see the real number of points imported. Previously, this number might have not reflect the real number of points imported.

What's Changed

  • Docker doc by @djhrum in #84
  • Disable registration and implement user creation in the settings page by @Freika in #91

New Contributors

Full Changelog: 0.8.0...0.8.1

0.8.0

25 Jun 20:44
1fee34b
Compare
Choose a tag to compare

The Fog of War

fog_of_war.mov

Added

  • New Settings page to change Dawarich settings.
  • New "Fog of War" toggle on the map controls.
  • New "Fog of War meters" field in Settings. This field allows you to set the radius in meters around the point to be shown on the map. The map outside of this radius will be covered with a fog of war.

Changed

The order of points on the Points page is now descending by timestamp instead of ascending.

What's Changed

Full Changelog: 0.7.1...0.8.0

0.7.1

20 Jun 22:00
c86c305
Compare
Choose a tag to compare

In new Settings page you can now change the following settings:

  • Maximum distance between two points to consider them as one route
  • Maximum time between two points to consider them as one route

Added

  • New Settings page to change Dawarich settings.

Changed

  • Settings link in user menu now redirects to the new Settings page.
  • Old settings page is now available undeer Account link in user menu.

What's Changed

Full Changelog: 0.7.0...0.7.1

0.7.0

19 Jun 19:21
19e4e75
Compare
Choose a tag to compare

The GPX MVP Release

This release introduces support for GPX files to be imported. Now you can import GPX files from your devices to Dawarich. The import process is the same as for other kinds of files, just select the GPX file instead and choose "gpx" as a source. Both single-segmented and multi-segmented GPX files are supported.

⚠️ BREAKING CHANGES: ⚠️

  • /api/v1/points endpoint is removed. Please use /api/v1/owntracks/points endpoint to upload your points from OwnTracks mobile app instead.

Added

  • Support for GPX files to be imported.

Changed

  • Couple of unnecessary params were hidden from route popup and now can be shown using ?debug=true query parameter. This is useful for debugging purposes.

Removed

  • /exports/download endpoint is removed. Now you can download your exports directly from the Exports page.
  • /api/v1/points endpoint is removed.

What's Changed

Full Changelog: 0.6.4...0.7.0

0.6.4

18 Jun 20:11
Compare
Choose a tag to compare

Added

  • A link to Dawarich's website in the footer. It ain't much, but it's honest work.

Fixed

  • Fixed version badge in the navbar. Now it will show the correct version of the application.

Changed

  • Default map center location was changed.

0.6.3

14 Jun 18:17
Compare
Choose a tag to compare

This release fixes empty export

Full Changelog: 0.6.1...0.6.3

0.6.2

14 Jun 17:53
Compare
Choose a tag to compare
0.6.2 Pre-release
Pre-release

This is a debugging release. No changes were made to the application.

Full Changelog: 0.6.1...0.6.2

0.6.1

14 Jun 16:18
85510b5
Compare
Choose a tag to compare

⚠️ IMPORTANT: ⚠️

Please update your docker-compose.yml file to include the following changes:

  dawarich_sidekiq:
    image: freikin/dawarich:latest
    container_name: dawarich_sidekiq
    volumes:
      - gem_cache:/usr/local/bundle/gems
+     - public:/var/app/public

Added

  • Added a line with public volume to sidekiq's docker-compose service to allow sidekiq process to write to the public folder

Fixed

  • Fixed a bug where the export file was not being created in the public folder

Full Changelog: 0.6.0...0.6.1