Skip to content

Commit

Permalink
Merge pull request #1412 from ardriveapp/dev
Browse files Browse the repository at this point in the history
PE-4744: Release v2.19.1
  • Loading branch information
thiagocarvalhodev authored Oct 5, 2023
2 parents 955332a + 94f0e09 commit 2ce9e38
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions android/fastlane/metadata/android/en-US/changelogs/69.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixes the issue of new users not being able to upload after the first drive creation
5 changes: 3 additions & 2 deletions lib/utils/show_general_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ Future<void> showArDriveDialog(
required Widget content,
Color? barrierColor,
}) async {
context.read<ActivityTracker>().setShowingAnyDialog(true);
final activityTracker = context.read<ActivityTracker>();
activityTracker.setShowingAnyDialog(true);
return showAnimatedDialog(
context,
content: content,
barrierColor: barrierColor,
barrierDismissible: barrierDismissible,
).then((value) => context.read<ActivityTracker>().setShowingAnyDialog(false));
).then((value) => activityTracker.setShowingAnyDialog(false));
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Secure, permanent storage

publish_to: 'none'

version: 2.19.0
version: 2.19.1

environment:
sdk: '>=2.18.5 <3.0.0'
Expand Down

0 comments on commit 2ce9e38

Please sign in to comment.