diff --git a/.DS_Store b/.DS_Store index 1626da2..3102151 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/CHANGELOG.md b/CHANGELOG.md index 285415d..2df0b9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 🔹 Version 1.3.5 - (2025-07-11) +- Updated newt version to 1.3.0 + +## 🔹 Version 1.3.4 - (2025-06-08) +- Updated newt version to 1.2.1 + ## 🔹 Version 1.3.4 - (2025-06-08) - Updated newt version to 1.2.1 diff --git a/newt/CHANGELOG.md b/newt/CHANGELOG.md index 7958e6b..2df0b9d 100644 --- a/newt/CHANGELOG.md +++ b/newt/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 🔹 Version 1.3.5 - (2025-07-11) +- Updated newt version to 1.3.0 + ## 🔹 Version 1.3.4 - (2025-06-08) - Updated newt version to 1.2.1 diff --git a/newt/Dockerfile b/newt/Dockerfile index dd40267..6aed7f2 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.2.1/newt_linux_amd64; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_amd64; \ elif [ "$ARCH" = "aarch64" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.2.1/newt_linux_arm64; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_arm64; \ elif [ "$ARCH" = "armv7l" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.2.1/newt_linux_arm32; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_arm32; \ elif [ "$ARCH" = "armv6l" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.2.1/newt_linux_arm32v6; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_arm32v6; \ elif [ "$ARCH" = "riscv64" ]; then \ - curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.2.1/newt_linux_riscv64; \ + curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.3.0/newt_linux_riscv64; \ else \ echo "❌ ERROR: Unsupported architecture: $ARCH"; exit 1; \ fi && \ diff --git a/newt/config.yaml b/newt/config.yaml index b50bce9..64532b4 100644 --- a/newt/config.yaml +++ b/newt/config.yaml @@ -1,5 +1,5 @@ name: "Newt Add-on" -version: "1.3.4" +version: "1.3.5" slug: "newt" description: "Runs Newt inside Home Assistant OS" icon: "icon.png"