⚠️ This release introduces a breaking change. ⚠️
The GET /api/v1/trips/:id/photos
endpoint now returns a different structure of the response:
{
id: 1,
latitude: 10,
longitude: 10,
localDateTime: "2024-01-01T00:00:00Z",
originalFileName: "photo.jpg",
city: "Berlin",
state: "Berlin",
country: "Germany",
type: "image",
+ orientation: "portrait",
source: "photoprism"
}
Fixed
- Fixed a bug where the Photoprism photos were not being shown on the trip page.
- Fixed a bug where the Immich photos were not being shown on the trip page.
- Fixed a bug where the route popup was showing distance in kilometers instead of miles. #490
Added
- A link to the Photoprism photos on the trip page if there are any.
- A
orientation
field in the Api::PhotoSerializer, hence theGET /api/v1/photos
endpoint now includes the orientation of the photo. Valid values areportrait
andlandscape
. - Examples for the
type
,orientation
andsource
fields in theGET /api/v1/photos
endpoint in the Swagger UI. DISABLE_TELEMETRY
env var to disable telemetry. More on telemetry: https://dawarich.app/docs/tutorials/telemetryreverse_geocoded_at
column added to thepoints
table.
Changed
- On the Stats page, the "Reverse geocoding" section is now showing the number of points that were reverse geocoded based on
reverse_geocoded_at
column, value of which is based on the time when the point was reverse geocoded. If no geodata for the point is available,reverse_geocoded_at
will be set anyway. Number of points that were reverse geocoded but no geodata is available for them is shown below the "Reverse geocoded" number.
💙 This release is supported by Steven B., James Manolios, chenrik and aldumil on Patreon 💙
What's Changed
- Bump prometheus_exporter from 2.1.1 to 2.2.0 by @dependabot in #508
- Add Source to thumbnail image. Perhabs a fix to #506 untested. by @tabacha in #507
- Update How_to_install_Dawarich_using_Docker.md by @rebelvg in #512
- Trips photoprism integration by @Freika in #518
- Add DISABLE_TELEMETRY env var to disable telemetry by @Freika in #519
- Update map popup to use configured distance unit by @whimsical-c4lic0 in #490
- Introduce reverse_geocoded_at to points by @Freika in #474
New Contributors
- @tabacha made their first contribution in #507
- @rebelvg made their first contribution in #512
- @whimsical-c4lic0 made their first contribution in #490
Full Changelog: 0.19.3...0.19.4