Updated release notes and error message
This commit is contained in:
parent
6db6e96d90
commit
99d577d4a0
@ -135,7 +135,7 @@
|
|||||||
showError("Upload failed");
|
showError("Upload failed");
|
||||||
},
|
},
|
||||||
success: function(resp) {
|
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(() => {
|
setTimeout(() => {
|
||||||
window.location = "/";
|
window.location = "/";
|
||||||
}, 10000);
|
}, 10000);
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
showError("Upload failed");
|
showError("Upload failed");
|
||||||
},
|
},
|
||||||
success: function(resp) {
|
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(() => {
|
setTimeout(() => {
|
||||||
window.location = "/";
|
window.location = "/";
|
||||||
}, 10000);
|
}, 10000);
|
||||||
|
@ -8,30 +8,31 @@ v1.1.0 - beta 3
|
|||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
+++++++++++++
|
+++++++++++++
|
||||||
|
* (beta2) Updated docs for HA integration since method was depricated
|
||||||
* Fixed errors in data format section
|
* Fixed errors in data format section
|
||||||
* Added q&a on formula creation and value deviation
|
* Added q&a on formula creation and value deviation
|
||||||
* Added documentation for Brewpiless as target
|
* Added documentation for Brewpiless as target
|
||||||
* Updated docs for ubidots service integration.
|
* Updated docs for ubidots service integration.
|
||||||
* Added brewblox as new service
|
* Added brewblox as new service
|
||||||
* (beta2) Updated docs for HA integration since method was depricated
|
|
||||||
|
|
||||||
User interface
|
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.
|
* Under format options its now possible to select brewfather ispindle format to avoid mixing endpoints.
|
||||||
* Added brewblox as format under format options.
|
* Added brewblox as format under format options.
|
||||||
* User can now edit the voltage level that forces the device into config mode (charging)
|
* 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
|
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.
|
* (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) 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) 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) 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
|
* (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
|
Other
|
||||||
+++++
|
+++++
|
||||||
@ -42,12 +43,14 @@ Other
|
|||||||
|
|
||||||
Issues adressed
|
Issues adressed
|
||||||
++++++++++++++++
|
++++++++++++++++
|
||||||
* BUG: Copy format templates used an old format for iSpindle and Gravmon where the token was not used.
|
* (beta3) BUG: Refactored format api to handle larger payloads.
|
||||||
* BUG: Gravity correction formula not calculating correctly.
|
* (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: 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: 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.
|
* (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
|
v1.0.0
|
||||||
======
|
======
|
||||||
|
Loading…
Reference in New Issue
Block a user