Skip to content

Commit

Permalink
Add changelog for 3.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia committed Nov 4, 2024
1 parent 15e7f07 commit 8ddac61
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class SuperAccessDaemonClient(
}

lock.withLock {
condition.await(3, java.util.concurrent.TimeUnit.SECONDS)
condition.await(5, java.util.concurrent.TimeUnit.SECONDS)
}

synchronized(cacheLock) {
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,14 @@ Join the [deltacv discord server](https://discord.gg/A3RMYzf6DA) !

### Formerly, EOCV-Sim was hosted on a [personal account repo](https://github.com/serivesmejia/EOCV-Sim/). Released prior to 3.0.0 can be found there for historic purposes.

## [v3.8.2 - Synchronization bug fixes](https://github.com/deltacv/EOCV-Sim/releases/tag/v3.8.2)
- This is the 27th release for EOCV-Sim
- Internal changes:
- Opens streamer field access of StreamableOpenCvPipeline
- Bugfixes:
- Fixes incorrect buffer sharing in org.opencv.android.Utils, which caused funny flickering
- Restructures cache files into a single folder to avoid cluttering the plugins folder

## [v3.8.1 - Shadow jar merge service files hotfix](https://github.com/deltacv/EOCV-Sim/releases/tag/v3.8.1)
- This is the 26th release for EOCV-Sim
- Bugfixes:
Expand Down
3 changes: 2 additions & 1 deletion Vision/src/main/java/org/opencv/android/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

import java.nio.ByteBuffer;
import java.util.HashMap;
import java.util.WeakHashMap;

public class Utils {

Expand Down Expand Up @@ -95,7 +96,7 @@ private static void nBitmapToMat2(Bitmap b, Mat mat, boolean unPremultiplyAlpha)
}
}

private static HashMap<Thread, byte[]> m2bDataMap = new HashMap<>();
private static WeakHashMap<Thread, byte[]> m2bDataMap = new WeakHashMap<>();

private static void nMatToBitmap2(Mat src, Bitmap b, boolean premultiplyAlpha) {
Mat tmp;
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ plugins {

allprojects {
group 'com.github.deltacv'
version '3.8.1'
version '3.8.2'

apply plugin: 'java'

Expand Down

0 comments on commit 8ddac61

Please sign in to comment.