From a17ca9d0b8d8d98b53c6759768f1df4d0a058984 Mon Sep 17 00:00:00 2001 From: Lorenzo Pichilli Date: Wed, 2 Oct 2024 14:46:17 +0200 Subject: [PATCH] released 6.1.4 --- README.md | 13 +++++++------ flutter_inappwebview/CHANGELOG.md | 16 ++++++++++++++++ flutter_inappwebview/README.md | 13 +++++++------ flutter_inappwebview/pubspec.yaml | 14 +++++++------- flutter_inappwebview_android/CHANGELOG.md | 4 ++++ .../example/pubspec.lock | 6 +++--- flutter_inappwebview_android/pubspec.yaml | 4 ++-- flutter_inappwebview_ios/CHANGELOG.md | 4 ++++ flutter_inappwebview_ios/example/pubspec.lock | 6 +++--- flutter_inappwebview_ios/pubspec.yaml | 4 ++-- flutter_inappwebview_macos/CHANGELOG.md | 4 ++++ flutter_inappwebview_macos/example/pubspec.lock | 6 +++--- flutter_inappwebview_macos/pubspec.yaml | 4 ++-- flutter_inappwebview_web/CHANGELOG.md | 4 ++++ flutter_inappwebview_web/example/pubspec.lock | 6 +++--- flutter_inappwebview_web/pubspec.yaml | 4 ++-- .../example/pubspec.lock | 6 +++--- flutter_inappwebview_windows/pubspec.yaml | 2 +- 18 files changed, 77 insertions(+), 43 deletions(-) diff --git a/README.md b/README.md index 178b551c0..fe2d03493 100755 --- a/README.md +++ b/README.md @@ -57,17 +57,18 @@ Send a submission request to the [Submit App](https://inappwebview.dev/submit-ap - Android: `minSdkVersion >= 19`, `compileSdk >= 34`, [AGP](https://developer.android.com/build/releases/gradle-plugin) version `>= 7.3.0` (use [Android Studio - Android Gradle plugin Upgrade Assistant](https://developer.android.com/build/agp-upgrade-assistant) for help), support for `androidx` (see [AndroidX Migration](https://flutter.dev/docs/development/androidx-migration) to migrate an existing app) - iOS 12.0+: `--ios-language swift`, Xcode version `>= 15.0` - MacOS 10.14+: Xcode version `>= 15.0` +- Windows: [NuGet CLI](https://learn.microsoft.com/en-us/nuget/install-nuget-client-tools?tabs=windows#nugetexe-cli) available on your PATH environment variable ## Installation Add `flutter_inappwebview` as a [dependency in your pubspec.yaml file](https://flutter.io/using-packages/). -### Platform installation setup: -- Android: https://inappwebview.dev/docs/intro/#setup-android -- iOS: https://inappwebview.dev/docs/intro/#setup-ios -- macOS: https://inappwebview.dev/docs/intro/#setup-macos -- Windows: https://inappwebview.dev/docs/intro/#setup-windows -- Web: https://inappwebview.dev/docs/intro/#setup-web +### Platform Installation Setup: +- [Android](https://inappwebview.dev/docs/intro/#setup-android) +- [iOS](https://inappwebview.dev/docs/intro/#setup-ios) +- [macOS](https://inappwebview.dev/docs/intro/#setup-macos) +- [Windows](https://inappwebview.dev/docs/intro/#setup-windows) +- [Web](https://inappwebview.dev/docs/intro/#setup-web) ## Support diff --git a/flutter_inappwebview/CHANGELOG.md b/flutter_inappwebview/CHANGELOG.md index 1c82efae3..c74465f00 100755 --- a/flutter_inappwebview/CHANGELOG.md +++ b/flutter_inappwebview/CHANGELOG.md @@ -1,3 +1,19 @@ +## 6.1.4 + +- Updated dependencies to the latest versions for all platform implementations: + - `flutter_inappwebview_platform_interface`: `^1.2.0` -> `^1.3.0` + - `flutter_inappwebview_android`: `^1.1.1` -> `^1.1.3` + - `flutter_inappwebview_ios`: `^1.1.1` -> `^1.1.2` + - `flutter_inappwebview_macos`: `^1.1.1` -> `^1.1.2` + - `flutter_inappwebview_web`: `^1.1.1` -> `^1.1.2` + - `flutter_inappwebview_windows`: `^0.4.0` -> `^0.5.0` + +#### Android Platform +- Removed webview/plugin_scripts_js/ConsoleLogJS.java file, use native WebChromeClient.onConsoleMessage instead + +#### Windows Platform +- Implemented `shouldInterceptRequest`, `onLoadResourceWithCustomScheme` WebView events + ## 6.1.3 - Updated dependencies to the latest versions for all platform implementations: diff --git a/flutter_inappwebview/README.md b/flutter_inappwebview/README.md index 178b551c0..fe2d03493 100755 --- a/flutter_inappwebview/README.md +++ b/flutter_inappwebview/README.md @@ -57,17 +57,18 @@ Send a submission request to the [Submit App](https://inappwebview.dev/submit-ap - Android: `minSdkVersion >= 19`, `compileSdk >= 34`, [AGP](https://developer.android.com/build/releases/gradle-plugin) version `>= 7.3.0` (use [Android Studio - Android Gradle plugin Upgrade Assistant](https://developer.android.com/build/agp-upgrade-assistant) for help), support for `androidx` (see [AndroidX Migration](https://flutter.dev/docs/development/androidx-migration) to migrate an existing app) - iOS 12.0+: `--ios-language swift`, Xcode version `>= 15.0` - MacOS 10.14+: Xcode version `>= 15.0` +- Windows: [NuGet CLI](https://learn.microsoft.com/en-us/nuget/install-nuget-client-tools?tabs=windows#nugetexe-cli) available on your PATH environment variable ## Installation Add `flutter_inappwebview` as a [dependency in your pubspec.yaml file](https://flutter.io/using-packages/). -### Platform installation setup: -- Android: https://inappwebview.dev/docs/intro/#setup-android -- iOS: https://inappwebview.dev/docs/intro/#setup-ios -- macOS: https://inappwebview.dev/docs/intro/#setup-macos -- Windows: https://inappwebview.dev/docs/intro/#setup-windows -- Web: https://inappwebview.dev/docs/intro/#setup-web +### Platform Installation Setup: +- [Android](https://inappwebview.dev/docs/intro/#setup-android) +- [iOS](https://inappwebview.dev/docs/intro/#setup-ios) +- [macOS](https://inappwebview.dev/docs/intro/#setup-macos) +- [Windows](https://inappwebview.dev/docs/intro/#setup-windows) +- [Web](https://inappwebview.dev/docs/intro/#setup-web) ## Support diff --git a/flutter_inappwebview/pubspec.yaml b/flutter_inappwebview/pubspec.yaml index e69c66d4a..35b7f83d5 100755 --- a/flutter_inappwebview/pubspec.yaml +++ b/flutter_inappwebview/pubspec.yaml @@ -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.3 +version: 6.1.4 homepage: https://inappwebview.dev/ repository: https://github.com/pichillilorenzo/flutter_inappwebview issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues @@ -20,12 +20,12 @@ environment: dependencies: flutter: sdk: flutter - flutter_inappwebview_platform_interface: ^1.2.0 - flutter_inappwebview_android: ^1.1.1 - flutter_inappwebview_ios: ^1.1.1 - flutter_inappwebview_macos: ^1.1.1 - flutter_inappwebview_web: ^1.1.1 - flutter_inappwebview_windows: ^0.4.0 + flutter_inappwebview_platform_interface: ^1.3.0 + flutter_inappwebview_android: ^1.1.3 + flutter_inappwebview_ios: ^1.1.2 + flutter_inappwebview_macos: ^1.1.2 + flutter_inappwebview_web: ^1.1.2 + flutter_inappwebview_windows: ^0.5.0 dev_dependencies: flutter_test: diff --git a/flutter_inappwebview_android/CHANGELOG.md b/flutter_inappwebview_android/CHANGELOG.md index 57982ec88..3170f86a5 100644 --- a/flutter_inappwebview_android/CHANGELOG.md +++ b/flutter_inappwebview_android/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.3 + +- Updated flutter_inappwebview_platform_interface version to ^1.3.0 + ## 1.1.2 - Removed webview/plugin_scripts_js/ConsoleLogJS.java file, use native WebChromeClient.onConsoleMessage instead diff --git a/flutter_inappwebview_android/example/pubspec.lock b/flutter_inappwebview_android/example/pubspec.lock index 501276843..8603227e7 100644 --- a/flutter_inappwebview_android/example/pubspec.lock +++ b/flutter_inappwebview_android/example/pubspec.lock @@ -81,7 +81,7 @@ packages: path: ".." relative: true source: path - version: "1.1.0+3" + version: "1.1.3" flutter_inappwebview_internal_annotations: dependency: transitive description: @@ -94,10 +94,10 @@ packages: dependency: transitive description: name: flutter_inappwebview_platform_interface - sha256: da6c7bf193beba655bdfcd825b6c7f7b51da4944e1eb76bf9faddf685ca15fa2 + sha256: "6862f4e08aa8f6136762e022c9c1edafb18c1dc3beb03052f2f3f2a48605a182" url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.3.0" flutter_lints: dependency: "direct dev" description: diff --git a/flutter_inappwebview_android/pubspec.yaml b/flutter_inappwebview_android/pubspec.yaml index 17b03e9e9..912f92eef 100644 --- a/flutter_inappwebview_android/pubspec.yaml +++ b/flutter_inappwebview_android/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_inappwebview_android description: Android implementation of the flutter_inappwebview plugin. -version: 1.1.2 +version: 1.1.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 @@ -20,7 +20,7 @@ environment: dependencies: flutter: sdk: flutter - flutter_inappwebview_platform_interface: ^1.2.0 + flutter_inappwebview_platform_interface: ^1.3.0 dev_dependencies: flutter_test: diff --git a/flutter_inappwebview_ios/CHANGELOG.md b/flutter_inappwebview_ios/CHANGELOG.md index c96d13c76..60e2bffdb 100644 --- a/flutter_inappwebview_ios/CHANGELOG.md +++ b/flutter_inappwebview_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.2 + +- Updated flutter_inappwebview_platform_interface version to ^1.3.0 + ## 1.1.1 - Updated flutter_inappwebview_platform_interface version to ^1.2.0 diff --git a/flutter_inappwebview_ios/example/pubspec.lock b/flutter_inappwebview_ios/example/pubspec.lock index 09a660c49..2eb184fac 100644 --- a/flutter_inappwebview_ios/example/pubspec.lock +++ b/flutter_inappwebview_ios/example/pubspec.lock @@ -89,15 +89,15 @@ packages: path: ".." relative: true source: path - version: "1.1.0+3" + version: "1.1.2" flutter_inappwebview_platform_interface: dependency: transitive description: name: flutter_inappwebview_platform_interface - sha256: da6c7bf193beba655bdfcd825b6c7f7b51da4944e1eb76bf9faddf685ca15fa2 + sha256: "6862f4e08aa8f6136762e022c9c1edafb18c1dc3beb03052f2f3f2a48605a182" url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.3.0" flutter_lints: dependency: "direct dev" description: diff --git a/flutter_inappwebview_ios/pubspec.yaml b/flutter_inappwebview_ios/pubspec.yaml index bc642819a..06afb905a 100644 --- a/flutter_inappwebview_ios/pubspec.yaml +++ b/flutter_inappwebview_ios/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_inappwebview_ios description: iOS implementation of the flutter_inappwebview plugin. -version: 1.1.1 +version: 1.1.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 @@ -20,7 +20,7 @@ environment: dependencies: flutter: sdk: flutter - flutter_inappwebview_platform_interface: ^1.2.0 + flutter_inappwebview_platform_interface: ^1.3.0 dev_dependencies: flutter_test: diff --git a/flutter_inappwebview_macos/CHANGELOG.md b/flutter_inappwebview_macos/CHANGELOG.md index 5e9ac83fd..7bd1ae744 100644 --- a/flutter_inappwebview_macos/CHANGELOG.md +++ b/flutter_inappwebview_macos/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.2 + +- Updated flutter_inappwebview_platform_interface version to ^1.3.0 + ## 1.1.1 - Updated flutter_inappwebview_platform_interface version to ^1.2.0 diff --git a/flutter_inappwebview_macos/example/pubspec.lock b/flutter_inappwebview_macos/example/pubspec.lock index 21074dfb3..e689a7662 100644 --- a/flutter_inappwebview_macos/example/pubspec.lock +++ b/flutter_inappwebview_macos/example/pubspec.lock @@ -89,15 +89,15 @@ packages: path: ".." relative: true source: path - version: "1.1.0+3" + version: "1.1.2" flutter_inappwebview_platform_interface: dependency: transitive description: name: flutter_inappwebview_platform_interface - sha256: da6c7bf193beba655bdfcd825b6c7f7b51da4944e1eb76bf9faddf685ca15fa2 + sha256: "6862f4e08aa8f6136762e022c9c1edafb18c1dc3beb03052f2f3f2a48605a182" url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.3.0" flutter_lints: dependency: "direct dev" description: diff --git a/flutter_inappwebview_macos/pubspec.yaml b/flutter_inappwebview_macos/pubspec.yaml index 46e2261c6..0c7f6d6be 100644 --- a/flutter_inappwebview_macos/pubspec.yaml +++ b/flutter_inappwebview_macos/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_inappwebview_macos description: macOS implementation of the flutter_inappwebview plugin. -version: 1.1.1 +version: 1.1.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 @@ -20,7 +20,7 @@ environment: dependencies: flutter: sdk: flutter - flutter_inappwebview_platform_interface: ^1.2.0 + flutter_inappwebview_platform_interface: ^1.3.0 dev_dependencies: flutter_test: diff --git a/flutter_inappwebview_web/CHANGELOG.md b/flutter_inappwebview_web/CHANGELOG.md index 2c5da0ea4..c02525fc0 100644 --- a/flutter_inappwebview_web/CHANGELOG.md +++ b/flutter_inappwebview_web/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.2 + +- Updated flutter_inappwebview_platform_interface version to ^1.3.0 + ## 1.1.1 - Updated flutter_inappwebview_platform_interface version to ^1.2.0 diff --git a/flutter_inappwebview_web/example/pubspec.lock b/flutter_inappwebview_web/example/pubspec.lock index 76703020f..e6765a52a 100644 --- a/flutter_inappwebview_web/example/pubspec.lock +++ b/flutter_inappwebview_web/example/pubspec.lock @@ -87,17 +87,17 @@ packages: dependency: transitive description: name: flutter_inappwebview_platform_interface - sha256: da6c7bf193beba655bdfcd825b6c7f7b51da4944e1eb76bf9faddf685ca15fa2 + sha256: "6862f4e08aa8f6136762e022c9c1edafb18c1dc3beb03052f2f3f2a48605a182" url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.3.0" flutter_inappwebview_web: dependency: "direct main" description: path: ".." relative: true source: path - version: "1.1.0+2" + version: "1.1.2" flutter_lints: dependency: "direct dev" description: diff --git a/flutter_inappwebview_web/pubspec.yaml b/flutter_inappwebview_web/pubspec.yaml index c1146eb87..d6557020c 100644 --- a/flutter_inappwebview_web/pubspec.yaml +++ b/flutter_inappwebview_web/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_inappwebview_web description: Web implementation of the flutter_inappwebview plugin. -version: 1.1.1 +version: 1.1.2 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 @@ -23,7 +23,7 @@ dependencies: flutter_web_plugins: sdk: flutter web: ^1.0.0 - flutter_inappwebview_platform_interface: ^1.2.0 + flutter_inappwebview_platform_interface: ^1.3.0 dev_dependencies: flutter_test: diff --git a/flutter_inappwebview_windows/example/pubspec.lock b/flutter_inappwebview_windows/example/pubspec.lock index d94e5b908..83bd88ac0 100644 --- a/flutter_inappwebview_windows/example/pubspec.lock +++ b/flutter_inappwebview_windows/example/pubspec.lock @@ -87,17 +87,17 @@ packages: dependency: transitive description: name: flutter_inappwebview_platform_interface - sha256: da6c7bf193beba655bdfcd825b6c7f7b51da4944e1eb76bf9faddf685ca15fa2 + sha256: "6862f4e08aa8f6136762e022c9c1edafb18c1dc3beb03052f2f3f2a48605a182" url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.3.0" flutter_inappwebview_windows: dependency: "direct main" description: path: ".." relative: true source: path - version: "0.3.0" + version: "0.5.0" flutter_lints: dependency: "direct dev" description: diff --git a/flutter_inappwebview_windows/pubspec.yaml b/flutter_inappwebview_windows/pubspec.yaml index fc90198b6..492157785 100644 --- a/flutter_inappwebview_windows/pubspec.yaml +++ b/flutter_inappwebview_windows/pubspec.yaml @@ -20,7 +20,7 @@ environment: dependencies: flutter: sdk: flutter - flutter_inappwebview_platform_interface: ^1.2.0 + flutter_inappwebview_platform_interface: ^1.3.0 dev_dependencies: flutter_test: