update release version, renamed Beta to Development

This commit is contained in:
Paul
2019-10-30 23:01:41 +01:00
parent e5920151b7
commit 6adccdfb1d
3 changed files with 6 additions and 4 deletions

View File

@@ -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

View File

@@ -1 +1 @@
#define APP_VERSION "1.9.4b3"
#define APP_VERSION "1.9.4b4"

View File

@@ -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();
}