Skip to content

Commit f165333

Browse files
committed
Bump to v14.5.0.3
1 parent 2c565a9 commit f165333

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.5.0.2-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
46+
[![development version](https://img.shields.io/badge/development-v14.5.0.3-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
4747

4848
## Table of contents
4949
<details>

decode-config.py

Lines changed: 3 additions & 3 deletions
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.5.0.2',
5+
'VERSION': '14.5.0.3',
66
'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota',
77
'CLASSIFIER': 'Development Status :: 4 - Beta',
88
'URL': 'https://github.com/tasmota/decode-config',
@@ -2969,10 +2969,10 @@ def match(self, setting_hardware, config_version):
29692969
'wizmote_enabled': (HARDWARE.ESP, '<L', (0xF74,1,18), (None, None, ('SetOption', '"SO164 {}".format($)')) ),
29702970
})
29712971
# ======================================================================
2972-
SETTING_14_5_0_2 = copy.copy(SETTING_14_4_1_4)
2972+
SETTING_14_5_0_3 = copy.copy(SETTING_14_4_1_4)
29732973
# ======================================================================
29742974
SETTINGS = [
2975-
(0x0E050002,0x1000, SETTING_14_5_0_2),
2975+
(0x0E050003,0x1000, SETTING_14_5_0_3),
29762976
(0x0E040104,0x1000, SETTING_14_4_1_4),
29772977
(0x0E040103,0x1000, SETTING_14_4_1_3),
29782978
(0x0E040102,0x1000, SETTING_14_4_1_2),

0 commit comments

Comments
 (0)