From cffc7702549bdbd5bdcc5faf7a7df8566a84ef57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Ferdinand?= Date: Sat, 12 Jul 2025 15:37:55 +0200 Subject: [PATCH] Updated newt to 1.3.1 --- .DS_Store | Bin 6148 -> 6148 bytes CHANGELOG.md | 3 +++ newt/CHANGELOG.md | 3 +++ newt/Dockerfile | 10 +++++----- newt/config.yaml | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.DS_Store b/.DS_Store index 31021518b934f309e50d916aaa9d2c3a2cfd4911..cb248a65564fad27c7e62aa6a8605858784ec69b 100644 GIT binary patch delta 176 zcmZoMXffDe&cy1&z`$TV*@nrIl^4vaVp6hZ*ac$#2Lm9Bfq{h~k0F(zoS`JCytp7K zCqD@&wj-$^C$qT3z~CAq6Eh1d8#@O(J2(5}>r9ba9Pt7Y)zxOEhB^vHhK98|3e}cI z2098R#%8s(92}y``qn}5**Up+`CXGEndKR~Cs#7tvT6X$w4S`1*^+x2hy}5IvmggM K%Vu_tzx)6k&@q4j delta 175 zcmZoMXffDe&cwQsfq`M!WE&<+)+{iqib=_uQ5?kl4+cOM0|N^~9z!ZaIYUWOd2vBf zPJR+lY1=&sx6HS zbQDaC&1!2oIYgE9t%KsTb8_?YJ10jm%QJROu41-jZ3P;+Z1NsvOYYAg7R2(+f*c$y Ko7p-3@&f?#^E5#K diff --git a/CHANGELOG.md b/CHANGELOG.md index 2df0b9d..b05fa15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 🔹 Version 1.3.6 - (2025-07-12) +- Updated newt version to 1.3.1 + ## 🔹 Version 1.3.5 - (2025-07-11) - Updated newt version to 1.3.0 diff --git a/newt/CHANGELOG.md b/newt/CHANGELOG.md index 2df0b9d..b05fa15 100644 --- a/newt/CHANGELOG.md +++ b/newt/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 🔹 Version 1.3.6 - (2025-07-12) +- Updated newt version to 1.3.1 + ## 🔹 Version 1.3.5 - (2025-07-11) - Updated newt version to 1.3.0 diff --git a/newt/Dockerfile b/newt/Dockerfile index 6aed7f2..a7145f8 100644 --- a/newt/Dockerfile +++ b/newt/Dockerfile @@ -7,15 +7,15 @@ RUN apk add --no-cache bash curl jq # Detect system architecture and download the correct Newt binary RUN ARCH=$(uname -m) && \ if [ "$ARCH" = "x86_64" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_amd64; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.1/newt_linux_amd64; \ elif [ "$ARCH" = "aarch64" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_arm64; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.1/newt_linux_arm64; \ elif [ "$ARCH" = "armv7l" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_arm32; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.1/newt_linux_arm32; \ elif [ "$ARCH" = "armv6l" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_arm32v6; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.1/newt_linux_arm32v6; \ elif [ "$ARCH" = "riscv64" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_riscv64; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.1/newt_linux_riscv64; \ else \ echo "❌ ERROR: Unsupported architecture: $ARCH"; exit 1; \ fi && \ diff --git a/newt/config.yaml b/newt/config.yaml index 64532b4..b676423 100644 --- a/newt/config.yaml +++ b/newt/config.yaml @@ -1,5 +1,5 @@ name: "Newt Add-on" -version: "1.3.5" +version: "1.3.6" slug: "newt" description: "Runs Newt inside Home Assistant OS" icon: "icon.png"