Skip to content

Commit

Permalink
update changelog, readme, bump to v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rainyl committed Nov 25, 2024
1 parent 3c234ea commit 80aeb04
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 23 deletions.
10 changes: 10 additions & 0 deletions packages/opencv_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.3.3

* Fix example link in readme
* [Android] Support 16KB Page Size
* Fix: `minEnclosingCircle`
* Fix: requested object not found in `glob_rec`
* Exclude system paths from search paths in `ffmpeg-config.cmake`
* bump dartcv to 4.10.0.5
* bump opencv to 4.10.0+10

## 1.3.2

* Fix: minEnclosingCircle
Expand Down
1 change: 1 addition & 0 deletions packages/opencv_core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ OpenCV for Flutter, if `highgui` or `videoio` is required, use [opencv_dart](htt
>
> OpenCV SDK (~100M) will be downloaded via `FetchContent` of cmake, you can
> set `DARTCV_CACHE_DIR` environment variable to cache it and avoid downloading it again.
> e.g., `export DARTCV_CACHE_DIR=$HOME/.cache/dartcv`
## Supported platforms

Expand Down
2 changes: 1 addition & 1 deletion packages/opencv_core/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: |
OpenCV4 bindings for Flutter.
This plugin does NOT include `highgui` and `videoio`,
if you need them, please use `opencv_dart` instead.
version: 1.3.2
version: 1.3.3
opencv_version: 4.10.0+10
dartcv_version: 4.10.0.5
repository: https://github.com/rainyl/opencv_dart
Expand Down
10 changes: 10 additions & 0 deletions packages/opencv_dart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.3.3

* Fix example link in readme
* [Android] Support 16KB Page Size
* Fix: `minEnclosingCircle`
* Fix: requested object not found in `glob_rec`
* Exclude system paths from search paths in `ffmpeg-config.cmake`
* bump dartcv to 4.10.0.5
* bump opencv to 4.10.0+10

## 1.3.2

* Fix: minEnclosingCircle
Expand Down
24 changes: 3 additions & 21 deletions packages/opencv_dart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,7 @@ use [opencv_core](https://pub.dev/packages/opencv_core)
> From `v1.3.0`, dynamic libraries will be built locally, invoked by flutter during the build.
> Note: OpenCV SDK (~100M) will be downloaded via `FetchContent` of cmake, you can
> set `DARTCV_CACHE_DIR` environment variable to cache it and avoid downloading it again.
>
> `v1.0.4 ~ v1.0.6`, libs will be downloaded from
> [Releases](https://github.com/rainyl/opencv_dart/releases) automatically.
>
> 1. If you want to setup manually, please set `OPENCV_DART_DISABLE_AUTO_BUILD` environment variable,
> e.g., `export OPENCV_DART_DISABLE_AUTO_BUILD=1`(for Unix-like)
> or `$env:OPENCV_DART_DISABLE_AUTO_BUILD=1`(for Windows)
>
> For `v1.0.4` and below, make sure run the following setup commands before running your app:
>
> 1. `flutter pub add opencv_dart` or `dart pub add opencv_dart`
> 2. `dart run opencv_dart:setup <platform> --arch <arch>`
>
> | `platform` | `arch` |
> | ---------- | ---------------------------------- |
> | `android` | `x86_64` `arm64-v8a` `armeabi-v7a` |
> | `linux` | `x64` |
> | `windows` | `x64` |
> | `macos` | `x64` `arm64` |
> | `ios` | `os64` (universal framework) |
> e.g., `export DARTCV_CACHE_DIR=$HOME/.cache/dartcv`
>
> - Q&A: [#212](https://github.com/rainyl/opencv_dart/issues/212) or open new issues.
> - ~~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.
Expand All @@ -48,13 +29,14 @@ use [opencv_core](https://pub.dev/packages/opencv_core)
[Supported modules](https://github.com/rainyl/opencv_dart?tab=readme-ov-file#status)

## Package Size

![opencv_dart_size_report](images/opencv_dart_size_report.svg)

## Examples

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

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

## Screenshots

Expand Down
2 changes: 1 addition & 1 deletion packages/opencv_dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: |
OpenCV4 bindings for Flutter, using dart:ffi.
This plugin include `videoio` module, if you don't need it,
please use `opencv_core` instead.
version: 1.3.2
version: 1.3.3
opencv_version: 4.10.0+10
dartcv_version: 4.10.0.5
repository: https://github.com/rainyl/opencv_dart
Expand Down

0 comments on commit 80aeb04

Please sign in to comment.