Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release custom_tabs_plugin v1.1.1 (hotfix) #81

Merged
merged 2 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading