Skip to content

Releases: Freika/dawarich

0.19.4

10 Dec 19:23
fc5a211
Compare
Choose a tag to compare

⚠️ 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 the GET /api/v1/photos endpoint now includes the orientation of the photo. Valid values are portrait and landscape.
  • Examples for the type, orientation and source fields in the GET /api/v1/photos endpoint in the Swagger UI.
  • DISABLE_TELEMETRY env var to disable telemetry. More on telemetry: https://dawarich.app/docs/tutorials/telemetry
  • reverse_geocoded_at column added to the points 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

New Contributors

Full Changelog: 0.19.3...0.19.4

0.19.3

06 Dec 16:50
2923a82
Compare
Choose a tag to compare

Changed

  • Refactored stats calculation to calculate only necessary stats, instead of calculating all stats
  • Stats are now being calculated every 1 hour instead of 6 hours
    The list of years on the Map page is now calculated based on users' points instead of stats. It's also being cached for one day because it's usually a heavy operation based on the number of points.
  • Reverse-geocoding points are now being performed in batches of 1,000 points to prevent memory exhaustion.

Added

  • In-app notification about telemetry being enabled.

💙 This release is supported by Steven B., James Manolios, chenrik and aldumil on Patreon 💙

What's Changed

Full Changelog: 0.19.2...0.19.3

0.19.2

05 Dec 16:52
81bb862
Compare
Choose a tag to compare

The Telemetry release

Dawarich now can collect usage metrics and send them to InfluxDB. Before this release, the only metrics that could be somehow tracked by developers (only @Freika, as of now) were the number of stars on GitHub and the overall number of docker images being pulled, across all versions of Dawarich, non-splittable by version. New in-app telemetry will allow us to track more granular metrics, allowing me to make decisions based on facts, not just guesses.

I'm aware about the privacy concerns, so I want to be very transparent about what data is being sent and how it's used.

Data being sent:

  • Number of DAU (Daily Active Users)
  • App version
  • Instance ID (unique identifier of the Dawarich instance built by hashing the api key of the first user in the database)

The data is being sent to a InfluxDB instance hosted by me and won't be shared with anyone.

Basically this set of metrics allows me to see how many people are using Dawarich and what versions they are using. No other data is being sent, nor it gives me any knowledge about individual users or their data or activity.

The telemetry is enabled by default, but it can be disabled by setting DISABLE_TELEMETRY env var to true. The dataset might change in the future, but any changes will be documented here in the changelog and in every release as well as on the telemetry page of the website docs.

Added

  • Telemetry feature. It's now collecting usage metrics and sending them to InfluxDB.

Fixed

  • Problem with importing Owntracks' .rec files (#476)

💙 This release is supported by Steven B., James Manolios, chenrik and aldumil on Patreon 💙

What's Changed

  • fix imports of owntracks .rec files containing log types other than events by @jduar in #476
  • Telemetry by @Freika in #488

New Contributors

Full Changelog: 0.19.1...0.19.2

0.19.1

04 Dec 14:01
057cc43
Compare
Choose a tag to compare

Fixed

  • Sidekiq is now being correctly exported to Prometheus with PROMETHEUS_EXPORTER_ENABLED=true env var in dawarich_sidekiq service.

💙 This release is supported by Steven B., James Manolios, chenrik and aldumil on Patreon 💙

What's Changed

  • Fix Prometheus exporter for Sidekiq by @Freika in #483

Full Changelog: 0.19.0...0.19.1

0.19.0

04 Dec 13:07
c2605ed
Compare
Choose a tag to compare

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

New Contributors

Full Changelog: 0.18.2...0.19.0

0.18.2

29 Nov 14:37
Compare
Choose a tag to compare

Added

  • Demo account. You can now login with [email protected] / password to see how Dawarich works. This replaces previous default credentials.

Changed

  • The login page now shows demo account credentials if DEMO_ENV env var is set to true.

💙 This release is supported by James Manolios, chenrik and aldumil on Patreon 💙

Full Changelog: 0.18.1...0.18.2

0.18.1

29 Nov 10:55
Compare
Choose a tag to compare

Fixed

  • Fixed a bug where the trips interface was breaking when Immich integration is not configured.

Added

  • Flash messages are now being shown on the map when Immich integration is not configured.

💙 This release is supported by James Manolios, chenrik and aldumil on Patreon 💙

Full Changelog: 0.18.0...0.18.1

0.18.0

28 Nov 17:00
d0c66b6
Compare
Choose a tag to compare

The Trips release

You can now create, edit and delete trips. To create a trip, click on the "New Trip" button on the Trips page. Provide a name, date and time for start and end of the trip. You can add your own notes to the trip as well.

If you have points tracked during provided timeframe, they will be automatically added to the trip and will be shown on the trip map.

Also, if you have Immich integrated, you will see photos from the trip on the trip page, along with a link to look at them on Immich.

Added

  • The Trips feature. Read above for more details.

Changed

  • Maps are now not so rough on the edges.
изображение изображение
trip-demo.mov

💙 This release is supported by James Manolios, chenrik and aldumil on Patreon 💙

What's Changed

Full Changelog: 0.17.2...0.18.0

0.17.2

27 Nov 15:47
cb1665d
Compare
Choose a tag to compare

Fixed

💙 This release is supported by James Manolios, chenrik and aldumil on Patreon 💙

What's Changed

  • Fix retrieving photos from Immich with timeframes by @Freika in #447

Full Changelog: 0.17.1...0.17.2

0.17.1

27 Nov 13:09
699a3de
Compare
Choose a tag to compare
0.17.1 Pre-release
Pre-release

Fixed

  • Retrieving photos from Immich now correctly handles cases when Immich returns no items. It also logs the response from Immich for debugging purposes.

💙 This release is supported by James Manolios, chenrik and aldumil on Patreon 💙

What's Changed

  • Add logging for Immich response with no items by @Freika in #446

Full Changelog: 0.17.0...0.17.1