Skip to content

Commit

Permalink
Bump to v14.0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
curzon01 committed Jun 3, 2024
1 parent e7dad54 commit 0c57c41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Comparing backup files created by **decode-config** and [.dmp](#dmp-format) file
Using the latest development version of decode-config is only necessary if you also use the latest development version of Tasmota.

<!-- markdownlint-disable MD033 -->
[![development version](https://img.shields.io/badge/development-v14.0.0.2-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
[![development version](https://img.shields.io/badge/development-v14.0.0.3-blue.svg)](https://github.com/tasmota/decode-config/tree/development)

## Table of contents
<details>
Expand Down
5 changes: 4 additions & 1 deletion decode-config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
from __future__ import print_function
METADATA = {
'VERSION': '14.0.0.2',
'VERSION': '14.0.0.3',
'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota',
'CLASSIFIER': 'Development Status :: 5 - Production/Stable',
'URL': 'https://github.com/tasmota/decode-config',
Expand Down Expand Up @@ -2842,7 +2842,10 @@ def match(self, setting_hardware, config_version):
'telegram_disable_af': (HARDWARE.ESP, '<L', (0xFA0,1,12), (None, '0 <= $ <= 1', ('Telegram', '"TmState {}".format($+6)')) ),
})
# ======================================================================
SETTING_14_0_0_3 = copy.copy(SETTING_14_0_0_2)
# ======================================================================
SETTINGS = [
(0x0E000003,0x1000, SETTING_14_0_0_3),
(0x0E000002,0x1000, SETTING_14_0_0_2),
(0x0D040004,0x1000, SETTING_13_4_0_4),
(0x0D030005,0x1000, SETTING_13_3_0_5),
Expand Down

0 comments on commit 0c57c41

Please sign in to comment.