diff --git a/CHANGELOG.md b/CHANGELOG.md index b602ba19..9bf79c42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,27 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.10.1] 2017-12-05 +### Fixed +- Fix Sonoff RFBridge learn message from web UI (#287) +- Fix unstability in "one and just one" sync mode (#290) +- Fix unnecessary inclusion of my92xx library (#293) +- Limit the MQTT queue to 10 messages when "Use JSON payload" enabled (#296) +- Fix Sonoff RFBridge OFF button toggling switch (#303) +- Allow defining only ON or OFF codes in Sonoff RFBridge (#304) +- Disabled terminal support for Sonoff Dual (#310) + +### Added +- Support for SI7021-based sensor by Itead Studio compatible with Sonoff TH (#216) +- Support for Sonoff Dual R2 (#286) +- MQTT group topics (sync two or more switches from different devices, #300) +- Color transitions (enabled by default, can be disabled from web UI) +- Option to disable MQTT support at build time + +### Changed +- Decreased PWM frequency for dimmer lights +- Changed password policy (#297) + ## [1.10.0] 2017-11-26 ### Fixed - Temperatures with 1 decimal resolution diff --git a/README.md b/README.md index 66bcf289..58f1d2d8 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.10.0**, read the [changelog](https://bitbucket.org/xoseperez/espurna/src/master/CHANGELOG.md). +> **Current Release Version is 1.10.1**, read the [changelog](https://bitbucket.org/xoseperez/espurna/src/master/CHANGELOG.md). > **NOTICE**: Default flash layout changed in 1.8.3, as an unpredicted consequence devices will not be able to persist/retrieve configuration if flashed with 1.8.3 via **OTA** from **PlatformIO**. Please check issue #187. diff --git a/code/espurna/config/version.h b/code/espurna/config/version.h index 42ff7e8a..e6ad2534 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.10.1b" +#define APP_VERSION "1.10.1" #define APP_AUTHOR "xose.perez@gmail.com" #define APP_WEBSITE "http://tinkerman.cat"