0.13.0
版本发布时间: 2024-09-04 00:24:13
Freika/dawarich最新发布版本:0.13.0(2024-09-04 00:24:13)
The GPX and GeoJSON export release
⚠️ BREAKING CHANGES: ⚠️
Default exporting format is now GeoJSON instead of Owntracks-like JSON. This will allow you to use the exported data in other applications that support GeoJSON format. It's also important to highlight, that GeoJSON format does not describe a way to store any time-related data. Dawarich relies on the timestamp
field in the GeoJSON format to determine the time of the point. The value of the timestamp
field should be a Unix timestamp in seconds. If you import GeoJSON data that does not have a timestamp
field, the point will not be imported.
Example of a valid point in GeoJSON format:
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [13.350110811262352, 52.51450815]
},
"properties": {
"timestamp": 1725310036
}
}
Added
- GeoJSON format is now available for exporting data.
- GPX format is now available for exporting data.
- Importing GeoJSON is now available.
Changed
- Default exporting format is now GeoJSON instead of Owntracks-like JSON. This will allow you to use the exported data in other applications that support GeoJSON format.
Fixed
- Fixed a bug where the confirmation alert was shown more than once when deleting a point.
💙 This release is supported by James Manolios on Patreon 💙
What's Changed
- Export to GPX by @Freika in https://github.com/Freika/dawarich/pull/209
Full Changelog: https://github.com/Freika/dawarich/compare/0.12.3...0.13.0