Skip to content

Commit

Permalink
released 6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pichillilorenzo committed Sep 26, 2024
1 parent a702812 commit 2d51e4a
Show file tree
Hide file tree
Showing 15 changed files with 45 additions and 14 deletions.
6 changes: 6 additions & 0 deletions flutter_inappwebview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 6.1.1

- Updated README
- Updated pubspec.yaml
- Updated minimum platform implementation versions

## 6.1.0+1

- Updated README
Expand Down
14 changes: 7 additions & 7 deletions flutter_inappwebview/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_inappwebview
description: A Flutter plugin that allows you to add an inline webview, to use an headless webview, and to open an in-app browser window.
version: 6.1.0+1
version: 6.1.1
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
Expand All @@ -20,12 +20,12 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_inappwebview_platform_interface: ^1.1.0
flutter_inappwebview_android: ^1.1.0
flutter_inappwebview_ios: ^1.1.0
flutter_inappwebview_macos: ^1.1.0
flutter_inappwebview_web: ^1.1.0
flutter_inappwebview_windows: ^0.1.0
flutter_inappwebview_platform_interface: ^1.1.0+1
flutter_inappwebview_android: ^1.1.0+3
flutter_inappwebview_ios: ^1.1.0+2
flutter_inappwebview_macos: ^1.1.0+2
flutter_inappwebview_web: ^1.1.0+1
flutter_inappwebview_windows: ^0.2.0

dev_dependencies:
flutter_test:
Expand Down
8 changes: 8 additions & 0 deletions flutter_inappwebview_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## ## 1.1.0+3

- Fixed compilation error

## ## 1.1.0+2

- Updated pubspec.yaml

## 1.1.0+1

- Downgraded androidx.appcompat:appcompat:1.7.0 to androidx.appcompat:appcompat:1.6.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class AndroidStorageCreationParams extends PlatformStorageCreationParams {
}

///{@macro flutter_inappwebview_platform_interface.PlatformStorage}
abstract class AndroidStorage implements PlatformStorage {
abstract mixin class AndroidStorage implements PlatformStorage {
@override
AndroidInAppWebViewController? controller;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class AndroidPathHandlerCreationParams
}

///{@macro flutter_inappwebview_platform_interface.PlatformPathHandler}
abstract class AndroidPathHandler
abstract mixin class AndroidPathHandler
implements ChannelController, PlatformPathHandler {
final String _id = IdGenerator.generate();

Expand Down
2 changes: 1 addition & 1 deletion flutter_inappwebview_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_inappwebview_android
description: Android implementation of the flutter_inappwebview plugin.
version: 1.1.0+1
version: 1.1.0+3
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_android
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
Expand Down
4 changes: 4 additions & 0 deletions flutter_inappwebview_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## ## 1.1.0+2

- Updated pubspec.yaml

## 1.1.0+1

- Fixed "v6.1.0 fails to compile on Xcode 15" [#2288](https://github.com/pichillilorenzo/flutter_inappwebview/issues/2288)
Expand Down
2 changes: 1 addition & 1 deletion flutter_inappwebview_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_inappwebview_ios
description: iOS implementation of the flutter_inappwebview plugin.
version: 1.1.0+1
version: 1.1.0+2
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_ios
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
Expand Down
4 changes: 4 additions & 0 deletions flutter_inappwebview_macos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## ## 1.1.0+2

- Updated pubspec.yaml

## 1.1.0+1

- Fixed "v6.1.0 fails to compile on Xcode 15" [#2288](https://github.com/pichillilorenzo/flutter_inappwebview/issues/2288)
Expand Down
2 changes: 1 addition & 1 deletion flutter_inappwebview_macos/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_inappwebview_macos
description: macOS implementation of the flutter_inappwebview plugin.
version: 1.1.0+1
version: 1.1.0+2
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_macos
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
Expand Down
4 changes: 4 additions & 0 deletions flutter_inappwebview_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## ## 1.1.0+1

- Updated docs and pubspec.yaml

## 1.1.0

- Added `PlatformWebViewEnvironment` class
Expand Down
2 changes: 1 addition & 1 deletion flutter_inappwebview_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_inappwebview_platform_interface
description: A common platform interface for the flutter_inappwebview plugin.
version: 1.1.0
version: 1.1.0+1
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_platform_interface
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
Expand Down
4 changes: 4 additions & 0 deletions flutter_inappwebview_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## ## 1.1.0+1

- Updated pubspec.yaml

## 1.1.0

- Migrates package to `package:web`.
Expand Down
2 changes: 1 addition & 1 deletion flutter_inappwebview_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_inappwebview_web
description: Web implementation of the flutter_inappwebview plugin.
version: 1.1.0
version: 1.1.0+1
homepage: https://inappwebview.dev/
repository: https://github.com/pichillilorenzo/flutter_inappwebview/tree/master/flutter_inappwebview_web
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
Expand Down
1 change: 1 addition & 0 deletions flutter_inappwebview_windows/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Added support for keeping alive InAppWebView widgets
- Added onProgressChanged, onCreateWindow, onCloseWindow support
- Updated Microsoft.Web.WebView2 SDK version from `1.0.2210.55` to `1.0.2792.45`
- Updated pubspec.yaml
- Fixed `CookieManager.setCookie`

## 0.1.0
Expand Down

0 comments on commit 2d51e4a

Please # to comment.