@camera.ui/camera-ui-reolink 1.2.7 → 1.2.8
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 +8 -0
- package/bundle.zip +0 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.2.8]
|
|
2
|
+
|
|
3
|
+
- PTZ cameras show their saved positions. The presets you set up in the Reolink app appear in the PTZ controls and moving to one is a click; the list is re-read every minute, so renamed or newly added presets show up on their own
|
|
4
|
+
|
|
5
|
+
- Cameras no longer show up as offline over a shaky network. A busy camera answers the connection check late because its reply waits behind the video, and that was counted as a dead camera. Video arriving on the connection now counts as proof that the camera is there, and a camera gets 30 seconds to come back before it is reported offline
|
|
6
|
+
- One stuttering stream no longer drops the whole camera. A stream that goes quiet is restarted on its own, events and the other streams keep running
|
|
7
|
+
- A camera that cannot deliver its video in time no longer leaves the live view stuck seconds in the past. The stream skips the old pictures and continues at the next full frame, so the live view stays live. The new camera setting "Catch Up To Live" sets how many seconds the picture may trail before that happens and takes effect right away; skipped seconds are missing from recordings too, so set it to 0 to keep every frame and accept the delay
|
|
8
|
+
|
|
1
9
|
## [1.2.7]
|
|
2
10
|
|
|
3
11
|
- Live streams run close to realtime now. Every stream used to be delayed by a fixed buffer before it left the plugin; that buffer is gone and frames are passed on the moment the camera sends them
|
package/bundle.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Reolink",
|
|
3
3
|
"name": "@camera.ui/camera-ui-reolink",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.8",
|
|
5
5
|
"description": "Integrates Reolink cameras and doorbells into camera.ui via the native Baichuan protocol, with device discovery, live streaming, two-way audio, and motion, AI object, battery and doorbell events.",
|
|
6
6
|
"author": "seydx (https://github.com/cameraui/plugins)",
|
|
7
7
|
"main": "./main.go",
|
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
"protocolLevel": 2
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"@camera.ui/camera-ui-reolink-darwin-arm64": "1.2.
|
|
48
|
-
"@camera.ui/camera-ui-reolink-darwin-amd64": "1.2.
|
|
49
|
-
"@camera.ui/camera-ui-reolink-linux-amd64": "1.2.
|
|
50
|
-
"@camera.ui/camera-ui-reolink-linux-arm64": "1.2.
|
|
51
|
-
"@camera.ui/camera-ui-reolink-windows-amd64": "1.2.
|
|
52
|
-
"@camera.ui/camera-ui-reolink-windows-arm64": "1.2.
|
|
53
|
-
"@camera.ui/camera-ui-reolink-linux-amd64-musl": "1.2.
|
|
54
|
-
"@camera.ui/camera-ui-reolink-linux-arm64-musl": "1.2.
|
|
47
|
+
"@camera.ui/camera-ui-reolink-darwin-arm64": "1.2.8",
|
|
48
|
+
"@camera.ui/camera-ui-reolink-darwin-amd64": "1.2.8",
|
|
49
|
+
"@camera.ui/camera-ui-reolink-linux-amd64": "1.2.8",
|
|
50
|
+
"@camera.ui/camera-ui-reolink-linux-arm64": "1.2.8",
|
|
51
|
+
"@camera.ui/camera-ui-reolink-windows-amd64": "1.2.8",
|
|
52
|
+
"@camera.ui/camera-ui-reolink-windows-arm64": "1.2.8",
|
|
53
|
+
"@camera.ui/camera-ui-reolink-linux-amd64-musl": "1.2.8",
|
|
54
|
+
"@camera.ui/camera-ui-reolink-linux-arm64-musl": "1.2.8"
|
|
55
55
|
},
|
|
56
56
|
"files": [
|
|
57
57
|
"bundle.zip",
|