From 296d470fc9a94478902732908a718d3a19f366b4 Mon Sep 17 00:00:00 2001 From: mattreim <80219712+mattreim@users.noreply.github.com> Date: Tue, 15 Oct 2024 11:49:02 +0200 Subject: [PATCH] Update to Tasmota v14.3.0 --- server/config/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/config/config.js b/server/config/config.js index c4b9178a..d907eecc 100644 --- a/server/config/config.js +++ b/server/config/config.js @@ -4,7 +4,7 @@ const WORKDIR = process.env.WORKDIR || '/tmp'; const tasmotaRepo = path.resolve(WORKDIR, 'Tasmota'); const githubRepo = 'https://github.com/arendst/Tasmota.git'; const minVersion = 'v14.0.0'; -const maxVersion = 'v14.2.0'; +const maxVersion = 'v14.3.0'; const edgeBranch = 'development'; const userConfigOvewrite = path.resolve(tasmotaRepo, 'tasmota/user_config_override.h'); const userPlatformioOverrideIni = path.resolve(tasmotaRepo, 'platformio_override.ini');