From b9044c30a6a669e7883b6196a08057698ee8161e Mon Sep 17 00:00:00 2001 From: Miguel Ruivo Date: Sat, 13 Jun 2020 14:20:20 +0100 Subject: [PATCH] Updates README and removes CI custom script --- codemagic.yaml | 28 ---------------------------- file_picker/CHANGELOG.md | 6 ++++++ file_picker/README.md | 6 +++--- file_picker/pubspec.yaml | 2 +- 4 files changed, 10 insertions(+), 32 deletions(-) delete mode 100644 codemagic.yaml diff --git a/codemagic.yaml b/codemagic.yaml deleted file mode 100644 index 8558f15..0000000 --- a/codemagic.yaml +++ /dev/null @@ -1,28 +0,0 @@ - -workflows: - my-workflow: - name: Build example app - environment: - flutter: stable - xcode: latest - cache: - cache_paths: - - ~/.pub-cache - triggering: - events: - - push - branch_patterns: - - pattern: '*' - include: true - source: true - scripts: - - | - # Build iOS & Android - - cd file_picker/example - flutter packages pub get - flutter analyze - flutter test - find . -name "Podfile" -execdir pod install \; - flutter build apk --debug - flutter build ios --debug --no-codesign \ No newline at end of file diff --git a/file_picker/CHANGELOG.md b/file_picker/CHANGELOG.md index 8481d88..2a4309a 100644 --- a/file_picker/CHANGELOG.md +++ b/file_picker/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.11.0+2 +Updates README file (iOS preview). + +## 1.11.0+1 +Updates README file. + ## 1.11.0 Adds `onFileLoading` handler for every picking method that will provide picking status: `FilePickerStatus.loading` and `FilePickerStatus.done` so you can, for example, display a custom loader. diff --git a/file_picker/README.md b/file_picker/README.md index 78096ae..74ee6c3 100644 --- a/file_picker/README.md +++ b/file_picker/README.md @@ -7,7 +7,7 @@ Awesome Flutter - Build Status + Build Status Buy me a coffee @@ -70,8 +70,8 @@ List files = await FilePicker.getMultiFile(); For full usage details refer to the **[Wiki](https://github.com/miguelpruivo/flutter_file_picker/wiki)** above. ## Example App -![Demo](https://github.com/miguelpruivo/plugins_flutter_file_picker/blob/master/example/example.gif) -![DemoMultiFilters](https://github.com/miguelpruivo/plugins_flutter_file_picker/blob/master/example/example_ios.gif) +![Demo](https://github.com/miguelpruivo/flutter_file_picker/blob/master/file_picker/example/example.gif) +![DemoMultiFilters](https://github.com/miguelpruivo/flutter_file_picker/blob/master/file_picker/example/example_ios.gif) ## Getting Started diff --git a/file_picker/pubspec.yaml b/file_picker/pubspec.yaml index c6a6c1b..27da673 100644 --- a/file_picker/pubspec.yaml +++ b/file_picker/pubspec.yaml @@ -1,7 +1,7 @@ name: file_picker description: A package that allows you to use a native file explorer to pick single or multiple absolute file paths, with extension filtering support. homepage: https://github.com/miguelpruivo/plugins_flutter_file_picker -version: 1.11.0 +version: 1.11.0+2 dependencies: flutter: