diff --git a/CHANGELOG.md b/CHANGELOG.md index 2905c5e..64a6790 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.4.0-beta.3 - 16/04/2024 + +- Fix the frequency of backups - if you are facing issues re-login in the app. + ## 2.4.0-beta.2 - 15/04/2024 - Fix config issue diff --git a/lib/utils/workmanager_helper.dart b/lib/utils/workmanager_helper.dart index 1fa66f8..c120126 100644 --- a/lib/utils/workmanager_helper.dart +++ b/lib/utils/workmanager_helper.dart @@ -70,7 +70,7 @@ void registerBackupWorkmanager() { Workmanager().registerPeriodicTask( "backup-task", "backup", - frequency: const Duration(minutes: 1), + frequency: const Duration(days: 1), initialDelay: startBackupAt.difference(now), backoffPolicy: BackoffPolicy.linear, backoffPolicyDelay: const Duration(seconds: 10), diff --git a/pubspec.yaml b/pubspec.yaml index ea2c56a..0e69be5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 2.4.0-beta.2+21 +version: 2.4.0-beta.3+22 environment: sdk: ">=3.3.0 <4.0.0" diff --git a/release_notes.txt b/release_notes.txt index 7662010..b1614cd 100644 --- a/release_notes.txt +++ b/release_notes.txt @@ -1,2 +1 @@ -- Improved backup and restore flows. -- Fixed a lot of bugs. \ No newline at end of file +Fix the frequency of backups - if you are facing issues re-login in the app. \ No newline at end of file