Update changelog

This commit is contained in:
Eugene Burmakin 2024-06-30 17:57:13 +02:00
parent 1dbf5cbda5
commit 02213d84b1
4 changed files with 17 additions and 6 deletions

View file

@ -1 +1 @@
0.8.1
0.8.2

View file

@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Google Takeout geodata, taken from a [mobile devise](https://support.google.com/maps/thread/264641290/export-full-location-timeline-data-in-json-or-similar-format-in-the-new-version-of-timeline?hl=en), 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 other user's point.
---
## [0.8.1] — 2024-06-30
### Added
- 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. Default password for new users is `password`.
### Changed

View file

@ -34,8 +34,7 @@ class GoogleMaps::PhoneTakeoutParser
import_id: import.id,
user_id:
)
rescue
binding.pry
points += 1
end

View file

@ -7,7 +7,7 @@
<div class="card bordered shadow-lg p-3 hover:shadow-blue-500/50">
<div class="form-control">
<label class="label cursor-pointer space-x-3">
<%= form.radio_button :source, 0, class: "radio radio-primary" %>
<%= form.radio_button :source, :google_semantic_history, class: "radio radio-primary" %>
<span class="label-text">Google Semantic History</span>
</label>
<p class="text-sm mt-2">JSON files from your Takeout/Location History/Semantic Location History/YEAR</p>
@ -25,7 +25,7 @@
<div class="card bordered shadow-lg p-3 hover:shadow-blue-500/50">
<div class="form-control">
<label class="label cursor-pointer space-x-3">
<%= form.radio_button :source, 3, class: "radio radio-primary" %>
<%= form.radio_button :source, :google_phone_takeout, class: "radio radio-primary" %>
<span class="label-text">Google Phone Takeout</span>
</label>
<p class="text-sm mt-2">A JSON file you received after your request for Takeout from your mobile device</p>
@ -34,7 +34,7 @@
<div class="card bordered shadow-lg p-3 hover:shadow-blue-500/50">
<div class="form-control">
<label class="label cursor-pointer space-x-3">
<%= form.radio_button :source, 4, class: "radio radio-primary" %>
<%= form.radio_button :source, :gpx, class: "radio radio-primary" %>
<span class="label-text">GPX</span>
</label>
<p class="text-sm mt-2">GPX track file</p>