Skip to content

Commit 24918f0

Browse files
committed
Bump to v14.4.1.4
1 parent 635e29c commit 24918f0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Comparing backup files created by **decode-config** and [.dmp](#dmp-format) file
4343
Using the latest development version of decode-config is only necessary if you also use the latest development version of Tasmota.
4444

4545
<!-- markdownlint-disable MD033 -->
46-
[![development version](https://img.shields.io/badge/development-v14.4.1.3-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
46+
[![development version](https://img.shields.io/badge/development-v14.4.1.4-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
4747

4848
## Table of contents
4949
<details>

decode-config.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
from __future__ import print_function
44
METADATA = {
5-
'VERSION': '14.4.1.3',
5+
'VERSION': '14.4.1.4',
66
'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota',
77
'CLASSIFIER': 'Development Status :: 4 - Beta',
88
'URL': 'https://github.com/tasmota/decode-config',
@@ -2964,7 +2964,10 @@ def match(self, setting_hardware, config_version):
29642964
'light_pixels_w_first': (HARDWARE.ESP, '<L', (0xFD8,1,8), (None, None, ('Light', None)) ),
29652965
})
29662966
# ======================================================================
2967+
SETTING_14_4_1_4 = copy.copy(SETTING_14_4_1_3)
2968+
# ======================================================================
29672969
SETTINGS = [
2970+
(0x0E040104,0x1000, SETTING_14_4_1_4),
29682971
(0x0E040103,0x1000, SETTING_14_4_1_3),
29692972
(0x0E040102,0x1000, SETTING_14_4_1_2),
29702973
(0x0E040101,0x1000, SETTING_14_4_1_1),

0 commit comments

Comments
 (0)