Update change log

This commit is contained in:
ashilkn 2024-04-01 18:41:21 +05:30
parent 841921a732
commit 166e9ad1bf
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# CHANGELOG
## v0.8.72
## v0.8.73
### Added
* #### Share an Album to Multiple Contacts at Once
@ -9,7 +9,7 @@
* #### 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! 🙏
Many a bugs were squashed in this release and have improved performance on app start. If you run into any bugs, please write to team@ente.io, or let us know on Discord! 🙏
## v0.8.67

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 = 16;
static const currentChangeLogVersion = 17;
LatestVersionInfo? _latestVersion;
final _logger = Logger("UpdateService");

View file

@ -128,8 +128,8 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
),
ChangeLogEntry(
"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! 🙏',
'Many a bugs were squashed in this release and have improved performance on app start.\n'
'\nIf you run into any bugs, please write to team@ente.io, or let us know on Discord! 🙏',
),
]);