Skip to content

Commit f533721

Browse files
committed
[webview_flutter_lwe] Update lightweight web engine to 1.4.1
Reflects the latest starfish engine build: updated tizen/lib/*.so for aarch64, armel, i586, and x86_64, and LWEWebView.h now declares an optional preferMainThread parameter (defaults to true, no functional change to existing callers). Bumps package version to 0.5.2 and updates README/CHANGELOG accordingly.
1 parent 87c7951 commit f533721

40 files changed

Lines changed: 11 additions & 3 deletions

packages/webview_flutter_lwe/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.5.2
2+
3+
* Update lightweight web engine (1.4.1).
4+
* Add an optional `preferMainThread` parameter to `LWE::Initialize`.
5+
16
## 0.5.1
27

38
* Update the README.md.

packages/webview_flutter_lwe/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This package is not an _endorsed_ implementation of `webview_flutter`. Therefore
2121
```yaml
2222
dependencies:
2323
webview_flutter: ^4.13.1
24-
webview_flutter_lwe: ^0.5.1
24+
webview_flutter_lwe: ^0.5.2
2525
```
2626
2727
## Example

packages/webview_flutter_lwe/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: webview_flutter_lwe
22
description: Tizen implementation of the webview_flutter plugin backed by Lightweight Web Engine.
33
homepage: https://github.com/flutter-tizen/plugins
44
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/webview_flutter_lwe
5-
version: 0.5.1
5+
version: 0.5.2
66

77
environment:
88
sdk: ^3.8.0

packages/webview_flutter_lwe/tizen/inc/lwe/LWEWebView.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,11 @@ class LWE_EXPORT LWE {
6969
*
7070
* \param storageDirectoryPath Directory path for storage.
7171
*
72+
* \param preferMainThread If true, LWE prefers to run on the process main
73+
* thread. Default is true.
7274
*/
73-
static void Initialize(const char* storageDirectoryPath);
75+
static void Initialize(const char* storageDirectoryPath,
76+
bool preferMainThread = true);
7477

7578
/**
7679
* \brief Returns the initialization status of lightweight web engine.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)