From 166e9ad1bfded24ea74ac11524e818282f049525 Mon Sep 17 00:00:00 2001 From: ashilkn Date: Mon, 1 Apr 2024 18:41:21 +0530 Subject: [PATCH] Update change log --- mobile/CHANGELOG.md | 4 ++-- mobile/lib/services/update_service.dart | 2 +- mobile/lib/ui/notification/update/change_log_page.dart | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mobile/CHANGELOG.md b/mobile/CHANGELOG.md index a4b33abdf..167b65b6e 100644 --- a/mobile/CHANGELOG.md +++ b/mobile/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## v0.8.72 +## v0.8.73 ### Added * #### Share an Album to Multiple Contacts at Once @@ -9,7 +9,7 @@ * #### Bug Fixes and Performance Improvements - Many a bugs were squashed in this release. If you run into any, please write to team@ente.io, or let us know on Discord! 🙏 + Many a bugs were squashed in this release and have improved performance on app start. If you run into any bugs, please write to team@ente.io, or let us know on Discord! 🙏 ## v0.8.67 diff --git a/mobile/lib/services/update_service.dart b/mobile/lib/services/update_service.dart index 156f0b6a8..21a2c59bc 100644 --- a/mobile/lib/services/update_service.dart +++ b/mobile/lib/services/update_service.dart @@ -16,7 +16,7 @@ class UpdateService { static final UpdateService instance = UpdateService._privateConstructor(); static const kUpdateAvailableShownTimeKey = "update_available_shown_time_key"; static const changeLogVersionKey = "update_change_log_key"; - static const currentChangeLogVersion = 16; + static const currentChangeLogVersion = 17; 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 0160bf550..8cf629cd6 100644 --- a/mobile/lib/ui/notification/update/change_log_page.dart +++ b/mobile/lib/ui/notification/update/change_log_page.dart @@ -128,8 +128,8 @@ class _ChangeLogPageState extends State { ), ChangeLogEntry( "Bug Fixes and Performance Improvements", - 'Many a bugs were squashed in this release.\n' - '\nIf you run into any, please write to team@ente.io, or let us know on Discord! 🙏', + 'Many a bugs were squashed in this release and have improved performance on app start.\n' + '\nIf you run into any bugs, please write to team@ente.io, or let us know on Discord! 🙏', ), ]);