From 79f7fb9ad9db72dfacb48dca658f19d7a07309af Mon Sep 17 00:00:00 2001 From: Ashil <77285023+ashilkn@users.noreply.github.com> Date: Wed, 27 Mar 2024 17:40:25 +0530 Subject: [PATCH] [mobile][photos] Update change log for v0.8.72 release (#1225) ## Description ![72 change log](https://github.com/ente-io/ente/assets/77285023/1a903668-76be-40d3-b00a-a0a7c7dfb66a) --- mobile/CHANGELOG.md | 30 +++++--------- mobile/lib/services/update_service.dart | 2 +- .../notification/update/change_log_page.dart | 41 ++++--------------- 3 files changed, 20 insertions(+), 53 deletions(-) diff --git a/mobile/CHANGELOG.md b/mobile/CHANGELOG.md index 445bb9147f..a4b33abdf4 100644 --- a/mobile/CHANGELOG.md +++ b/mobile/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## v0.8.72 +### Added +* #### Share an Album to Multiple Contacts at Once + + Adding multiple viewers and collaborators just got easier! + You can now select multiple contacts and add all of them at once. + +* #### 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! 🙏 + ## v0.8.67 @@ -85,22 +96,3 @@ If you would like to help us improve ente, come join the party @ ente.io/community! -## v0.7.71 - -### Added -* #### Map View ✨ - - You can now explore the photos you've taken around the world! - - Click on the Map icon on the Search screen to view your photos laid out on a map. - -* #### Cover Photos ✨ - You can now set cover photos for your albums. - - Open an album, and click on the overflow menu on the top right corner to pick your favorite memory from that album. - -### Improvements - -* **Translations**: Add support for German language -* This release contains massive improvements to how smoothly our gallery - scrolls. More improvements are on the way! diff --git a/mobile/lib/services/update_service.dart b/mobile/lib/services/update_service.dart index 759adaf428..156f0b6a8a 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 = 15; + static const currentChangeLogVersion = 16; 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 6ea2510f26..0160bf5504 100644 --- a/mobile/lib/ui/notification/update/change_log_page.dart +++ b/mobile/lib/ui/notification/update/change_log_page.dart @@ -1,5 +1,4 @@ import "dart:async"; -import "dart:io"; import 'package:flutter/material.dart'; import "package:photos/generated/l10n.dart"; @@ -85,22 +84,14 @@ class _ChangeLogPageState extends State { ButtonWidget( buttonType: ButtonType.trailingIconSecondary, buttonSize: ButtonSize.large, - // labelText: S.of(context).joinDiscord, - labelText: "Why we open sourced", - // icon: Icons.discord_outlined, - icon: Icons.rocket_rounded, + labelText: S.of(context).joinDiscord, + icon: Icons.discord_outlined, iconColor: enteColorScheme.primary500, onTap: () async { - // unawaited( - // launchUrlString( - // "https://discord.com/invite/z2YVKkycX3", - // mode: LaunchMode.externalApplication, - // ), - // ); unawaited( launchUrlString( - "https://ente.io/blog/open-sourcing-our-server/", - mode: LaunchMode.inAppBrowserView, + "https://discord.com/invite/z2YVKkycX3", + mode: LaunchMode.externalApplication, ), ); }, @@ -129,30 +120,14 @@ class _ChangeLogPageState extends State { Widget _getChangeLog() { final scrollController = ScrollController(); final List items = []; - if (Platform.isAndroid) { - items.add( - ChangeLogEntry( - "Home Widget ✨", - 'Introducing our new Android widget! Enjoy your favourite memories directly on your home screen.', - ), - ); - } items.addAll([ ChangeLogEntry( - "Redesigned Discovery Tab", - 'We\'ve given it a fresh new look for improved design and better visual separation between each section.', + "Share an Album to Multiple Contacts at Once", + 'Adding multiple viewers and collaborators just got easier!\n' + '\nYou can now select multiple contacts and add all of them at once.', ), ChangeLogEntry( - "Location Clustering ", - 'Now, see photos automatically organize into clusters around a radius of populated cities.', - ), - ChangeLogEntry( - "Ente is now fully Open Source!", - 'We took the final step in our open source journey.\n\n' - 'Our clients had always been open source. Now, we have released the source code for our servers.', - ), - ChangeLogEntry( - "Bug Fixes", + "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! 🙏', ),