Skip to content

Commit 7302555

Browse files
committed
Merge branch 'structs-gc-finalizers'
2 parents 021d6d9 + 4584111 commit 7302555

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.1.5
2+
3+
- Added initial macOS support. (Thanks to @jnschulze).
4+
- Improved NativePort callbacks & removed unnecessary serialization.
5+
- Now using a common dartvlc wrapper CMake library for all platforms. (Thanks to @jnschulze).
6+
- Other bug-fixes related to `Video`. (Thanks to @jnschulze).
7+
- Setup garbage cleaning finalizers for memory allocated on heap (for C++/Dart FFI communication).
8+
- Removed deprecated libVLC API calls.
9+
110
## 0.1.4
211

312
- Now `Player` no longer requires `videoWidth` & `videoHeight` to be passed for video playback.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h1 align="center"><a href="https://github.com/alexmercerind/dart_vlc">dart_vlc</a></h1>
2-
<h4 align="center">Flutter media playback, broadcast, recording & chromecast library for Windows & Linux.</h4>
2+
<h4 align="center">Flutter media playback, broadcast, recording & chromecast library for Windows, Linux & macOS.</h4>
33
<h5 align="center">Written in C++ using libVLC & libVLC++.</h5>
44

55
![](https://github.com/alexmercerind/dart_vlc/blob/assets/dart_vlc_windows_11_1.PNG?raw=true)
@@ -433,9 +433,9 @@ Under progress or planned features (irrespective of order)...
433433

434434
First of all, thanks to the [VideoLAN](https://www.videolan.org) team for creating [libVLC](https://github.com/videolan/vlc) & [libVLC++](https://github.com/videolan/libvlcpp). Really great guys really great at their work.
435435

436-
Thanks to [@jnschulze](https://github.com/jnschulze) for his awesome contributions to this project & to Flutter engine like adding texture support.
436+
Thanks to [@jnschulze](https://github.com/jnschulze) for his awesome contributions to this project & to Flutter engine itself like adding texture support.
437437

438-
Thanks to [@namniav](https://github.com/namniav) for working on macOS support.
438+
Thanks to [@jnschulze](https://github.com/jnschulze) & [@namniav](https://github.com/namniav) for working on macOS support.
439439

440440
Thanks to [@stuartmorgan](https://github.com/stuartmorgan) from [The Flutter Team](https://flutter.dev) for helping out the project with his opinions.
441441

ffi/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.3
2+
3+
- Update `ReceivePort` listener to match new NativePort callbacks.
4+
15
## 0.1.2
26

37
- Improved memory cleanup inside FFI.

ffi/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_vlc_ffi
22
description: FFI based binding to dart_vlc wrapper (Based on libVLC & libVLC++).
3-
version: 0.1.2
3+
version: 0.1.3
44
homepage: https://github.com/alexmercerind/dart_vlc
55
repository: https://github.com/alexmercerind/dart_vlc
66
documentation: https://github.com/alexmercerind/dart_vlc/blob/master/README.md

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_vlc
2-
description: A media playback library for Dart & Flutter. Based on libVLC & libVLC++.
3-
version: 0.1.4
2+
description: Flutter media playback, broadcast, recording & chromecast library. Based on libVLC & libVLC++.
3+
version: 0.1.5
44
homepage: https://github.com/alexmercerind/dart_vlc
55
repository: https://github.com/alexmercerind/dart_vlc
66
documentation: https://github.com/alexmercerind/dart_vlc/blob/master/README.md

0 commit comments

Comments
 (0)