Bump version 8.1.0.5

This commit is contained in:
Theo Arends 2020-01-26 14:20:40 +01:00
parent 5b0259e7c3
commit ff01f934e2
3 changed files with 8 additions and 3 deletions

View File

@ -52,11 +52,12 @@ The following binary downloads have been compiled with ESP8266/Arduino library c
## Changelog
### Version 8.1.0.4
### Version 8.1.0.5
- Change Lights: simplified gamma correction and 10 bits internal computation
- Change commands ``Prefix``, ``Ssid``, ``StateText``, ``NTPServer``, and ``FriendlyName`` displaying all items
- Change IRremoteESP8266 library updated to v2.7.2
- Change Zigbee command prefix from ``Zigbee*`` to ``Zb*``
- Fix Sonoff Bridge, Sc, L1, iFan03 and CSE7766 serial interface to forced speed, config and disable logging
- Fix commands ``Display`` and ``Counter`` from overruling command processing (#7322)
- Fix ``White`` added to light status (#7142)

View File

@ -1,7 +1,12 @@
## Unreleased (development)
### 8.1.0.5 20200126
- Bump version
### 8.1.0.4 20200116
- Change Zigbee command prefix from ``Zigbee*`` to ``Zb*``
- Fix ``PowerDelta`` zero power detection (#7515)
- Fix OTA minimal gzipped detection regression from 8.1.0.3
- Fix ``RGBWWTable`` ignored (#7572)
@ -11,7 +16,6 @@
- Add SoftwareSerial to CSE7766 driver allowing different GPIOs (#7563)
- Add optional parameter <startcolor> to command ``Scheme <scheme>, <startcolor>`` to control initial start color
- Add rule trigger on one level deeper using syntax with two ``#`` like ``on zigbeereceived#vibration_sensor#aqaracubeside=0 do ...``
- Change Zigbee commands renamed to ``Zb*``
### 8.1.0.3 20200106

View File

@ -20,7 +20,7 @@
#ifndef _TASMOTA_VERSION_H_
#define _TASMOTA_VERSION_H_
const uint32_t VERSION = 0x08010004;
const uint32_t VERSION = 0x08010005;
// Lowest compatible version
const uint32_t VERSION_COMPATIBLE = 0x07010006;