Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaowei-guan committed Jul 23, 2024
2 parents 5d80d17 + c7c9750 commit 279497f
Show file tree
Hide file tree
Showing 32 changed files with 719 additions and 72 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class SharedPreferencesPlugin extends SharedPreferencesStorePlatform {
_cachedPreferences![key] = <String>[];
} else if (stringValue.contains(_separator)) {
final List<String> list = stringValue.split(_separator);
_cachedPreferences![key] = list.getRange(1, list.length - 1);
_cachedPreferences![key] = list.getRange(1, list.length - 1).toList();
} else {
_cachedPreferences![key] = stringValue;
}
Expand Down
4 changes: 4 additions & 0 deletions packages/webview_flutter_lwe/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.2

* Update lightweight web engine(1.2.2).

## 0.3.1

* Fix new lint warnings.
Expand Down
2 changes: 1 addition & 1 deletion packages/webview_flutter_lwe/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This package is not an _endorsed_ implementation of `webview_flutter`. Therefore
```yaml
dependencies:
webview_flutter: ^4.4.2
webview_flutter_lwe: ^0.3.1
webview_flutter_lwe: ^0.3.2
```
## Example
Expand Down
2 changes: 1 addition & 1 deletion packages/webview_flutter_lwe/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: webview_flutter_lwe
description: Tizen implementation of the webview_flutter plugin backed by Lightweight Web Engine.
homepage: https://github.com/flutter-tizen/plugins
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/webview_flutter_lwe
version: 0.3.1
version: 0.3.2

environment:
sdk: ">=3.1.0 <4.0.0"
Expand Down
Loading

0 comments on commit 279497f

Please sign in to comment.