@camera.ui/camera-ui-hailo 1.1.6 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/bundle.zip +0 -0
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## [1.2.0]
|
|
2
|
+
|
|
3
|
+
- Fixed the "Re-download Models" button doing nothing. Pressing it failed with a handler error in the log.
|
|
4
|
+
- Bump camera.ui SDK, requires camera.ui 2.0.23 or newer
|
|
5
|
+
|
|
1
6
|
## [1.1.6]
|
|
2
7
|
|
|
3
8
|
- Pick which Hailo device runs inference when several are installed. A new device dropdown lists the detected devices. Auto keeps the previous behavior.
|
package/bundle.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Hailo",
|
|
3
3
|
"name": "@camera.ui/camera-ui-hailo",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"description": "Hailo Edge AI (HailoRT) detection backend for camera.ui. Runs object detection on a Hailo-8 / Hailo-8L accelerator.",
|
|
6
6
|
"author": "seydx (https://github.com/cameraui/plugins)",
|
|
7
7
|
"main": "./dist/main.py",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"url": "https://github.com/cameraui/plugins/issues"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
|
-
"camera.ui": ">=2.0.
|
|
26
|
+
"camera.ui": ">=2.0.23",
|
|
27
27
|
"node": ">=22.0.0"
|
|
28
28
|
},
|
|
29
29
|
"os": [
|
|
@@ -49,6 +49,9 @@
|
|
|
49
49
|
"url": "git+https://github.com/cameraui/plugins.git",
|
|
50
50
|
"directory": "camera-ui-hailo"
|
|
51
51
|
},
|
|
52
|
+
"cameraui": {
|
|
53
|
+
"protocolLevel": 1
|
|
54
|
+
},
|
|
52
55
|
"files": [
|
|
53
56
|
"bundle.zip",
|
|
54
57
|
"CHANGELOG.md"
|