Update 1.3.1
Updated newt to 1.3.1
This commit is contained in:
parent
cb28e044ea
commit
f5216669a6
5 changed files with 12 additions and 6 deletions
BIN
.DS_Store
vendored
BIN
.DS_Store
vendored
Binary file not shown.
|
@ -1,5 +1,8 @@
|
|||
# Changelog
|
||||
|
||||
## 🔹 Version 1.3.1 - (2025-04-07)
|
||||
- Updated newt to release 1.1.3
|
||||
|
||||
## 🔹 Version 1.3.0 - (2025-04-06)
|
||||
- Made changes to run.sh. Should allow the addon to reconnect after loosing connection to Pangolin
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# Changelog
|
||||
|
||||
## 🔹 Version 1.3.1 - (2025-04-07)
|
||||
- Updated newt to release 1.1.3
|
||||
|
||||
## 🔹 Version 1.3.0 - (2025-04-06)
|
||||
- Made changes to run.sh. Should allow the addon to reconnect after loosing connection to Pangolin
|
||||
|
||||
|
|
|
@ -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.1.2/newt_linux_amd64; \
|
||||
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_amd64; \
|
||||
elif [ "$ARCH" = "aarch64" ]; then \
|
||||
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.2/newt_linux_arm64; \
|
||||
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_arm64; \
|
||||
elif [ "$ARCH" = "armv7l" ]; then \
|
||||
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.2/newt_linux_arm32; \
|
||||
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_arm32; \
|
||||
elif [ "$ARCH" = "armv6l" ]; then \
|
||||
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.2/newt_linux_arm32v6; \
|
||||
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_arm32v6; \
|
||||
elif [ "$ARCH" = "riscv64" ]; then \
|
||||
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.2/newt_linux_riscv64; \
|
||||
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_riscv64; \
|
||||
else \
|
||||
echo "❌ ERROR: Unsupported architecture: $ARCH"; exit 1; \
|
||||
fi && \
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: "Newt Add-on"
|
||||
version: "1.3.0"
|
||||
version: "1.3.1"
|
||||
slug: "newt"
|
||||
description: "Runs Newt inside Home Assistant OS"
|
||||
arch:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue