0.19.0
版本发布时间: 2024-12-04 21:07:49
Freika/dawarich最新发布版本:0.22.3(2025-01-15 06:37:39)
The Photoprism integration release
⚠️ This release introduces a breaking change. ⚠️
The GET /api/v1/photos
endpoint now returns following structure of the response:
[
{
"id": "1",
"latitude": 11.22,
"longitude": 12.33,
"localDateTime": "2024-01-01T00:00:00Z",
"originalFileName": "photo.jpg",
"city": "Berlin",
"state": "Berlin",
"country": "Germany",
"type": "image", // "image" or "video"
"source": "photoprism" // "photoprism" or "immich"
}
]
Volumes in docker-compose.yml were renamed:
volumes:
- db_data:
- gem_cache:
- shared_data:
- public:
- watched:
+ dawarich_db_data:
+ dawarich_gem_cache_app:
+ dawarich_gem_cache_sidekiq:
+ dawarich_shared:
+ dawarich_public:
+ dawarich_watched:
For existing instances, there is no need renaming them.
Added
- Photos from Photoprism are now can be shown on the map. To enable this feature, you need to provide your Photoprism instance URL and API key in the Settings page. Then you need to enable "Photos" layer on the map (top right corner).
- Geodata is now can be imported from Photoprism to Dawarich. The "Import Photoprism data" button on the Imports page will start the import process.
Fixed
- z-index on maps so they won't overlay notifications dropdown
- Redis connectivity where it's not required
💙 This release is supported by Steven B., James Manolios, chenrik and aldumil on Patreon 💙
What's Changed
- Reset z-index on leaflet map by @poldixd in https://github.com/Freika/dawarich/pull/469
- Avoid Redis connectivity on initialization by @alexbarcelo in https://github.com/Freika/dawarich/pull/473
- Photoprism integration by @Freika in https://github.com/Freika/dawarich/pull/475
New Contributors
- @poldixd made their first contribution in https://github.com/Freika/dawarich/pull/469
- @alexbarcelo made their first contribution in https://github.com/Freika/dawarich/pull/473
Full Changelog: https://github.com/Freika/dawarich/compare/0.18.2...0.19.0