diff --git a/CHANGELOG.md b/CHANGELOG.md index 4232f2abb..bed58e5eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added `publish_always` forcing MQTT topics to be always sent regardless if the data hasn't changed - Support for DHW once (OneTime water) heating command via MQTT [issue 195](https://github.com/proddy/EMS-ESP/issues/195) +- Added scripts to automatically build firmware images on every Commit/Pull and nightly builds using TravisCI +- Added option to WebUI to also download the latest development build ### Fixed diff --git a/src/version.h b/src/version.h index b1c1b3eff..f16beb84d 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define APP_VERSION "1.9.4b3" +#define APP_VERSION "1.9.4b4" diff --git a/src/websrc/myesp.js b/src/websrc/myesp.js index e0e01267e..6a69766b4 100644 --- a/src/websrc/myesp.js +++ b/src/websrc/myesp.js @@ -922,11 +922,11 @@ function login() { function switchfirmware() { if (use_beta_firmware) { - use_beta_firmware = false; - document.getElementById("updateb").innerHTML = "Official Release"; + use_beta_firmware = false; + document.getElementById("updateb").innerHTML = "Official Release"; } else { use_beta_firmware = true; - document.getElementById("updateb").innerHTML = "Beta Build"; + document.getElementById("updateb").innerHTML = "Development Build"; } getLatestReleaseInfo(); }