Rolling 20211223

This commit is contained in:
jomjol
2021-12-23 08:03:46 +01:00
parent 61bf536207
commit 58a0297915
5 changed files with 16 additions and 2 deletions

View File

@@ -11,6 +11,16 @@
____ ____
#### #14 Backup and restore option for configuration
* https://github.com/jomjol/AI-on-the-edge-device/issues/459
* Implement a zip file compression for store and restore
* Update the html to handle it
#### #13 Manage non linear gauge without CNN re-training #### #13 Manage non linear gauge without CNN re-training
* https://github.com/jomjol/AI-on-the-edge-device/issues/443 * https://github.com/jomjol/AI-on-the-edge-device/issues/443

View File

@@ -52,6 +52,10 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
------ ------
##### Rolling (2021-12-23)
- Removed regex constrain from MQTT topic
##### Rolling (2021-12-12) ##### Rolling (2021-12-12)
- Corrected error handling: in case of error (too high rating, negative rate, ...) value, rate, timestamp are not transmitted any more - only the error text itself is send - Corrected error handling: in case of error (too high rating, negative rate, ...) value, rate, timestamp are not transmitted any more - only the error text itself is send

Binary file not shown.

View File

@@ -85,7 +85,7 @@ function ParseConfig() {
category[catname]["found"] = false; category[catname]["found"] = false;
param[catname] = new Object(); param[catname] = new Object();
ParamAddValue(param, catname, "Uri"); ParamAddValue(param, catname, "Uri");
ParamAddValue(param, catname, "MainTopic", 1, false, [/^([a-zA-Z0-9_-]+\/){0,10}[a-zA-Z0-9_-]+$/]); ParamAddValue(param, catname, "MainTopic", 1, false);
ParamAddValue(param, catname, "ClientID"); ParamAddValue(param, catname, "ClientID");
ParamAddValue(param, catname, "user"); ParamAddValue(param, catname, "user");
ParamAddValue(param, catname, "password"); ParamAddValue(param, catname, "password");

View File

@@ -1 +1 @@
11.3.0 11.4.0