From daf33bcb3a216fe5bd2a5fa7507824ded4fcefcb Mon Sep 17 00:00:00 2001 From: ashilkn Date: Tue, 4 Feb 2025 18:03:53 +0530 Subject: [PATCH] [mob][photos] Update change log --- mobile/lib/services/update_service.dart | 2 +- .../ui/notification/update/change_log_page.dart | 16 +++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/mobile/lib/services/update_service.dart b/mobile/lib/services/update_service.dart index c94ebf96de..a8142d41d8 100644 --- a/mobile/lib/services/update_service.dart +++ b/mobile/lib/services/update_service.dart @@ -13,7 +13,7 @@ import 'package:url_launcher/url_launcher_string.dart'; class UpdateService { static const kUpdateAvailableShownTimeKey = "update_available_shown_time_key"; static const changeLogVersionKey = "update_change_log_key"; - static const currentChangeLogVersion = 25; + static const currentChangeLogVersion = 26; LatestVersionInfo? _latestVersion; final _logger = Logger("UpdateService"); diff --git a/mobile/lib/ui/notification/update/change_log_page.dart b/mobile/lib/ui/notification/update/change_log_page.dart index 363cbbd5b9..ebd970bf05 100644 --- a/mobile/lib/ui/notification/update/change_log_page.dart +++ b/mobile/lib/ui/notification/update/change_log_page.dart @@ -100,16 +100,18 @@ class _ChangeLogPageState extends State { final List items = []; items.addAll([ ChangeLogEntry( - "Advanced Search ✨", - "Filter down memories by adding suggested filters on search results, albums etc.", + "Deep Links", + "We have made public links even more powerful. Open links for Ente album directly in the app.\n\n" + "Join the album as a viewer or collaborator, and experience it like any other shared album.", ), ChangeLogEntry( - "Links in App ✨", - "Public links tapped from outside the app now opens in-app.", - ), + "Search Shared Files", + "Indexes will now be shared along with shared memories.\n\n" + "Which means you can now search for them using semantic search and label the people in shared photos. "), ChangeLogEntry( - "ML out of Beta ✨", - "ML feaures are now out of beta.", + "Link Contact with people", + "You dont have to deal with email addresses while sharing anymore.\n\n" + "Connect a contact with a face and name. Go to the contact or people section to get started.", ), ]);