mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
update release version, renamed Beta to Development
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
#define APP_VERSION "1.9.4b3"
|
||||
#define APP_VERSION "1.9.4b4"
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user