From d38a7d4ff6dc824c6613d3753b02af5ec5a4c181 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sun, 18 Oct 2020 22:47:34 -0700 Subject: [PATCH] AMT manager improvements. --- amtmanager.js | 3 ++- views/default.handlebars | 8 +------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/amtmanager.js b/amtmanager.js index 47e709ad..70753420 100644 --- a/amtmanager.js +++ b/amtmanager.js @@ -948,11 +948,12 @@ module.exports.CreateAmtManager = function(parent) { if (changes == true) { var t = Clone(dev.cira.xxEnvironementDetection); t['DetectionStrings'] = editEnvironmentDetectionTmp; + dev.cira.envclear = (editEnvironmentDetectionTmp.length == 0); dev.amtstack.Put('AMT_EnvironmentDetectionSettingData', t, function (stack, name, responses, status) { const dev = stack.dev; if (isAmtDeviceValid(dev) == false) return; // Device no longer exists, ignore this request. if (status != 200) { dev.consoleMsg("Failed to set environement detection (" + status + ")."); removeAmtDevice(dev); return; } - dev.consoleMsg("Environment detection set."); + if (dev.cira.envclear) { dev.consoleMsg("Environment detection cleared."); } else { dev.consoleMsg("Environment detection set."); } devTaskCompleted(dev); }, 0, 1); } else { diff --git a/views/default.handlebars b/views/default.handlebars index 7874e283..6b387941 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -9597,13 +9597,7 @@ x = addHtmlValue("Password*", '') x += addHtmlValue("Password*", '') if ((ptype == 2) && (currentMesh.mtype == 2)) { x += addHtmlValue("Password mismatch", ''); } - if ((features & 0x400) == 0) { - if (ptype == 2) { - x += addHtmlValue('' + "CIRA" + '', ''); - } else { - x += addHtmlValue('' + "CIRA" + '', ''); - } - } + if ((features & 0x400) == 0) { x += addHtmlValue('' + "CIRA" + '', ''); } x += '
' + "* Leave blank to assign a random password to each device." + '
'; if (currentMesh.mtype == 2) { if (ptype == 2) {