From f101fa62dc35a966e6bb09992f499cf66ccc259e Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Tue, 1 Jul 2025 14:59:45 +1000 Subject: [PATCH] chore(statuses): update statuses changed: clean-orphaned-lvm coder-code-server crowdsec filebrowser-quantum glances netdata webmin --- frontend/public/json/statuses.json | 14 +++++++------- tools/addon/coder-code-server.sh | 6 +++--- tools/addon/filebrowser-quantum.sh | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/frontend/public/json/statuses.json b/frontend/public/json/statuses.json index 00bd616cf..fab2afe0e 100644 --- a/frontend/public/json/statuses.json +++ b/frontend/public/json/statuses.json @@ -44,11 +44,11 @@ "channels.json": "โœ…", "checkmk.json": "โŒ", "clean-lxcs.json": "โœ…", - "clean-orphaned-lvm.json": "๐Ÿšง", + "clean-orphaned-lvm.json": "๐Ÿงช", "cloudflare-ddns.json": "๐Ÿงช", "cloudflared.json": "โœ…", "cockpit.json": "โœ…", - "coder-code-server.json": "๐Ÿšง", + "coder-code-server.json": "๐Ÿงช", "commafeed.json": "โœ…", "configarr.json": "๐Ÿงช", "convertx.json": "๐Ÿงช", @@ -57,7 +57,7 @@ "cron-update-lxcs.json": "โœ…", "cronicle.json": "โœ…", "cross-seed.json": "โœ…", - "crowdsec.json": "๐Ÿšง", + "crowdsec.json": "๐Ÿงช", "cryptpad.json": "โœ…", "daemonsync.json": "โŒ", "dashy.json": "โœ…", @@ -82,7 +82,7 @@ "excalidraw.json": "๐Ÿงช", "fenrus.json": "โœ…", "fhem.json": "โœ…", - "filebrowser-quantum.json": "๐Ÿšง", + "filebrowser-quantum.json": "๐Ÿงช", "filebrowser.json": "โœ…", "fileflows.json": "๐Ÿงช", "firefly.json": "โœ…", @@ -100,7 +100,7 @@ "gitea-mirror.json": "๐Ÿงช", "gitea.json": "โœ…", "glance.json": "โœ…", - "glances.json": "๐Ÿšง", + "glances.json": "๐Ÿงช", "glpi.json": "โœ…", "go2rtc.json": "โœ…", "gokapi.json": "โœ…", @@ -187,7 +187,7 @@ "navidrome.json": "โœ…", "neo4j.json": "โœ…", "netbox.json": "๐Ÿšง", - "netdata.json": "๐Ÿšง", + "netdata.json": "๐Ÿงช", "nextcloud-vm.json": "โœ…", "nextcloudpi.json": "๐Ÿšง", "nextpvr.json": "๐Ÿšง", @@ -341,7 +341,7 @@ "wavelog.json": "๐Ÿงช", "wazuh.json": "โŒ", "web-check.json": "๐Ÿงช", - "webmin.json": "๐Ÿšง", + "webmin.json": "๐Ÿงช", "wger.json": "๐Ÿงช", "whisparr.json": "โœ…", "wikijs.json": "โœ…", diff --git a/tools/addon/coder-code-server.sh b/tools/addon/coder-code-server.sh index 5d1554876..8fd74451b 100644 --- a/tools/addon/coder-code-server.sh +++ b/tools/addon/coder-code-server.sh @@ -84,9 +84,9 @@ VERSION=$(curl -fsSL https://api.github.com/repos/coder/code-server/releases/lat awk '{print substr($2, 3, length($2)-4) }') msg_info "Installing Code-Server v${VERSION}" -curl -fOL https://github.com/coder/code-server/releases/download/v"$VERSION"/code-server_"${VERSION}"_amd64.deb &>/dev/null -dpkg -i code-server_"${VERSION}"_amd64.deb &>/dev/null -rm -rf code-server_"${VERSION}"_amd64.deb +curl -fOL https://github.com/coder/code-server/releases/download/v"$VERSION"/code-server_"${VERSION}"_arm64.deb &>/dev/null +dpkg -i code-server_"${VERSION}"_arm64.deb &>/dev/null +rm -rf code-server_"${VERSION}"_arm64.deb mkdir -p ~/.config/code-server/ systemctl enable -q --now code-server@"$USER" cat <~/.config/code-server/config.yaml diff --git a/tools/addon/filebrowser-quantum.sh b/tools/addon/filebrowser-quantum.sh index b9b6255ba..9fae0e4bc 100644 --- a/tools/addon/filebrowser-quantum.sh +++ b/tools/addon/filebrowser-quantum.sh @@ -120,7 +120,7 @@ if [[ -f "$INSTALL_PATH" ]]; then read -r update_prompt if [[ "${update_prompt,,}" =~ ^(y|yes)$ ]]; then msg_info "Updating ${APP}" - curl -fsSL https://github.com/gtsteffaniak/filebrowser/releases/latest/download/linux-amd64-filebrowser -o "$INSTALL_PATH" + curl -fsSL https://github.com/gtsteffaniak/filebrowser/releases/latest/download/linux-arm64-filebrowser -o "$INSTALL_PATH" chmod +x "$INSTALL_PATH" msg_ok "Updated ${APP}" exit 0 @@ -140,7 +140,7 @@ read -r install_prompt if [[ "${install_prompt,,}" =~ ^(y|yes)$ ]]; then msg_info "Installing ${APP} on ${OS}" $PKG_MANAGER curl ffmpeg &>/dev/null - curl -fsSL https://github.com/gtsteffaniak/filebrowser/releases/latest/download/linux-amd64-filebrowser -o "$INSTALL_PATH" + curl -fsSL https://github.com/gtsteffaniak/filebrowser/releases/latest/download/linux-arm64-filebrowser -o "$INSTALL_PATH" chmod +x "$INSTALL_PATH" msg_ok "Installed ${APP}"