Updated release notes and error message

This commit is contained in:
Magnus Persson 2022-08-01 21:25:21 +02:00
parent 6db6e96d90
commit 99d577d4a0
3 changed files with 13 additions and 10 deletions

View File

@ -135,7 +135,7 @@
showError("Upload failed");
},
success: function(resp) {
showSuccess("Upload completed, device is restarting. Waiting 10 seconds to refresh browser.");
showSuccess("Upload completed, device is restarting. Waiting 10 seconds to refresh browser. If you don't get any gyro readings after update, please press the reset button!");
setTimeout(() => {
window.location = "/";
}, 10000);

View File

@ -26,7 +26,7 @@
showError("Upload failed");
},
success: function(resp) {
showSuccess("Upload completed, device is restarting. Waiting 10 seconds to refresh browser.");
showSuccess("Upload completed, device is restarting. Waiting 10 seconds to refresh browser. If you don't get any gyro readings after update, please press the reset button!");
setTimeout(() => {
window.location = "/";
}, 10000);

View File

@ -8,30 +8,31 @@ v1.1.0 - beta 3
Documentation
+++++++++++++
* (beta2) Updated docs for HA integration since method was depricated
* Fixed errors in data format section
* Added q&a on formula creation and value deviation
* Added documentation for Brewpiless as target
* Updated docs for ubidots service integration.
* Added brewblox as new service
* (beta2) Updated docs for HA integration since method was depricated
User interface
++++++++++++++
* (beta2) Calibration temperature (for temp adjustment) can now be set under advanced settings.
* (beta2) Changes length of device name from 12 to 63 chars. 63 is the max limit according to mdns.
* Under format options its now possible to select brewfather ispindle format to avoid mixing endpoints.
* Added brewblox as format under format options.
* User can now edit the voltage level that forces the device into config mode (charging)
* (beta2) Calibration temperature (for temp adjustment) can now be set under advanced settings.
* (beta2) Changes length of device name from 12 to 63 chars. 63 is the max limit according to mdns.
Features
++++++++
* Added storage mode which is activated under hardware setting. When place on the cap (<5 degres tilt) the device will go into storage mode and sleep for the max allowed time.
* (beta3) Updated sensor types in home assistant (auto registration)
* (beta2) Added ${app-ver} and ${app-build} to format template as new variables.
* Added format templates for HA auto registration
* (beta2) Improved error messages when creating formula so the meaasurement points can be identified.
* (beta2) Changed defaule validation threashold from 1.6 SG to 3.0 SG, this should allow for some more variance when creating formula.
* (beta2) Updated format template for Home Assistant for using manual configuration (Aligned with new mqtt configuration format)
* (beta2) Added format template for Home Assistant with automatic device registration
* Added storage mode which is activated under hardware setting. When place on the cap (<5 degres tilt) the device will go into storage mode and sleep for the max allowed time.
* Added format templates for HA auto registration
Other
+++++
@ -42,12 +43,14 @@ Other
Issues adressed
++++++++++++++++
* BUG: Copy format templates used an old format for iSpindle and Gravmon where the token was not used.
* BUG: Gravity correction formula not calculating correctly.
* (beta3) BUG: Refactored format api to handle larger payloads.
* (beta3) BUG: After manual firmware upload the device would crash and go into wifi setup mode.
* (beta3) BUG: After manual firmware upload the device will in some cases not be able to connect with the gyro, the symptom is that it will say, "Gyro moving" in the web UI. In this case the device needs to be reset (or powered on/off). I havent found a way to fix this from the code. The message after firmware update has been updated with this information.
* (beta2) BUG: Temp corrected gravity was not used when pushing data to removed
* (beta2) BUG: Low memory in format api which resulted in mqtt template to be set to null
* (beta2) BUG: Large format templates could be saved but when loading it's only blank.
* (beta3) BUG: Refactored format api to handle larger payloads.
* BUG: Copy format templates used an old format for iSpindle and Gravmon where the token was not used.
* BUG: Gravity correction formula not calculating correctly.
v1.0.0
======