mirror of https://github.com/arendst/Tasmota.git
v6.2.1.1 - Released v6.2.1
Released v6.2.1 to solve important issues
This commit is contained in:
parent
07dafe1631
commit
eaff296262
|
@ -104,6 +104,12 @@ See [Tasmota ESP/Arduino library version related issues](https://github.com/aren
|
||||||
| USE_RF_FLASH | - | - | x | x | x |
|
| USE_RF_FLASH | - | - | x | x | x |
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
Version 6.2.1 20180905
|
||||||
|
* Fix possible ambiguity on command parameters if StateText contains numbers only (#3656)
|
||||||
|
* Fix Wemo emulation to select the first relay when more than one relay is present (#3657)
|
||||||
|
* Fix possible exception due to buffer overflow (#3659)
|
||||||
|
* Fix lost energy today and total energy value after power cycle (#3689)
|
||||||
|
|
||||||
Version 6.2.0 20180901
|
Version 6.2.0 20180901
|
||||||
* Allow user override of define MAX_RULE_VARS and MAX_RULE_TIMERS (#3561)
|
* Allow user override of define MAX_RULE_VARS and MAX_RULE_TIMERS (#3561)
|
||||||
* Disable wifi sleep for both Esp8266/Arduino core 2.4.1 and 2.4.2 to solve device freeze caused by Espressif SDK bug (#3554)
|
* Disable wifi sleep for both Esp8266/Arduino core 2.4.1 and 2.4.2 to solve device freeze caused by Espressif SDK bug (#3554)
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* 6.2.0.2 20180904
|
/* 6.2.1.1 20180905
|
||||||
* Rewrite energy monitoring using energy sensor driver modules
|
* Rewrite energy monitoring using energy sensor driver modules
|
||||||
* Fix lost today and total energy value after power cycle (#3689)
|
|
||||||
*
|
|
||||||
* 6.2.0.1 20180902
|
|
||||||
* Fix possible ambiguity on command parameters if StateText contains numbers only (#3656)
|
|
||||||
* Fix possible exception due to buffer overflow (#3659)
|
|
||||||
* Add Wifi channel number to state message (#3664)
|
* Add Wifi channel number to state message (#3664)
|
||||||
* Fix Wemo emulation to select the first relay when more than one relay is present (#3657)
|
|
||||||
* Add support for Shelly 1 and basic support for Shelly 2 - No energy monitoring yet (#2789)
|
* Add support for Shelly 1 and basic support for Shelly 2 - No energy monitoring yet (#2789)
|
||||||
*
|
*
|
||||||
|
* 6.2.1 20180905
|
||||||
|
* Fix possible ambiguity on command parameters if StateText contains numbers only (#3656)
|
||||||
|
* Fix Wemo emulation to select the first relay when more than one relay is present (#3657)
|
||||||
|
* Fix possible exception due to buffer overflow (#3659)
|
||||||
|
* Fix lost energy today and total energy value after power cycle (#3689)
|
||||||
|
*
|
||||||
* 6.2.0 20180901
|
* 6.2.0 20180901
|
||||||
* Allow user override of define MAX_RULE_VARS and MAX_RULE_TIMERS (#3561)
|
* Allow user override of define MAX_RULE_VARS and MAX_RULE_TIMERS (#3561)
|
||||||
* Disable wifi sleep for both Esp8266/Arduino core 2.4.1 and 2.4.2 to solve device freeze caused by Espressif SDK bug (#3554)
|
* Disable wifi sleep for both Esp8266/Arduino core 2.4.1 and 2.4.2 to solve device freeze caused by Espressif SDK bug (#3554)
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#ifndef _SONOFF_VERSION_H_
|
#ifndef _SONOFF_VERSION_H_
|
||||||
#define _SONOFF_VERSION_H_
|
#define _SONOFF_VERSION_H_
|
||||||
|
|
||||||
#define VERSION 0x06020002
|
#define VERSION 0x06020101
|
||||||
|
|
||||||
#define D_PROGRAMNAME "Sonoff-Tasmota"
|
#define D_PROGRAMNAME "Sonoff-Tasmota"
|
||||||
#define D_AUTHOR "Theo Arends"
|
#define D_AUTHOR "Theo Arends"
|
||||||
|
|
|
@ -397,7 +397,6 @@ void HandleUpnpEvent()
|
||||||
uint8_t device = (light_type) ? devices_present : 1; // Select either a configured light or relay1
|
uint8_t device = (light_type) ? devices_present : 1; // Select either a configured light or relay1
|
||||||
ExecuteCommandPower(device, power, SRC_WEMO);
|
ExecuteCommandPower(device, power, SRC_WEMO);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else if(request.indexOf(F("GetBinaryState")) > 0){
|
else if(request.indexOf(F("GetBinaryState")) > 0){
|
||||||
state_xml.replace(F("Set"), F("Get"));
|
state_xml.replace(F("Set"), F("Get"));
|
||||||
|
|
Loading…
Reference in New Issue