Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Update change log (#1331)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashilkn authored Aug 22, 2023
2 parents 704bd76 + de6555e commit 14b1d4c
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 14 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

You can opt in / out of email verification 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
Expand Down
2 changes: 1 addition & 1 deletion lib/services/update_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
40 changes: 28 additions & 12 deletions lib/ui/notification/update/change_log_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,21 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
const SizedBox(
height: 8,
),
// ButtonWidget(
// buttonType: ButtonType.trailingIconSecondary,
// buttonSize: ButtonSize.large,
// labelText: S.of(context).rateTheApp,
// icon: Icons.favorite_rounded,
// iconColor: enteColorScheme.primary500,
// onTap: () async {
// await UpdateService.instance.launchReviewUrl();
// },
// ),
ButtonWidget(
buttonType: ButtonType.trailingIconSecondary,
buttonSize: ButtonSize.large,
labelText: S.of(context).rateTheApp,
icon: Icons.favorite_rounded,
labelText: "Join the ente community",
icon: Icons.people_alt_rounded,
iconColor: enteColorScheme.primary500,
onTap: () async {
await UpdateService.instance.launchReviewUrl();
Expand All @@ -104,26 +114,32 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
final List<ChangeLogEntry> 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(
"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.',
"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'
'\nYou can opt in / out of email verification from Settings > Security.\n',
),
);

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 ente community!',
isFeature: false,
),
);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 14b1d4c

Please sign in to comment.