From bcee8d2be4a6f1b64e65c50376e7ba5568eaffa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Wed, 25 Oct 2017 12:11:14 +0200 Subject: [PATCH] Version 1.9.7 --- CHANGELOG.md | 4 ++++ README.md | 2 +- code/espurna/config/version.h | 2 +- code/platformio.ini | 9 ++++----- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 842e46e2..fff5085b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.9.7] 2017-10-25 +### Fixed +- Fix Alexa interface switching on all lights (#256) + ## [1.9.6] 2017-10-23 ### Fixed - Fix power report in Domoticz (#236) diff --git a/README.md b/README.md index 908dff13..a8f4025d 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.6**, read the [changelog](https://bitbucket.org/xoseperez/espurna/src/master/CHANGELOG.md). +> **Current Release Version is 1.9.7**, 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 3f26a38f..64d19c0d 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.6" +#define APP_VERSION "1.9.7" #define APP_AUTHOR "xose.perez@gmail.com" #define APP_WEBSITE "http://tinkerman.cat" diff --git a/code/platformio.ini b/code/platformio.ini index 69f799d8..362798bb 100644 --- a/code/platformio.ini +++ b/code/platformio.ini @@ -4,21 +4,20 @@ src_dir = espurna data_dir = espurna/data [common] -#platform = espressif8266 -platform = espressif8266_stage +platform = espressif8266 +#platform = espressif8266_stage build_flags = -g -DMQTT_MAX_PACKET_SIZE=400 ${env.ESPURNA_FLAGS} debug_flags = -DDEBUG_ESP_CORE -DDEBUG_ESP_SSL -DDEBUG_ESP_WIFI -DDEBUG_ESP_HTTP_CLIENT -DDEBUG_ESP_HTTP_UPDATE -DDEBUG_ESP_HTTP_SERVER -DDEBUG_ESP_UPDATER -DDEBUG_ESP_OTA -DDEBUG_TLS_MEM 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#036ea44 // 2.4.0-rc2 compatible (no SSL) -#https://github.com/xoseperez/ESPAsyncTCP#066c79d // 2.4.0-rc2 compatible (with SSL) +#https://github.com/me-no-dev/ESPAsyncTCP#3795e16 // 2.4.0-rc2 compatible lib_deps = DHT sensor library Adafruit Unified Sensor https://github.com/xoseperez/Time ArduinoJson - https://github.com/xoseperez/ESPAsyncTCP#066c79d + https://github.com/me-no-dev/ESPAsyncTCP#9b0cc37 https://github.com/me-no-dev/ESPAsyncWebServer#313f337 https://github.com/marvinroger/async-mqtt-client#v0.8.1 PubSubClient