Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
update version to 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adpinola committed Nov 22, 2022
1 parent 1dde438 commit 332d8dc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 deletions.
4 changes: 0 additions & 4 deletions packages/file_selector/file_selector_linux/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,3 @@
.flutter-plugins
.flutter-plugins-dependencies
pubspec.lock

# Linux specific
linux/CMakeFiles
linux/CMakeCache.txt
2 changes: 1 addition & 1 deletion packages/file_selector/file_selector_linux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.9.0+2
## 0.9.1

* Adds `getDirectoryPaths` implementation.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,9 @@ class GetMultipleDirectoriesPage extends StatelessWidget {
// Operation was canceled by the user.
return;
}
String paths = '';
for (final String? path in directoryPaths) {
paths += '${path!} \n';
}
await showDialog<void>(
context: context,
builder: (BuildContext context) => TextDisplay(paths),
builder: (BuildContext context) => TextDisplay(directoryPaths.join('\n')),
);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/file_selector/file_selector_linux/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: file_selector_linux
description: Liunx implementation of the file_selector plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_linux
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
version: 0.9.0+2
version: 0.9.1

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down

0 comments on commit 332d8dc

Please sign in to comment.