@apocaliss92/scrypted-reolink-native 0.2.4 → 0.2.5
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 +1 -1
- package/src/camera.ts +6 -0
package/dist/plugin.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/src/camera.ts
CHANGED
|
@@ -2698,6 +2698,12 @@ export class ReolinkCamera extends BaseBaichuanClass implements VideoCamera, Cam
|
|
|
2698
2698
|
this.storageSettings.settings.clipsSource.hide = !this.nvrDevice;
|
|
2699
2699
|
this.storageSettings.settings.clipsSource.defaultValue = this.nvrDevice ? "NVR" : "Device";
|
|
2700
2700
|
|
|
2701
|
+
this.storageSettings.settings.enableVideoclips.hide = !!this.multiFocalDevice;
|
|
2702
|
+
this.storageSettings.settings.videoclipsDaysToPreload.hide = !!this.multiFocalDevice;
|
|
2703
|
+
this.storageSettings.settings.videoclipsRegularChecks.hide = !!this.multiFocalDevice;
|
|
2704
|
+
this.storageSettings.settings.loadVideoclips.hide = !!this.multiFocalDevice;
|
|
2705
|
+
this.storageSettings.settings.downloadVideoclipsLocally.hide = !!this.multiFocalDevice;
|
|
2706
|
+
|
|
2701
2707
|
this.storageSettings.settings.videoclipsRegularChecks.defaultValue = this.isBattery ? 120 : 30;
|
|
2702
2708
|
|
|
2703
2709
|
this.storageSettings.settings.batteryUpdateIntervalMinutes.hide = !this.isBattery;
|