diff --git a/CHANGELOG.md b/CHANGELOG.md index 126ce87e..0b25e6ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.6.0] 2017-02-05 +### Added +- Added support for toggle switches +- Allow reset the board via an MQTT message +- Allow reset the board via an RPC (HTTP) message +- Added support for ADC121 I2C for current monitoring (Check [http://tinkerman.cat/power-monitoring-sonoff-th-adc121/](http://tinkerman.cat/power-monitoring-sonoff-th-adc121/)) +- Reporting voltage to Domoticz (only HLW8012) +- Map buttons events to actions (toggle relay, AP mode, reset, pulse mode) + +### Changed +- Reporting energy incrementals (Domoticz, MQTT) + +### Removed +- Removed current monitor bypass when relay is OFF +- Removed energy API entry point + ## [1.5.4] 2017-02-03 ### Fixed - Issue #50. Fix type bug in window variable when calculating energy for HLW8012 devices (Sonoff POW) diff --git a/README.md b/README.md index 65dbcbc6..36a20269 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ESPurna ("spark" in Catalan) is a custom firmware for ESP8266 based smart switch It was originally developed with the **[IteadStudio Sonoff](https://www.itead.cc/sonoff-wifi-wireless-switch.html)** in mind but now it supports a growing number of ESP8266-based boards. It uses the Arduino Core for ESP8266 framework and a number of 3rd party libraries. -**Current Release Version is 1.5.4**, read the [changelog](CHANGELOG.md). +**Current Release Version is 1.6.0**, read the [changelog](CHANGELOG.md). ## Features diff --git a/code/espurna/config/version.h b/code/espurna/config/version.h index 5d667f4b..10ed6cb1 100644 --- a/code/espurna/config/version.h +++ b/code/espurna/config/version.h @@ -1,4 +1,4 @@ #define APP_NAME "ESPurna" -#define APP_VERSION "1.5.4" +#define APP_VERSION "1.6.0" #define APP_AUTHOR "xose.perez@gmail.com" #define APP_WEBSITE "http://tinkerman.cat" diff --git a/code/espurna/data/index.html.gz b/code/espurna/data/index.html.gz index 4e3c56dc..2ed0b47a 100644 Binary files a/code/espurna/data/index.html.gz and b/code/espurna/data/index.html.gz differ