Skip to content

Commit 01eef2e

Browse files
committed
Prep release v14.4.0
1 parent 055c200 commit 01eef2e

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

README.md

+6-6
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.3.0.0-blue.svg)](https://github.com/tasmota/decode-config/tree/master)
9+
[![master](https://img.shields.io/badge/master-v14.4.0.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.3.0.7-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
46+
[![development version](https://img.shields.io/badge/development-v14.4.0.0-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
4747

4848
## Table of contents
4949
<details>
@@ -338,7 +338,7 @@ Example:
338338
decode-config -c my.conf -s tasmota-4281 --backup-file Config_@d_@v
339339
```
340340

341-
This will create a file like `Config_Tasmota_14.3.json` (the part `Tasmota` and `14.3` will choosen related to your device configuration).
341+
This will create a file like `Config_Tasmota_14.4.json` (the part `Tasmota` and `14.4` will choosen related to your device configuration).
342342

343343
#### Save multiple backup at once
344344

@@ -350,18 +350,18 @@ decode-config -c my.conf -s tasmota-4281 -o Config_@d_@v -o Backup_@H.json -o Ba
350350

351351
creates three backup files:
352352

353-
* `Config_Tasmota_14.3.json` using JSON format
353+
* `Config_Tasmota_14.4.json` using JSON format
354354
* `Backup_tasmota-4281.json` using JSON format
355355
* `Backup_tasmota-4281.dmp` using Tasmota configuration file format
356356

357357
### Restore backup
358358

359359
Reading back a previously saved backup file, use the `--restore-file <filename>` parameter.
360360

361-
To restore the previously save backup file `Config_Tasmota_14.3.json` to device `tasmota-4281` use:
361+
To restore the previously save backup file `Config_Tasmota_14.4.json` to device `tasmota-4281` use:
362362

363363
```bash
364-
decode-config -c my.conf -s tasmota-4281 --restore-file Config_Tasmota_14.3
364+
decode-config -c my.conf -s tasmota-4281 --restore-file Config_Tasmota_14.4
365365
```
366366

367367
Restore operation also allows placeholders **@v**, **@d**, **@f**, **@h** or **@H** like in backup filenames so we can use the same naming as for the backup process:

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.3.0.7',
5+
'VERSION': '14.4.0.0',
66
'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota',
77
'CLASSIFIER': 'Development Status :: 4 - Beta',
88
'URL': 'https://github.com/tasmota/decode-config',
@@ -2941,7 +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)
2945+
# ======================================================================
29442946
SETTINGS = [
2947+
(0x0E040000,0x1000, SETTING_14_4_0_0),
29452948
(0x0E030007,0x1000, SETTING_14_3_0_7),
29462949
(0x0E030005,0x1000, SETTING_14_3_0_5),
29472950
(0x0E030004,0x1000, SETTING_14_3_0_4),

0 commit comments

Comments
 (0)