Skip to content

Releases: Freika/dawarich

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 [email protected] 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

0.6.0

12 Jun 19:15
3875429
Compare
Choose a tag to compare

Added

  • Exports page to list existing exports download them or delete them

Changed

  • Exporting process now is done in the background, so user can close the browser tab and come back later to download the file. The status of the export can be checked on the Exports page.

ℹ️ Deleting Export file will only delete the file, not the points in the database. ℹ️

⚠️ BREAKING CHANGES: ⚠️

Volume, exposed to the host machine for placing files to import was changed. See the changes below.

Path for placing files to import was changed from tmp/imports to public/imports.

  ...

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

  ...
  ...

volumes:
  db_data:
  gem_cache:
  shared_data:
- tmp:
+ public:

What's Changed

Full Changelog: 0.5.3...0.6.0

0.5.3

10 Jun 20:50
Compare
Choose a tag to compare

Added

  • A data migration to remove points with 0.0, 0.0 coordinates. This is necessary to prevent errors when calculating distance in Stats page.

Fixed

  • Reworked code responsible for importing "Records.json" file from Google Takeout. Now it is more reliable and faster, and should not throw as many errors as before.

What's Changed

Full Changelog: 0.5.2...0.5.3