[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)
This commit is contained in:
Ashil 2024-03-27 17:40:25 +05:30 committed by GitHub
parent 78b858ae7c
commit 79f7fb9ad9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 20 additions and 53 deletions

View file

@ -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!

View file

@ -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");

View file

@ -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<ChangeLogPage> {
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<ChangeLogPage> {
Widget _getChangeLog() {
final scrollController = ScrollController();
final List<ChangeLogEntry> 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! 🙏',
),