@scrypted/nvr 0.1.156 → 0.1.158
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 +18 -0
- package/dist/main.nodejs.js.LICENSE.txt +14 -0
- package/dist/plugin.zip +0 -0
- package/package.json +11 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
<details>
|
|
2
2
|
<summary>Changelog</summary>
|
|
3
3
|
|
|
4
|
+
### 0.1.157
|
|
5
|
+
|
|
6
|
+
implement motion heatmap decay
|
|
7
|
+
ignore high watermark if multiple terabytes are free
|
|
8
|
+
finish heatmap filter, autoend low confirm
|
|
9
|
+
publish beta
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### 0.1.156
|
|
13
|
+
|
|
14
|
+
send notifications without image if image request fails for any reason
|
|
15
|
+
improved thumbnails, choose better targets
|
|
16
|
+
update deps
|
|
17
|
+
new heatmap smart motion sensor
|
|
18
|
+
initial implementation for spurious motion fallback
|
|
19
|
+
fix recording stream export being unbound duration when hevc
|
|
20
|
+
|
|
21
|
+
|
|
4
22
|
### 0.1.155
|
|
5
23
|
|
|
6
24
|
fix malformed aac export
|
|
@@ -10,3 +10,17 @@
|
|
|
10
10
|
*
|
|
11
11
|
* MIT Licensed
|
|
12
12
|
*/
|
|
13
|
+
|
|
14
|
+
/*!
|
|
15
|
+
* mime-db
|
|
16
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
17
|
+
* Copyright(c) 2015-2022 Douglas Christopher Wilson
|
|
18
|
+
* MIT Licensed
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/*!
|
|
22
|
+
* mime-types
|
|
23
|
+
* Copyright(c) 2014 Jonathan Ong
|
|
24
|
+
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
25
|
+
* MIT Licensed
|
|
26
|
+
*/
|
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.158",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"scrypted-setup-project": "scrypted-setup-project",
|
|
6
6
|
"prescrypted-setup-project": "scrypted-package-json",
|
|
@@ -50,21 +50,24 @@
|
|
|
50
50
|
"@scrypted/common": "../../scrypted/common",
|
|
51
51
|
"@scrypted/sdk": "file:../../scrypted/sdk",
|
|
52
52
|
"@scrypted/types": "file:../../scrypted/sdk/types",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
53
|
+
"@turf/area": "^6.5.0",
|
|
54
|
+
"axios": "^1.4.0",
|
|
55
|
+
"check-disk-space": "^3.4.0",
|
|
56
|
+
"fast-xml-parser": "^4.2.5",
|
|
57
|
+
"mkdirp": "^3.0.1",
|
|
57
58
|
"munkres-js": "^1.2.2",
|
|
58
59
|
"point-inside-polygon": "^1.0.3",
|
|
60
|
+
"polygon-clipping": "^0.15.3",
|
|
59
61
|
"polygon-overlap": "^1.0.5",
|
|
60
|
-
"rimraf": "^
|
|
62
|
+
"rimraf": "^5.0.1",
|
|
61
63
|
"tmp-promise": "^3.0.3",
|
|
62
64
|
"uuid": "^9.0.0"
|
|
63
65
|
},
|
|
64
66
|
"devDependencies": {
|
|
65
67
|
"@types/mkdirp": "^1.0.2",
|
|
66
|
-
"@types/node": "^
|
|
68
|
+
"@types/node": "^20.4.0",
|
|
67
69
|
"@types/rimraf": "^3.0.2",
|
|
68
|
-
"@types/uuid": "^9.0.
|
|
70
|
+
"@types/uuid": "^9.0.2",
|
|
71
|
+
"ts-node": "^10.9.1"
|
|
69
72
|
}
|
|
70
73
|
}
|