mirror of https://github.com/arendst/Tasmota.git
v5.7.1
5.7.1 20170909 * Remove leading spaces from MQTT data * Fix webconsole special character entry * Allow # as prefix for color value * Fix Alexa detection and Hue App Update Request (#698, #854)
This commit is contained in:
parent
7ccdb49671
commit
8585465967
|
@ -1,7 +1,7 @@
|
|||
## Sonoff-Tasmota
|
||||
Provide ESP8266 based Sonoff by [iTead Studio](https://www.itead.cc/) and ElectroDragon IoT Relay with Serial, Web and MQTT control allowing 'Over the Air' or OTA firmware updates using Arduino IDE.
|
||||
|
||||
Current version is **5.7.0b** - See [sonoff/_releasenotes.ino](https://github.com/arendst/Sonoff-Tasmota/blob/development/sonoff/_releasenotes.ino) for change information.
|
||||
Current version is **5.7.1** - See [sonoff/_releasenotes.ino](https://github.com/arendst/Sonoff-Tasmota/blob/development/sonoff/_releasenotes.ino) for change information.
|
||||
|
||||
### ATTENTION All versions
|
||||
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
/* 5.7.0b
|
||||
* Add snfled UNDOCA
|
||||
* Allow # as prefix for color value for ws2812 too
|
||||
*
|
||||
* 5.7.0a
|
||||
/* 5.7.1 20170909
|
||||
* Remove leading spaces from MQTT data
|
||||
* Fix webconsole special character entry
|
||||
* Allow # as prefix for color value
|
||||
* Fix Alexa detection and Hue App Update Request (#698, #854)
|
||||
*
|
||||
* 5.7.0 20170907
|
||||
* Shrink module configuration webpage
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
- Select IDE Tools - Flash Size: "1M (no SPIFFS)"
|
||||
====================================================*/
|
||||
|
||||
#define VERSION 0x05070002 // 5.7.0b
|
||||
#define VERSION 0x05070100 // 5.7.1
|
||||
|
||||
enum log_t {LOG_LEVEL_NONE, LOG_LEVEL_ERROR, LOG_LEVEL_INFO, LOG_LEVEL_DEBUG, LOG_LEVEL_DEBUG_MORE, LOG_LEVEL_ALL};
|
||||
enum week_t {Last, First, Second, Third, Fourth};
|
||||
|
|
Loading…
Reference in New Issue