Merge branch 'development' into release

This commit is contained in:
Theo Arends 2019-12-18 14:55:53 +01:00
commit 4db890d600
3 changed files with 3 additions and 3 deletions

View File

@ -72,4 +72,4 @@ The following binary downloads have been compiled with ESP8266/Arduino library c
- Add reporting of raw weight to JSON from HX711 to overcome auto-tare functionality by @tobox (#7171)
- Add Zigbee support for Xiaomi Aqara Vibration Sensor and Presence Sensor by Stefan Hadinger
- Add Shutter functions ramp up/down and MQTT reporting by Stefan Bode
- Add fallback functionality from version 8.x
- Add fallback support from version 8.x

View File

@ -12,7 +12,7 @@
- Change tasmota-basic.bin and FIRMWARE_BASIC to tasmota-lite.bin and FIRMWARE_LITE
- Add Zigbee send automatic ZigbeeRead after sending a command
- Add Zigbee improving Occupancy:false detection for Aqara sensor
- Add fallback functionality from version 8.x
- Add fallback support from version 8.x
### 7.1.2.5 20191213

View File

@ -1386,7 +1386,7 @@ void SettingsDelta(void)
memcpy((char*)&Settings.serial_config, (char*)&Settings.ex_serial_config, 5); // 1E4 -> EFE
}
if ((VERSION < 0x08000000) && (Settings.version > VERSION)) {
if ((VERSION < 0x08000000) && (Settings.version >= 0x08000000)) {
char temp[strlen(SettingsText(SET_OTAURL)) +1]; strncpy(temp, SettingsText(SET_OTAURL), sizeof(temp));
char temp21[strlen(SettingsText(SET_MQTTPREFIX1)) +1]; strncpy(temp21, SettingsText(SET_MQTTPREFIX1), sizeof(temp21));
char temp22[strlen(SettingsText(SET_MQTTPREFIX2)) +1]; strncpy(temp22, SettingsText(SET_MQTTPREFIX2), sizeof(temp22));