@apocaliss92/scrypted-reolink-native 0.5.11 → 0.5.13
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/dist/main.nodejs.js +1 -1
- package/dist/plugin.zip +0 -0
- package/package.json +2 -2
- package/src/camera.ts +3 -3
package/dist/plugin.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apocaliss92/scrypted-reolink-native",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.13",
|
|
4
4
|
"description": "Use any reolink camera with Scrypted, even older/unsupported models without HTTP protocol support",
|
|
5
5
|
"author": "@apocaliss92",
|
|
6
6
|
"license": "Apache",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@scrypted/common": "file:../../scrypted/common",
|
|
48
48
|
"@scrypted/rtsp": "file:../../scrypted/plugins/rtsp",
|
|
49
49
|
"@scrypted/sdk": "^0.3.118",
|
|
50
|
-
"@apocaliss92/nodelink-js": "0.4.
|
|
50
|
+
"@apocaliss92/nodelink-js": "0.4.18"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/node": "^22.0.2"
|
package/src/camera.ts
CHANGED
|
@@ -154,7 +154,7 @@ export class ReolinkCamera
|
|
|
154
154
|
// Basic connection settings
|
|
155
155
|
ipAddress: {
|
|
156
156
|
title: "IP Address",
|
|
157
|
-
hide:
|
|
157
|
+
hide: false,
|
|
158
158
|
type: "string",
|
|
159
159
|
onPut: async () => {
|
|
160
160
|
await this.credentialsChanged();
|
|
@@ -162,7 +162,7 @@ export class ReolinkCamera
|
|
|
162
162
|
},
|
|
163
163
|
username: {
|
|
164
164
|
type: "string",
|
|
165
|
-
hide:
|
|
165
|
+
hide: false,
|
|
166
166
|
title: "Username",
|
|
167
167
|
onPut: async () => {
|
|
168
168
|
await this.credentialsChanged();
|
|
@@ -170,7 +170,7 @@ export class ReolinkCamera
|
|
|
170
170
|
},
|
|
171
171
|
password: {
|
|
172
172
|
type: "password",
|
|
173
|
-
hide:
|
|
173
|
+
hide: false,
|
|
174
174
|
title: "Password",
|
|
175
175
|
onPut: async () => {
|
|
176
176
|
await this.credentialsChanged();
|