From a093a70d16ab23a4c3548c464cc3c859ed222e30 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Mon, 17 Jan 2022 21:10:23 -0800 Subject: [PATCH] zwave: fix settings descriptions. the values are hex not base64 --- plugins/zwave/package-lock.json | 4 ++-- plugins/zwave/package.json | 2 +- plugins/zwave/src/main.ts | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/zwave/package-lock.json b/plugins/zwave/package-lock.json index 56e3d4f15..0d4718b81 100644 --- a/plugins/zwave/package-lock.json +++ b/plugins/zwave/package-lock.json @@ -1,12 +1,12 @@ { "name": "@scrypted/zwave", - "version": "0.0.33", + "version": "0.0.34", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@scrypted/zwave", - "version": "0.0.33", + "version": "0.0.34", "license": "Apache", "dependencies": { "@scrypted/sdk": "file:../../sdk", diff --git a/plugins/zwave/package.json b/plugins/zwave/package.json index 630208287..5924171f7 100644 --- a/plugins/zwave/package.json +++ b/plugins/zwave/package.json @@ -1,6 +1,6 @@ { "name": "@scrypted/zwave", - "version": "0.0.33", + "version": "0.0.34", "description": "Z-Wave USB Controller for Scrypted", "author": "Scrypted", "license": "Apache", diff --git a/plugins/zwave/src/main.ts b/plugins/zwave/src/main.ts index 8a1347158..a95eb2d15 100644 --- a/plugins/zwave/src/main.ts +++ b/plugins/zwave/src/main.ts @@ -170,25 +170,25 @@ export class ZwaveControllerProvider extends ScryptedDeviceBase implements Devic title: 'Network Key', key: 'networkKey', value: this.storage.getItem('networkKey'), - description: 'The 16 byte Base64 encoded Network Security Key', + description: 'The 16 byte hex encoded Network Security Key', }, { title: 'S2 Access Control Key', key: 's2AccessControlKey', value: this.storage.getItem('s2AccessControlKey'), - description: 'The 16 byte Base64 encoded S2 Access Control Key', + description: 'The 16 byte hex encoded S2 Access Control Key', }, { title: 'S2 Authenticated Key', key: 's2AuthenticatedKey', value: this.storage.getItem('s2AuthenticatedKey'), - description: 'The 16 byte Base64 encoded S2 Authenticated Key', + description: 'The 16 byte hex encoded S2 Authenticated Key', }, { title: 'S2 Unauthenticated Key', key: 's2UnauthenticatedKey', value: this.storage.getItem('s2UnauthenticatedKey'), - description: 'The 16 byte Base64 encoded S2 Unauthenticated Key', + description: 'The 16 byte hex encoded S2 Unauthenticated Key', } ] }