Skip to content

Commit 0f1f788

Browse files
authored
Merge pull request #296 from rainyl/v1.3.3
update changelog, readme, bump to v1.3.3
2 parents 3c234ea + 80aeb04 commit 0f1f788

File tree

6 files changed

+26
-23
lines changed

6 files changed

+26
-23
lines changed

packages/opencv_core/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 1.3.3
2+
3+
* Fix example link in readme
4+
* [Android] Support 16KB Page Size
5+
* Fix: `minEnclosingCircle`
6+
* Fix: requested object not found in `glob_rec`
7+
* Exclude system paths from search paths in `ffmpeg-config.cmake`
8+
* bump dartcv to 4.10.0.5
9+
* bump opencv to 4.10.0+10
10+
111
## 1.3.2
212

313
* Fix: minEnclosingCircle

packages/opencv_core/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ OpenCV for Flutter, if `highgui` or `videoio` is required, use [opencv_dart](htt
66
>
77
> OpenCV SDK (~100M) will be downloaded via `FetchContent` of cmake, you can
88
> set `DARTCV_CACHE_DIR` environment variable to cache it and avoid downloading it again.
9+
> e.g., `export DARTCV_CACHE_DIR=$HOME/.cache/dartcv`
910
1011
## Supported platforms
1112

packages/opencv_core/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: |
33
OpenCV4 bindings for Flutter.
44
This plugin does NOT include `highgui` and `videoio`,
55
if you need them, please use `opencv_dart` instead.
6-
version: 1.3.2
6+
version: 1.3.3
77
opencv_version: 4.10.0+10
88
dartcv_version: 4.10.0.5
99
repository: https://github.com/rainyl/opencv_dart

packages/opencv_dart/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 1.3.3
2+
3+
* Fix example link in readme
4+
* [Android] Support 16KB Page Size
5+
* Fix: `minEnclosingCircle`
6+
* Fix: requested object not found in `glob_rec`
7+
* Exclude system paths from search paths in `ffmpeg-config.cmake`
8+
* bump dartcv to 4.10.0.5
9+
* bump opencv to 4.10.0+10
10+
111
## 1.3.2
212

313
* Fix: minEnclosingCircle

packages/opencv_dart/README.md

+3-21
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,7 @@ use [opencv_core](https://pub.dev/packages/opencv_core)
88
> From `v1.3.0`, dynamic libraries will be built locally, invoked by flutter during the build.
99
> Note: OpenCV SDK (~100M) will be downloaded via `FetchContent` of cmake, you can
1010
> set `DARTCV_CACHE_DIR` environment variable to cache it and avoid downloading it again.
11-
>
12-
> `v1.0.4 ~ v1.0.6`, libs will be downloaded from
13-
> [Releases](https://github.com/rainyl/opencv_dart/releases) automatically.
14-
>
15-
> 1. If you want to setup manually, please set `OPENCV_DART_DISABLE_AUTO_BUILD` environment variable,
16-
> e.g., `export OPENCV_DART_DISABLE_AUTO_BUILD=1`(for Unix-like)
17-
> or `$env:OPENCV_DART_DISABLE_AUTO_BUILD=1`(for Windows)
18-
>
19-
> For `v1.0.4` and below, make sure run the following setup commands before running your app:
20-
>
21-
> 1. `flutter pub add opencv_dart` or `dart pub add opencv_dart`
22-
> 2. `dart run opencv_dart:setup <platform> --arch <arch>`
23-
>
24-
> | `platform` | `arch` |
25-
> | ---------- | ---------------------------------- |
26-
> | `android` | `x86_64` `arm64-v8a` `armeabi-v7a` |
27-
> | `linux` | `x64` |
28-
> | `windows` | `x64` |
29-
> | `macos` | `x64` `arm64` |
30-
> | `ios` | `os64` (universal framework) |
11+
> e.g., `export DARTCV_CACHE_DIR=$HOME/.cache/dartcv`
3112
>
3213
> - Q&A: [#212](https://github.com/rainyl/opencv_dart/issues/212) or open new issues.
3314
> - ~~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)~~ Won't update until `Native Assets` being stable.
@@ -48,13 +29,14 @@ use [opencv_core](https://pub.dev/packages/opencv_core)
4829
[Supported modules](https://github.com/rainyl/opencv_dart?tab=readme-ov-file#status)
4930

5031
## Package Size
32+
5133
![opencv_dart_size_report](images/opencv_dart_size_report.svg)
5234

5335
## Examples
5436

5537
see [example](https://github.com/rainyl/opencv_dart/tree/main/packages/opencv_dart/example)
5638

57-
More examples refet to [awesome-opencv_dart](https://github.com/rainyl/awesome-opencv_dart) and share yours
39+
More examples refer to [awesome-opencv_dart](https://github.com/rainyl/awesome-opencv_dart) and share yours
5840

5941
## Screenshots
6042

packages/opencv_dart/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: |
33
OpenCV4 bindings for Flutter, using dart:ffi.
44
This plugin include `videoio` module, if you don't need it,
55
please use `opencv_core` instead.
6-
version: 1.3.2
6+
version: 1.3.3
77
opencv_version: 4.10.0+10
88
dartcv_version: 4.10.0.5
99
repository: https://github.com/rainyl/opencv_dart

0 commit comments

Comments
 (0)