diff --git a/CHANGELOG.md b/CHANGELOG.md index 9184f1d0b..9b9df9bb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # CHANGELOG + +## v0.7.82 + +### Added +* #### Hidden albums + + You can now hide albums, just like individual memories. + +* #### Album improvements + + You can now pin your favourite albums, and set cover photos for them. + + We have also added a way to first create empty albums, and then add photos to it, both from ente and your device gallery. + + +* #### Email verification + + We have now made email verification optional, so you can sign in with just your email address and password, without waiting for a verification code. + + If you would still like to enforce email verification, you can opt-in from Settings > Security. + + +* #### Bug fixes & other enhancements + + We have squashed a few pesky bugs that were reported by our community, and have improved the experience for albums and quick links. + + If you would like to help us improve ente, come join the party @ ente.io/community! + + ## v0.7.71 ### Added diff --git a/lib/services/update_service.dart b/lib/services/update_service.dart index 0ffd9e348..9af7c7045 100644 --- a/lib/services/update_service.dart +++ b/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 = 11; + static const currentChangeLogVersion = 12; LatestVersionInfo? _latestVersion; final _logger = Logger("UpdateService"); diff --git a/lib/ui/notification/update/change_log_page.dart b/lib/ui/notification/update/change_log_page.dart index a36e543fe..76f46111f 100644 --- a/lib/ui/notification/update/change_log_page.dart +++ b/lib/ui/notification/update/change_log_page.dart @@ -104,26 +104,32 @@ class _ChangeLogPageState extends State { final List items = []; items.add( ChangeLogEntry( - "Map View ✨", - 'You can now explore the photos you\'ve taken around the world!!\n' - '\nClick on the Map icon on the Search screen to view your photos' - ' laid out on a map.', + "Hidden albums ✨", + 'You can now hide albums, just like individual memories.\n', + ), + ); + items.add( + ChangeLogEntry( + "Album improvements ✨", + 'You can now pin your favourite albums, and set cover photos for them.\n' + '\nWe have also added a way to first create empty albums, and then add photos to it, both from ente and your device gallery.\n'), + ); + + items.add( + ChangeLogEntry( + "Email verification ✨", + 'We have now made email verification optional, so you can sign in with' + ' just your email address and password, without waiting for a verification code.\n' + '\nIf you would still like to enforce email verification, you can opt-in from Settings > Security.\n', ), ); items.add( ChangeLogEntry( - "Cover Photos ✨", - 'You can now set cover photos for your albums.\n\nOpen an album, and ' - 'click on the overflow menu on the top right corner to pick your favorite memory from that album.', - ), - ); - - items.add( - ChangeLogEntry( - "Improvements", - "This release contains massive improvements to how smoothly our " - "gallery scrolls. More improvements are on the way!", + "Bug fixes & other enhancements", + 'We have squashed a few pesky bugs that were reported by our community,' + 'and have improved the experience for albums and quick links.\n' + '\nIf you would like to help us improve ente, come join the party @ ente.io/community!\n', isFeature: false, ), ); diff --git a/pubspec.yaml b/pubspec.yaml index e82febbcf..c495e57ca 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -12,7 +12,7 @@ description: ente photos application # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 0.7.81+481 +version: 0.7.82+482 environment: sdk: ">=3.0.0 <4.0.0"