Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/webview_flutter_lwe/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## NEXT
## 0.3.9

* Update code format.
* Fix bugs for Tizen 10.0 support

## 0.3.8

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.10.0
webview_flutter_lwe: ^0.3.8
webview_flutter_lwe: ^0.3.9
```

## 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.8
version: 0.3.9

environment:
sdk: ^3.5.0
Expand Down
2 changes: 1 addition & 1 deletion packages/webview_flutter_lwe/tizen/project_def.prop
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ USER_CPP_INC_FILES =

# Linker options
USER_LIB_DIRS = lib/${BUILD_ARCH}
USER_LIBS = pthread lightweight-web-engine.flutter tuv lightweight-web-engine.flutter-impl
USER_LIBS = pthread stdc++ lightweight-web-engine.flutter tuv lightweight-web-engine.flutter-impl
USER_LFLAGS = -Wl,-rpath='$$ORIGIN'
2 changes: 2 additions & 0 deletions packages/webview_flutter_lwe/tizen/src/buffer_pool.cc
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ void SingleBufferPool::Release(BufferUnit* buffer) {}

#ifndef NDEBUG
#include <cairo.h>

#include <cstdio>
void BufferUnit::DumpToPng(int file_name) {
char file_path[256];
sprintf(file_path, "/tmp/dump%d.png", file_name);
Expand Down