Skip to content

Commit 14b0b6f

Browse files
authored
Merge pull request #223 from rainyl/better-vec-list
bump version to v1.2.2
2 parents b15c353 + 7fe3980 commit 14b0b6f

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 1.2.2
2+
3+
* remove arm64 and x64 setup options for ios by @rainyl in https://github.com/rainyl/opencv_dart/pull/202
4+
* rename factory VideoWriter.open to VideoWriter.fromFile, add apiPreference option for VideoWriter by @rainyl in https://github.com/rainyl/opencv_dart/pull/203
5+
* check libs for android by @rainyl in https://github.com/rainyl/opencv_dart/pull/210
6+
* Android Plugin custom arch support by @einsitang in https://github.com/rainyl/opencv_dart/pull/211
7+
* use `setRange` for Vec, optimize operator [] by @rainyl in https://github.com/rainyl/opencv_dart/pull/215
8+
* add `asVec()` to List extensions for better Vec and List interop by @rainyl in https://github.com/rainyl/opencv_dart/pull/222
9+
110
## 1.2.1
211

312
- use ndk from conan by @rainyl in https://github.com/rainyl/opencv_dart/pull/187

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ OpenCV Bindings for Dart Language. Support both asynchronous and synchronous!
1313
</p>
1414

1515
> [!IMPORTANT]
16-
> For `v1.0.6` and later, auto setup is supported, libs will be downloaded from
16+
> For `v1.0.6` and later, libs will be downloaded from
1717
> [Releases](https://github.com/rainyl/opencv_dart/releases) automatically.
1818
>
1919
> 1. If you want to setup manually, please set `OPENCV_DART_DISABLE_AUTO_BUILD` environment variable,
@@ -31,14 +31,14 @@ OpenCV Bindings for Dart Language. Support both asynchronous and synchronous!
3131
> | `linux` | `x64` |
3232
> | `windows` | `x64` |
3333
> | `macos` | `x64` `arm64` |
34-
> | `ios` | `x64` `arm64` `os64` |
34+
> | `ios` | `os64` (universal framework) |
3535
>
36-
> - More questions: refer to [#29](https://github.com/rainyl/opencv_dart/issues/29) or open new issues.
36+
> - More questions: refer to [#212](https://github.com/rainyl/opencv_dart/issues/212) or open new issues.
3737
> - If you are using flutter with [Native Assets](https://github.com/flutter/flutter/issues/129757) feature supported, consider using v2.x version, see more in [native-assets branch](https://github.com/rainyl/opencv_dart/tree/native-assets)
3838
>
3939
4040
> [!NOTE]
41-
> WIP, contributions are welcome!
41+
> WIP, APIs may change in the future, contributions are welcome!
4242
4343
- [opencv\_dart](#opencv_dart)
4444
- [Example](#example)
@@ -201,7 +201,7 @@ see [example](https://github.com/rainyl/opencv_dart/tree/main/example)
201201
scoop install conan
202202
```
203203

204-
- Linux: Ubuntu as example
204+
- Linux: Ubuntu as example, note `opencv.full` is built on Ubuntu 22.04 with ffmpeg 4.4
205205

206206
```bash
207207
sudo apt-get install build-essential libgtk-3-dev ffmpeg libavcodec-dev cmake \

binary.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.1
1+
1.2.2

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: opencv_dart
22
description: "OpenCV4 bindings for Dart language and Flutter, using dart:ffi. The most complete OpenCV bindings for Dart! With asynchronous support now!"
3-
version: 1.2.1
3+
version: 1.2.2
44
homepage: https://github.com/rainyl/opencv_dart
55

66
environment:
@@ -11,7 +11,7 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
plugin_platform_interface: ^2.1.8
14-
ffi: ^2.1.2
14+
ffi: ^2.1.3
1515
path: ^1.9.0
1616
args: ^2.5.0
1717
archive: ^3.6.1

0 commit comments

Comments
 (0)