Skip to content

Commit 387bc8b

Browse files
author
Norbert Richter
committed
Prep release v14.0.0
1 parent 86ad4f7 commit 387bc8b

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 6 additions & 6 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-v13.4.0.0-blue.svg)](https://github.com/tasmota/decode-config/tree/master)
9+
[![master](https://img.shields.io/badge/master-v14.0.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-v13.4.1.2-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
46+
[![development version](https://img.shields.io/badge/development-v14.0.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_13.4.json` (the part `Tasmota` and `13.4` will choosen related to your device configuration).
341+
This will create a file like `Config_Tasmota_14.0.json` (the part `Tasmota` and `14.0` 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_13.4.json` using JSON format
353+
* `Config_Tasmota_14.0.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_13.4.json` to device `tasmota-4281` use:
361+
To restore the previously save backup file `Config_Tasmota_14.0.json` to device `tasmota-4281` use:
362362

363363
```bash
364-
decode-config -c my.conf -s tasmota-4281 --restore-file Config_Tasmota_13.4
364+
decode-config -c my.conf -s tasmota-4281 --restore-file Config_Tasmota_14.0
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

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': '13.4.1.2',
5+
'VERSION': '14.0.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',
@@ -2837,10 +2837,10 @@ def match(self, setting_hardware, config_version):
28372837
'power_lock': (HARDWARE.ESP, '<L', 0xF9C, (None, None, ('Power', '"PowerLock0 0" if 0==int($) else "PowerLock0 1" if 0xffffffff==int($) else list("PowerLock{} {}".format(i+1, (int($)>>i & 1) ) for i in range(0, 32))')) ),
28382838
})
28392839
# ======================================================================
2840-
SETTING_13_4_1_2 = copy.copy(SETTING_13_4_0_4)
2840+
SETTING_14_0_0_0 = copy.copy(SETTING_13_4_0_4)
28412841
# ======================================================================
28422842
SETTINGS = [
2843-
(0x0D040102,0x1000, SETTING_13_4_1_2),
2843+
(0x0E000000,0x1000, SETTING_14_0_0_0),
28442844
(0x0D040004,0x1000, SETTING_13_4_0_4),
28452845
(0x0D030005,0x1000, SETTING_13_3_0_5),
28462846
(0x0D030002,0x1000, SETTING_13_3_0_2),

0 commit comments

Comments
 (0)