From 123a4a1357976616e0eb68216616324a29ae7b0a Mon Sep 17 00:00:00 2001 From: Piotr Antczak Date: Wed, 5 Jun 2024 19:21:41 +0200 Subject: [PATCH] feat: new release - change major TC version to v12 - drop support for Tasmota version lower that v14.0.0 --- package.json | 2 +- server/config/config.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 4e2bc6af..30b17f5d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tasmocompiler", - "version": "11.4.0", + "version": "12.0.0", "private": true, "proxy": "http://localhost:3001/", "dependencies": { diff --git a/server/config/config.js b/server/config/config.js index f6a4c131..a7825214 100644 --- a/server/config/config.js +++ b/server/config/config.js @@ -3,8 +3,8 @@ const path = require('path'); const WORKDIR = process.env.WORKDIR || '/tmp'; const tasmotaRepo = path.resolve(WORKDIR, 'Tasmota'); const githubRepo = 'https://github.com/arendst/Tasmota.git'; -const minVersion = 'v13.0.0'; -const maxVersion = 'v13.4.0'; +const minVersion = 'v14.0.0'; +const maxVersion = 'v14.1.0'; const edgeBranch = 'development'; const userConfigOvewrite = path.resolve(tasmotaRepo, 'tasmota/user_config_override.h'); const userPlatformioOverrideIni = path.resolve(tasmotaRepo, 'platformio_override.ini');