From 61849349d16b7ca97cffb5abaf6d1fa5618c7ebb Mon Sep 17 00:00:00 2001 From: Thiago Carvalho <32248947+thiagocarvalhodev@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:50:35 -0300 Subject: [PATCH 1/3] sync arns in background --- lib/sync/domain/repositories/sync_repository.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/sync/domain/repositories/sync_repository.dart b/lib/sync/domain/repositories/sync_repository.dart index 1c95b81305..76a0c67e72 100644 --- a/lib/sync/domain/repositories/sync_repository.dart +++ b/lib/sync/domain/repositories/sync_repository.dart @@ -261,8 +261,9 @@ class _SyncRepository implements SyncRepository { .where((file) => metadataTxsFromSnapshots.contains(file.metadataTxId)) .map((file) => file.dataTxId) .toList(); - await _arnsRepository.waitForARNSRecordsToUpdate(); - await _arnsRepository.saveAllFilesWithAssignedNames(); + _arnsRepository + .waitForARNSRecordsToUpdate() + .then((value) => _arnsRepository.saveAllFilesWithAssignedNames()); await Future.wait( [ From b8bc3ac3c8e6ce820420a52031a31820d0a9096a Mon Sep 17 00:00:00 2001 From: Thiago Carvalho <32248947+thiagocarvalhodev@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:51:10 -0300 Subject: [PATCH 2/3] Update pubspec.yaml --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index e272479beb..d23c5993d4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: Secure, permanent storage publish_to: 'none' -version: 2.53.0 +version: 2.53.1 environment: sdk: '>=3.2.0 <4.0.0' From 277ddfb0ad82035fb3d65098a33105859be996dd Mon Sep 17 00:00:00 2001 From: Thiago Carvalho <32248947+thiagocarvalhodev@users.noreply.github.com> Date: Wed, 11 Sep 2024 14:44:47 -0300 Subject: [PATCH 3/3] bump version and release notes --- android/fastlane/metadata/android/en-US/changelogs/150.txt | 1 + pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 android/fastlane/metadata/android/en-US/changelogs/150.txt diff --git a/android/fastlane/metadata/android/en-US/changelogs/150.txt b/android/fastlane/metadata/android/en-US/changelogs/150.txt new file mode 100644 index 0000000000..98cbdf1a2f --- /dev/null +++ b/android/fastlane/metadata/android/en-US/changelogs/150.txt @@ -0,0 +1 @@ + - Improved upload flow styling diff --git a/pubspec.yaml b/pubspec.yaml index d23c5993d4..e847326136 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: Secure, permanent storage publish_to: 'none' -version: 2.53.1 +version: 2.54.0 environment: sdk: '>=3.2.0 <4.0.0'