From ecd809f3281596d1719f23686dd49bb7f059e1ea Mon Sep 17 00:00:00 2001 From: "Pawel Spychalski (DzikuVx)" Date: Mon, 31 May 2021 14:48:36 +0200 Subject: [PATCH] Allow FW 3.1 to connect --- js/data_storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/data_storage.js b/js/data_storage.js index 45afaedf..848d1288 100755 --- a/js/data_storage.js +++ b/js/data_storage.js @@ -3,7 +3,7 @@ var CONFIGURATOR = { // all versions are specified and compared using semantic versioning http://semver.org/ 'minfirmwareVersionAccepted': '3.0.0', - 'maxFirmwareVersionAccepted': '3.1.0', // Condition is < (lt) so we accept all in 3.0 branch + 'maxFirmwareVersionAccepted': '3.2.0', // Condition is < (lt) so we accept all in 3.0 branch 'connectionValid': false, 'connectionValidCliOnly': false, 'cliActive': false,