Updated newt to 1.3.0

This commit is contained in:
Jørgen Ferdinand 2025-07-11 18:23:05 +02:00
parent f15b7be65b
commit 24082d7183
5 changed files with 15 additions and 6 deletions

BIN
.DS_Store vendored

Binary file not shown.

View file

@ -1,5 +1,11 @@
# Changelog # 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) ## 🔹 Version 1.3.4 - (2025-06-08)
- Updated newt version to 1.2.1 - Updated newt version to 1.2.1

View file

@ -1,5 +1,8 @@
# Changelog # Changelog
## 🔹 Version 1.3.5 - (2025-07-11)
- Updated newt version to 1.3.0
## 🔹 Version 1.3.4 - (2025-06-08) ## 🔹 Version 1.3.4 - (2025-06-08)
- Updated newt version to 1.2.1 - Updated newt version to 1.2.1

View file

@ -7,15 +7,15 @@ RUN apk add --no-cache bash curl jq
# Detect system architecture and download the correct Newt binary # Detect system architecture and download the correct Newt binary
RUN ARCH=$(uname -m) && \ RUN ARCH=$(uname -m) && \
if [ "$ARCH" = "x86_64" ]; then \ 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 \ 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 \ 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 \ 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 \ 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 \ else \
echo "❌ ERROR: Unsupported architecture: $ARCH"; exit 1; \ echo "❌ ERROR: Unsupported architecture: $ARCH"; exit 1; \
fi && \ fi && \

View file

@ -1,5 +1,5 @@
name: "Newt Add-on" name: "Newt Add-on"
version: "1.3.4" version: "1.3.5"
slug: "newt" slug: "newt"
description: "Runs Newt inside Home Assistant OS" description: "Runs Newt inside Home Assistant OS"
icon: "icon.png" icon: "icon.png"