diff --git a/README.md b/README.md index 343cd2a..ac7dbe2 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.1.0.2-blue.svg)](https://github.com/tasmota/decode-config/tree/development) +[![development version](https://img.shields.io/badge/development-v14.1.0.3-blue.svg)](https://github.com/tasmota/decode-config/tree/development) ## Table of contents
diff --git a/decode-config.py b/decode-config.py index 195cd23..19233c6 100755 --- a/decode-config.py +++ b/decode-config.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- from __future__ import print_function METADATA = { - 'VERSION': '14.1.0.2', + 'VERSION': '14.1.0.3', 'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota', 'CLASSIFIER': 'Development Status :: 4 - Beta', 'URL': 'https://github.com/tasmota/decode-config', @@ -2854,7 +2854,10 @@ def match(self, setting_hardware, config_version): 'sserial_mode': (HARDWARE.ESP, 'B', 0xF41, (None, '0 <= $ <= 3', ('Serial', '"SSerialMode {}".format($)')) ), }) # ====================================================================== +SETTING_14_1_0_3 = copy.copy(SETTING_14_1_0_2) +# ====================================================================== SETTINGS = [ + (0x0E010003,0x1000, SETTING_14_1_0_3), (0x0E010002,0x1000, SETTING_14_1_0_2), (0x0E000004,0x1000, SETTING_14_0_0_4), (0x0E000002,0x1000, SETTING_14_0_0_2),