Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2f0fd5d
FFI initialize and create
gin7773 Jul 16, 2026
19c4bd1
Migration of methods other than (de)activate
gin7773 Jul 17, 2026
51571e3
remove BasicMessageChannel and VideoPlayerVideoholeApi
gin7773 Jul 20, 2026
643a04d
code format
gin7773 Jul 21, 2026
1815a22
replace EventChannel with ffi
gin7773 Jul 22, 2026
93de4a2
fixed dart analyze issue
gin7773 Jul 22, 2026
3a558d6
Code refactoring
gin7773 Jul 22, 2026
46dee32
Ensure minimal changes
gin7773 Jul 22, 2026
7efc252
remove VideoPlayerTizenPlugin
gin7773 Jul 23, 2026
c6c0570
code format
gin7773 Jul 23, 2026
29d58da
fixed UI not refreshing issue and code structure updated
gin7773 Jul 28, 2026
619dc62
code format
gin7773 Jul 28, 2026
45eafa5
Complete the registration and destruction of playerEventPort, and res…
gin7773 Jul 29, 2026
f5dac1b
P1-1: Use nlohmann/json library for JSON parsing
gin7773 Jul 29, 2026
486d9e8
P1-2: Add FFI port lifecycle cleanup for hot restart
gin7773 Jul 29, 2026
16a4f83
code format
gin7773 Jul 29, 2026
b4dbc98
Fixed the potential deadlock issue and unescaped JSON issue
gin7773 Jul 30, 2026
11a01a4
Fix: FFI event port binding and Restore playback issues
gin7773 Jul 30, 2026
534df84
remove unused log
gin7773 Jul 31, 2026
4530daf
fixed some review issues
gin7773 Jul 31, 2026
2fb3939
refactor Restore()
gin7773 Jul 31, 2026
06b983b
remove unused code
gin7773 Jul 31, 2026
9996e07
fix crash issue
gin7773 Aug 5, 2026
09c5443
update version
gin7773 Aug 5, 2026
e08ba75
remove unused code
gin7773 Aug 5, 2026
daa0dd8
add ffi
gin7773 Aug 5, 2026
9866b28
Refactor: Extract FFI implementation to ffi_messages.cc
gin7773 Aug 5, 2026
6e9dd49
Simplify ffi_messages.h internal API
gin7773 Aug 5, 2026
97da2d7
Fix: Address PR review comments
gin7773 Aug 5, 2026
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
6 changes: 6 additions & 0 deletions packages/video_player_videohole/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.6.0

* Migrated from Platform Channels to Dart FFI.
* Replaced EventChannel with FFI port for event callbacks.
* Added JSON serialization for complex parameters.

## 0.5.9

* Adds compatibility with `http` 1.0 in example.
Expand Down
2 changes: 1 addition & 1 deletion packages/video_player_videohole/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To use this package, add `video_player_videohole` as a dependency in your `pubsp

```yaml
dependencies:
video_player_videohole: ^0.5.9
video_player_videohole: ^0.6.0
```

Then you can import `video_player_videohole` in your Dart code:
Expand Down
Loading
Loading