Bump version to v2022.1.4

This commit is contained in:
Theo Arends 2022-02-04 12:00:53 +01:00
parent bd80e67a22
commit c47fef51bc
4 changed files with 13 additions and 4 deletions

View File

@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - Development
## [2022.1.4]
### Added
### Changed
- Version display from 2022.01.3 to 2022.1.4
### Fixed
## [2022.01.3]
### Added
- Command ``WebTime <start_pos>,<end_pos>`` to show part of date and/or time in web gui based on "2017-03-07T11:08:02-07:00"

View File

@ -100,7 +100,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
[Complete list](BUILDS.md) of available feature and sensors.
## Changelog v2022.01.3
## Changelog v2022.1.4
### Added
- Command ``Json {<Tasmota commands>}`` to enable input of any command as JSON tokens [#14568](https://github.com/arendst/Tasmota/issues/14568)
- Command ``SetOption44 1..100`` to set base tolerance percentage for matching incoming IR messages (default 25, max 100) [#14555](https://github.com/arendst/Tasmota/issues/14555)

View File

@ -414,8 +414,8 @@ void setup(void) {
memcpy_P(TasmotaGlobal.version, VERSION_MARKER, 1); // Dummy for compiler saving VERSION_MARKER
snprintf_P(TasmotaGlobal.version, sizeof(TasmotaGlobal.version), PSTR("%d%d.%02d"), VERSION >> 24 & 0xff, VERSION >> 16 & 0xff, VERSION >> 8 & 0xff); // Release version 2022.01
if (VERSION & 0xff) { // Development or patched version 2022.01.10
snprintf_P(TasmotaGlobal.version, sizeof(TasmotaGlobal.version), PSTR("%d%d.%d"), VERSION >> 24 & 0xff, VERSION >> 16 & 0xff, VERSION >> 8 & 0xff); // Release version 2022.1
if (VERSION & 0xff) { // Development or patched version 2022.1.10
snprintf_P(TasmotaGlobal.version, sizeof(TasmotaGlobal.version), PSTR("%s.%d"), TasmotaGlobal.version, VERSION & 0xff);
}

View File

@ -20,6 +20,6 @@
#ifndef _TASMOTA_VERSION_H_
#define _TASMOTA_VERSION_H_
const uint32_t VERSION = 0x14160103; // 2022.01.3
const uint32_t VERSION = 0x14160104; // 2022.1.4
#endif // _TASMOTA_VERSION_H_