Update change log
This commit is contained in:
parent
d76b537afd
commit
560866da29
4 changed files with 52 additions and 17 deletions
29
CHANGELOG.md
29
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
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -104,26 +104,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(
|
||||
"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,
|
||||
),
|
||||
);
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue