diff --git a/frontend/public/json/statuses.json b/frontend/public/json/statuses.json index 628412ed8..9a23c6fb4 100644 --- a/frontend/public/json/statuses.json +++ b/frontend/public/json/statuses.json @@ -1,6 +1,6 @@ { "2fauth.json": "โœ…", - "actualbudget.json": "๐Ÿšง", + "actualbudget.json": "๐Ÿงช", "add-lxc-iptag.json": "โœ…", "add-netbird-lxc.json": "โœ…", "add-tailscale-lxc.json": "โœ…", @@ -9,8 +9,8 @@ "agentdvr.json": "โœ…", "all-templates.json": "โœ…", "alpine-it-tools.json": "โœ…", - "alpine-rclone.json": "๐Ÿšง", - "alpine-tinyauth.json": "๐Ÿšง", + "alpine-rclone.json": "๐Ÿงช", + "alpine-tinyauth.json": "๐Ÿงช", "alpine.json": "โœ…", "apache-cassandra.json": "โœ…", "apache-couchdb.json": "โœ…", @@ -21,7 +21,7 @@ "archivebox.json": "โœ…", "archlinux-vm.json": "๐Ÿšง", "aria2.json": "โœ…", - "asterisk.json": "๐Ÿšง", + "asterisk.json": "๐Ÿงช", "audiobookshelf.json": "โœ…", "authelia.json": "โœ…", "authentik.json": "๐Ÿšง", @@ -63,8 +63,8 @@ "docker-vm.json": "๐Ÿšง", "docker.json": "โœ…", "dockge.json": "โœ…", - "docmost.json": "๐Ÿšง", - "documenso.json": "๐Ÿšง", + "docmost.json": "๐Ÿงช", + "documenso.json": "๐Ÿงช", "dolibarr.json": "โœ…", "dotnetaspwebapi.json": "๐Ÿšง", "duplicati.json": "โœ…", @@ -74,21 +74,21 @@ "ersatztv.json": "โœ…", "esphome.json": "โœ…", "evcc.json": "โœ…", - "excalidraw.json": "๐Ÿšง", + "excalidraw.json": "๐Ÿงช", "fenrus.json": "โœ…", "fhem.json": "โœ…", "filebrowser.json": "โœ…", - "fileflows.json": "๐Ÿšง", + "fileflows.json": "๐Ÿงช", "firefly.json": "โœ…", "flaresolverr.json": "โœ…", "flowiseai.json": "๐Ÿšง", - "fluid-calendar.json": "๐Ÿšง", + "fluid-calendar.json": "๐Ÿงช", "forgejo.json": "โœ…", "freshrss.json": "โœ…", "frigate.json": "โœ…", "fstrim.json": "โœ…", - "fumadocs.json": "๐Ÿšง", - "gatus.json": "๐Ÿšง", + "fumadocs.json": "๐Ÿงช", + "gatus.json": "๐Ÿงช", "ghost.json": "โœ…", "gitea.json": "โœ…", "glance.json": "โœ…", @@ -334,4 +334,4 @@ "zitadel.json": "๐Ÿšง", "zoraxy.json": "โœ…", "zwave-js-ui.json": "โœ…" -} \ No newline at end of file +} diff --git a/install/alpine-rclone-install.sh b/install/alpine-rclone-install.sh index 59368b973..5011285fa 100644 --- a/install/alpine-rclone-install.sh +++ b/install/alpine-rclone-install.sh @@ -23,7 +23,7 @@ msg_info "Installing rclone" temp_file=$(mktemp) mkdir -p /opt/rclone RELEASE=$(curl -s https://api.github.com/repos/rclone/rclone/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') -curl -fsSL "https://github.com/rclone/rclone/releases/download/v${RELEASE}/rclone-v${RELEASE}-linux-amd64.zip" -o "$temp_file" +curl -fsSL "https://github.com/rclone/rclone/releases/download/v${RELEASE}/rclone-v${RELEASE}-linux-arm64.zip" -o "$temp_file" $STD unzip -j "$temp_file" '*/**' -d /opt/rclone cd /opt/rclone RCLONE_PASSWORD=$(head -c 16 /dev/urandom | xxd -p -c 16) diff --git a/install/documenso-install.sh b/install/documenso-install.sh index f2013396a..261f6466b 100644 --- a/install/documenso-install.sh +++ b/install/documenso-install.sh @@ -26,6 +26,7 @@ $STD apt-get install -y \ jq \ python3 \ python3-bcrypt +rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED msg_ok "Installed Dependencies" NODE_VERSION="22" NODE_MODULE="turbo@1.9.3" install_node_and_modules diff --git a/install/fileflows-install.sh b/install/fileflows-install.sh index 47efbfed8..1eba6db18 100644 --- a/install/fileflows-install.sh +++ b/install/fileflows-install.sh @@ -26,13 +26,14 @@ msg_info "Installing Hardware Acceleration" $STD apt-get -y install {va-driver-all,ocl-icd-libopencl1,vainfo} msg_ok "Installed and Set Up Hardware Acceleration" -msg_info "Installing ASP.NET Core Runtime" -curl -fsSL https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -o packages-microsoft-prod.deb -$STD dpkg -i packages-microsoft-prod.deb -rm -rf packages-microsoft-prod.deb -$STD apt-get update -$STD apt-get install -y aspnetcore-runtime-8.0 -msg_ok "Installed ASP.NET Core Runtime" +msg_info "Installing ASP.NET Core 7 SDK" +curl -SL -o aspnet.tar.gz https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-linux-arm64.tar.gz +$STD mkdir -p /usr/share/dotnet +$STD tar -zxf aspnet.tar.gz -C /usr/share/dotnet +ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet +$STD rm -f aspnet.tar.gz +msg_ok "Installed ASP.NET Core 7 SDK" + msg_info "Setup ${APPLICATION}" $STD ln -svf /usr/bin/ffmpeg /usr/local/bin/ffmpeg