diff --git a/README.md b/README.md index 148a5f2..fe20e93 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Comparing backup files created by **decode-config** and [.dmp](#dmp-format) file Using the latest development version of decode-config is only necessary if you also use the latest development version of Tasmota. -[![development version](https://img.shields.io/badge/development-v14.2.0.4-blue.svg)](https://github.com/tasmota/decode-config/tree/development) +[![development version](https://img.shields.io/badge/development-v14.2.0.6-blue.svg)](https://github.com/tasmota/decode-config/tree/development) ## Table of contents
diff --git a/decode-config.py b/decode-config.py index 6fc419f..d3eddcd 100755 --- a/decode-config.py +++ b/decode-config.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- from __future__ import print_function METADATA = { - 'VERSION': '14.2.0.4', + 'VERSION': '14.2.0.6', 'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota', 'CLASSIFIER': 'Development Status :: 4 - Beta', 'URL': 'https://github.com/tasmota/decode-config', @@ -2878,7 +2878,10 @@ def match(self, setting_hardware, config_version): 'weight_precision': (HARDWARE.ESP, 'B', 0x532, (None, '0 <= $ <= 10', ('Management', None)) ), }) # ====================================================================== +SETTING_14_2_0_6 = copy.copy(SETTING_14_2_0_4) +# ====================================================================== SETTINGS = [ + (0x0E020006,0x1000, SETTING_14_2_0_6), (0x0E020004,0x1000, SETTING_14_2_0_4), (0x0E020003,0x1000, SETTING_14_2_0_3), (0x0E010003,0x1000, SETTING_14_1_0_3),