Releases: Freika/dawarich
0.8.1
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 passwordpassword
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
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
- Bump pry-rails from 0.3.9 to 0.3.11 by @dependabot in #81
- Bump rspec-rails from 6.1.2 to 6.1.3 by @dependabot in #82
- Countries and cities revised by @Freika in #86
- Fog of war by @Freika in #87
Full Changelog: 0.7.1...0.8.0
0.7.1
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
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.
/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
0.6.3
This release fixes empty export
Full Changelog: 0.6.1...0.6.3
0.6.2
This is a debugging release. No changes were made to the application.
Full Changelog: 0.6.1...0.6.2
0.6.1
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
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. ℹ️
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
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
- Bump oj from 3.16.3 to 3.16.4 by @dependabot in #55
- Bump tailwindcss-rails from 2.6.0 to 2.6.1 by @dependabot in #56
- Bump sprockets-rails from 3.4.2 to 3.5.1 by @dependabot in #57
- Bump will_paginate from 4.0.0 to 4.0.1 by @dependabot in #58
- Bump rails from 7.1.3.3 to 7.1.3.4 by @dependabot in #59
Full Changelog: 0.5.2...0.5.3