From 3df2c9f28c98acae151222fa7085046af8da301d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Wed, 8 Nov 2017 16:22:49 +0100 Subject: [PATCH] Version 1.9.8 --- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 2 +- code/espurna/config/version.h | 2 +- code/platformio.ini | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fff5085b..43a82600 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,26 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.9.8] 2017-11-08 +### Fixed +- Removed dimmer lights flicker when saving to EEPROM (#191) +- Fixed low brightness in dimmer lights (#157) +- Fixed blank fields in energy (#258, #259) +- Fixed support for Arilux AL-LC06 +- Updated fauxmoESP library with support for GetBinaryState actions + +### Added +- Support for IR remotes +- Option to select power read and report interval from webUI +- Option to report real-time values in API, configurable via webUI +- Support for ESPurna-H Board v0.8 +- Preliminary support for Arilux E28 light bulb (untested) + +### Changed +- PWM using ESP8266_new_pwm by Stephan Bruens (https://github.com/StefanBruens/ESP8266_new_pwm) +- Using own DHT implementation (removed dependency on Adafruit libraries) +- Disabled serial debug for Sonoff RFBridge + ## [1.9.7] 2017-10-25 ### Fixed - Fix Alexa interface switching on all lights (#256) diff --git a/README.md b/README.md index a8f4025d..13025627 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.9.7**, read the [changelog](https://bitbucket.org/xoseperez/espurna/src/master/CHANGELOG.md). +> **Current Release Version is 1.9.8**, 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 19f45e0c..33c284bb 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.9.8b" +#define APP_VERSION "1.9.8" #define APP_AUTHOR "xose.perez@gmail.com" #define APP_WEBSITE "http://tinkerman.cat" diff --git a/code/platformio.ini b/code/platformio.ini index 6071544d..231ec307 100644 --- a/code/platformio.ini +++ b/code/platformio.ini @@ -11,7 +11,7 @@ debug_flags = -DDEBUG_ESP_CORE -DDEBUG_ESP_SSL -DDEBUG_ESP_WIFI -DDEBUG_ESP_HTTP build_flags_512k = ${common.build_flags} -Wl,-Tesp8266.flash.512k0.ld build_flags_1m = ${common.build_flags} -Wl,-Tesp8266.flash.1m0.ld #https://github.com/me-no-dev/ESPAsyncTCP#9b0cc37 // 2.3.0 compatible -#https://github.com/me-no-dev/ESPAsyncTCP#3795e16 // 2.4.0-rc2 compatible +#https://github.com/me-no-dev/ESPAsyncTCP#289a681 // 2.4.0-rc2 compatible lib_deps = https://github.com/xoseperez/Time ArduinoJson