release v3.3.0
This commit is contained in:
parent
9f9232e1f3
commit
0c6a02fff8
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
- Android `clearClientCertPreferences`, `getSafeBrowsingPrivacyPolicyUrl`, `setSafeBrowsingWhitelist` webview methods are static now
|
- Android `clearClientCertPreferences`, `getSafeBrowsingPrivacyPolicyUrl`, `setSafeBrowsingWhitelist` webview methods are static now
|
||||||
- Removed iOS event `onDidCommit`; it has been renamed to `onPageCommitVisible` and made cross-platform
|
- Removed iOS event `onDidCommit`; it has been renamed to `onPageCommitVisible` and made cross-platform
|
||||||
- `contextMenu` is `final` now
|
- `contextMenu` webview attribute is `final` now
|
||||||
|
|
||||||
## 3.2.0
|
## 3.2.0
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"e2e","path":"/Users/lorenzopichilli/flutter/.pub-cache/hosted/pub.dartlang.org/e2e-0.2.4+4/","dependencies":[]},{"name":"flutter_inappwebview","path":"/Users/lorenzopichilli/Desktop/flutter_inappwebview/","dependencies":[]},{"name":"permission_handler","path":"/Users/lorenzopichilli/flutter/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.0+hotfix.6/","dependencies":[]}],"android":[{"name":"e2e","path":"/Users/lorenzopichilli/flutter/.pub-cache/hosted/pub.dartlang.org/e2e-0.2.4+4/","dependencies":[]},{"name":"flutter_inappwebview","path":"/Users/lorenzopichilli/Desktop/flutter_inappwebview/","dependencies":[]},{"name":"permission_handler","path":"/Users/lorenzopichilli/flutter/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.0+hotfix.6/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"e2e","dependencies":[]},{"name":"flutter_inappwebview","dependencies":[]},{"name":"permission_handler","dependencies":[]}],"date_created":"2020-05-30 19:55:39.840707","version":"1.17.1"}
|
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"e2e","path":"/Users/lorenzopichilli/flutter/.pub-cache/hosted/pub.dartlang.org/e2e-0.2.4+4/","dependencies":[]},{"name":"flutter_inappwebview","path":"/Users/lorenzopichilli/Desktop/flutter_inappwebview/","dependencies":[]},{"name":"permission_handler","path":"/Users/lorenzopichilli/flutter/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.0+hotfix.6/","dependencies":[]}],"android":[{"name":"e2e","path":"/Users/lorenzopichilli/flutter/.pub-cache/hosted/pub.dartlang.org/e2e-0.2.4+4/","dependencies":[]},{"name":"flutter_inappwebview","path":"/Users/lorenzopichilli/Desktop/flutter_inappwebview/","dependencies":[]},{"name":"permission_handler","path":"/Users/lorenzopichilli/flutter/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.0+hotfix.6/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"e2e","dependencies":[]},{"name":"flutter_inappwebview","dependencies":[]},{"name":"permission_handler","dependencies":[]}],"date_created":"2020-05-30 23:08:18.010942","version":"1.17.1"}
|
@ -1,11 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
# This is a generated file; do not edit or check into version control.
|
|
||||||
export "FLUTTER_ROOT=/Users/lorenzopichilli/flutter"
|
|
||||||
export "FLUTTER_APPLICATION_PATH=/Users/lorenzopichilli/Desktop/flutter_inappwebview/example"
|
|
||||||
export "FLUTTER_TARGET=lib/main.dart"
|
|
||||||
export "FLUTTER_BUILD_DIR=build"
|
|
||||||
export "SYMROOT=${SOURCE_ROOT}/../build/ios"
|
|
||||||
export "OTHER_LDFLAGS=$(inherited) -framework Flutter"
|
|
||||||
export "FLUTTER_FRAMEWORK_DIR=/Users/lorenzopichilli/flutter/bin/cache/artifacts/engine/ios"
|
|
||||||
export "FLUTTER_BUILD_NAME=1.0.0"
|
|
||||||
export "FLUTTER_BUILD_NUMBER=1"
|
|
@ -1,5 +1,4 @@
|
|||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:convert';
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
||||||
|
@ -1 +1 @@
|
|||||||
final environment = {"NODE_SERVER_IP":"192.168.1.21"};
|
final environment = {"NODE_SERVER_IP":"192.168.43.166"};
|
@ -704,8 +704,7 @@ class InAppWebViewController {
|
|||||||
Uint8List body = Uint8List.fromList(argMap["body"].cast<int>());
|
Uint8List body = Uint8List.fromList(argMap["body"].cast<int>());
|
||||||
String mode = argMap["mode"];
|
String mode = argMap["mode"];
|
||||||
FetchRequestCredential credentials =
|
FetchRequestCredential credentials =
|
||||||
FetchRequest.createFetchRequestCredentialFromMap(
|
FetchRequest.fromMap(argMap["credentials"]);
|
||||||
argMap["credentials"]);
|
|
||||||
String cache = argMap["cache"];
|
String cache = argMap["cache"];
|
||||||
String redirect = argMap["redirect"];
|
String redirect = argMap["redirect"];
|
||||||
String referrer = argMap["referrer"];
|
String referrer = argMap["referrer"];
|
||||||
|
@ -2301,8 +2301,7 @@ class FetchRequest {
|
|||||||
return toMap().toString();
|
return toMap().toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
static FetchRequestCredential createFetchRequestCredentialFromMap(
|
static FetchRequestCredential fromMap(credentialsMap) {
|
||||||
credentialsMap) {
|
|
||||||
if (credentialsMap != null) {
|
if (credentialsMap != null) {
|
||||||
if (credentialsMap["type"] == "default") {
|
if (credentialsMap["type"] == "default") {
|
||||||
return FetchRequestCredentialDefault(
|
return FetchRequestCredentialDefault(
|
||||||
@ -2324,7 +2323,7 @@ class FetchRequest {
|
|||||||
iconURL: credentialsMap["iconURL"]);
|
iconURL: credentialsMap["iconURL"]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return FetchRequestCredential();
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3063,7 +3062,7 @@ class RendererPriorityPolicy {
|
|||||||
rendererRequestedPriority:
|
rendererRequestedPriority:
|
||||||
RendererPriority.fromValue(map["rendererRequestedPriority"]),
|
RendererPriority.fromValue(map["rendererRequestedPriority"]),
|
||||||
waivedWhenNotVisible: map["waivedWhenNotVisible"])
|
waivedWhenNotVisible: map["waivedWhenNotVisible"])
|
||||||
: RendererPriorityPolicy();
|
: null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,5 +8,5 @@ Future<void> main() async {
|
|||||||
};
|
};
|
||||||
|
|
||||||
final filename = 'example/test_driver/.env.dart';
|
final filename = 'example/test_driver/.env.dart';
|
||||||
File(filename).writeAsString('final environment = ${json.encode(config)};');
|
await File(filename).writeAsString('final environment = ${json.encode(config)};');
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user