@scrypted/nvr 0.1.75 → 0.1.77
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 +22 -0
- package/dist/plugin.zip +0 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,28 @@
|
|
|
1
1
|
<details>
|
|
2
2
|
<summary>Changelog</summary>
|
|
3
3
|
|
|
4
|
+
### 0.1.76
|
|
5
|
+
|
|
6
|
+
publish new tracker in beta
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### 0.1.75
|
|
10
|
+
|
|
11
|
+
log second pass checks
|
|
12
|
+
implement tracker noise/deduplication
|
|
13
|
+
fix tracker bucket bug
|
|
14
|
+
fix keypoint/centerbox math
|
|
15
|
+
improve tracker expiration
|
|
16
|
+
tracker logging
|
|
17
|
+
fix infinite cost hanging munkres
|
|
18
|
+
fix timestamp on tracker
|
|
19
|
+
fix/log onvif probe
|
|
20
|
+
remove sort tracker
|
|
21
|
+
fix missing tracker on first hit
|
|
22
|
+
initial pass at new object tracker
|
|
23
|
+
fix first run issues with intall race condition
|
|
24
|
+
|
|
25
|
+
|
|
4
26
|
### 0.1.74
|
|
5
27
|
|
|
6
28
|
fix object tracker cpu/inaccuracy
|
package/dist/plugin.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scrypted/nvr",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.77",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"scrypted-setup-project": "scrypted-setup-project",
|
|
6
6
|
"prescrypted-setup-project": "scrypted-package-json",
|
|
@@ -28,8 +28,7 @@
|
|
|
28
28
|
"LauncherApplication"
|
|
29
29
|
],
|
|
30
30
|
"pluginDependencies": [
|
|
31
|
-
"@scrypted/snapshot"
|
|
32
|
-
"@scrypted/sort-tracker"
|
|
31
|
+
"@scrypted/snapshot"
|
|
33
32
|
],
|
|
34
33
|
"realfs": true
|
|
35
34
|
},
|
|
@@ -45,16 +44,17 @@
|
|
|
45
44
|
"timelapse"
|
|
46
45
|
],
|
|
47
46
|
"dependencies": {
|
|
48
|
-
"@scrypted/sdk": "file:../../scrypted/sdk",
|
|
49
|
-
"@scrypted/types": "file:../../scrypted/sdk/types",
|
|
50
47
|
"@koush/axios-digest-auth": "^0.8.5",
|
|
51
48
|
"@koush/werift-src": "file:../../scrypted/external/werift",
|
|
52
49
|
"@scrypted/common": "../../scrypted/common",
|
|
50
|
+
"@scrypted/sdk": "file:../../scrypted/sdk",
|
|
51
|
+
"@scrypted/types": "file:../../scrypted/sdk/types",
|
|
53
52
|
"@types/node": "^18.11.18",
|
|
54
53
|
"axios": "^0.24.0",
|
|
55
54
|
"check-disk-space": "^3.3.1",
|
|
56
55
|
"fast-xml-parser": "^4.1.3",
|
|
57
56
|
"mkdirp": "^1.0.4",
|
|
57
|
+
"munkres-js": "^1.2.2",
|
|
58
58
|
"rimraf": "^3.0.2",
|
|
59
59
|
"tmp-promise": "^3.0.3",
|
|
60
60
|
"uuid": "^9.0.0"
|