Skip to content

Commit d90dfa1

Browse files
author
Norbert Richter
committed
Merge branch 'development'
2 parents 5353fb6 + 8a2b643 commit d90dfa1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Convert, backup and restore configuration data of devices flashed with [Tasmota
66
<img src="https://github.com/tasmota/decode-config/blob/master/media/pic/decode-config.png" alt="Overview" title="decode-config Overview" width="600">
77

88
<!-- markdownlint-disable MD033 -->
9-
[![master](https://img.shields.io/badge/master-v14.4.0.0-blue.svg)](https://github.com/tasmota/decode-config/tree/master)
9+
[![master](https://img.shields.io/badge/master-v14.4.1.0-blue.svg)](https://github.com/tasmota/decode-config/tree/master)
1010
[![GitHub download](https://img.shields.io/github/downloads/tasmota/decode-config/total.svg)](https://github.com/tasmota/decode-config/releases/latest)
1111
[![PyPI version](https://badge.fury.io/py/decode-config.svg)](https://badge.fury.io/py/decode-config)
1212
![PyPI downloads](https://img.shields.io/pypi/dm/decode-config?label=pypi%20downloads)
@@ -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.0.0-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
46+
[![development version](https://img.shields.io/badge/development-v14.4.1.0-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.4.0.0',
5+
'VERSION': '14.4.1.0',
66
'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota',
77
'CLASSIFIER': 'Development Status :: 5 - Production/Stable',
88
'URL': 'https://github.com/tasmota/decode-config',
@@ -2941,10 +2941,10 @@ def match(self, setting_hardware, config_version):
29412941
'no_export_energy_today': (HARDWARE.ESP, '<L', (0xF74,1,16), (None, None, ('SetOption', '"SO162 {}".format($)')) ),
29422942
})
29432943
# ======================================================================
2944-
SETTING_14_4_0_0 = copy.copy(SETTING_14_3_0_7)
2944+
SETTING_14_4_1_0 = copy.copy(SETTING_14_3_0_7)
29452945
# ======================================================================
29462946
SETTINGS = [
2947-
(0x0E040000,0x1000, SETTING_14_4_0_0),
2947+
(0x0E040100,0x1000, SETTING_14_4_1_0),
29482948
(0x0E030007,0x1000, SETTING_14_3_0_7),
29492949
(0x0E030005,0x1000, SETTING_14_3_0_5),
29502950
(0x0E030004,0x1000, SETTING_14_3_0_4),

0 commit comments

Comments
 (0)