Skip to content

Commit

Permalink
Merge pull request #81 from droibit/hotfix/release_custom_tabs_plugin…
Browse files Browse the repository at this point in the history
…_v1.1.1

Release custom_tabs_plugin v1.1.1 (hotfix)
  • Loading branch information
droibit authored Sep 1, 2023
2 parents d0395a8 + 589b7e3 commit 7216aeb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions flutter_custom_tabs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.1

- Fixed a bug that handled results multiple times when opening a URL on Android.

## 1.1.0

- Added a manual close feature for SFSafariViewController on iOS([#67](https://github.com/droibit/flutter_custom_tabs/pull/67)).
Expand Down
2 changes: 1 addition & 1 deletion flutter_custom_tabs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add `flutter_custom_tabs` to the dependencies of your `pubspec.yaml`.

``` yaml
dependencies:
flutter_custom_tabs: ^1.1.0
flutter_custom_tabs: ^1.1.1
```
### Requirements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ public void onDetachedFromActivity() {
public void onMethodCall(@NonNull MethodCall call, @NonNull final MethodChannel.Result result) {
if ("launch".equals(call.method)) {
launch(((Map<String, Object>) call.arguments), result);
} if ("closeAllIfPossible".equals(call.method)) {
} else if ("closeAllIfPossible".equals(call.method)) {
closeAllIfPossible(result);
}else {
} else {
result.notImplemented();
}
}
Expand Down
2 changes: 1 addition & 1 deletion flutter_custom_tabs/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_custom_tabs
description: Flutter plugin for seamlessly displaying web content using Chrome Custom Tabs.
version: 1.1.0
version: 1.1.1
homepage: https://github.com/droibit/flutter_custom_tabs

environment:
Expand Down

0 comments on commit 7216aeb

Please sign in to comment.