From 8a52b24b9d663fb25e83782c4a77a2c484ec6d70 Mon Sep 17 00:00:00 2001 From: mrhotio <26902309+mrhotio@users.noreply.github.com> Date: Mon, 22 Jan 2024 09:14:45 +0100 Subject: [PATCH] switch to legacy --- VERSION.json | 6 +++--- linux-amd64.Dockerfile | 2 +- linux-arm64.Dockerfile | 2 +- update-versions.sh | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/VERSION.json b/VERSION.json index a295150e2..1bb423961 100644 --- a/VERSION.json +++ b/VERSION.json @@ -1,10 +1,10 @@ { "latest": false, "description": "Releases", - "version": "4.6.3", - "full_version": "release-4.6.3_v1.2.19", + "version": "4.3.9", + "full_version": "release-4.3.9_v1.2.19", "vuetorrent_version": "2.5.0", - "changelog": "https://github.com/qbittorrent/qbittorrent/compare/release-4.6.2...release-4.6.3", + "changelog": "https://github.com/qbittorrent/qbittorrent/compare/release-4.3.9...release-4.3.9", "upstream_image": "ghcr.io/hotio/base", "upstream_tag": "alpine", "upstream_digest_amd64": "sha256:aba1ad70d73a01a04940ceefcc0506c8867aa99be1e1598f7f57d79dc462ba1d", diff --git a/linux-amd64.Dockerfile b/linux-amd64.Dockerfile index a66dec7d1..334b9b299 100644 --- a/linux-amd64.Dockerfile +++ b/linux-amd64.Dockerfile @@ -15,7 +15,7 @@ RUN apk add --no-cache privoxy iptables ip6tables iproute2 openresolv wireguard- ARG FULL_VERSION -RUN curl -fsSL "https://github.com/userdocs/qbittorrent-nox-static/releases/download/${FULL_VERSION}/x86_64-qbittorrent-nox" > "${APP_DIR}/qbittorrent-nox" && \ +RUN curl -fsSL "https://github.com/userdocs/qbittorrent-nox-static-legacy/releases/download/${FULL_VERSION}/x86_64-qbittorrent-nox" > "${APP_DIR}/qbittorrent-nox" && \ chmod 755 "${APP_DIR}/qbittorrent-nox" ARG VUETORRENT_VERSION diff --git a/linux-arm64.Dockerfile b/linux-arm64.Dockerfile index 386c73b7e..961afcba9 100644 --- a/linux-arm64.Dockerfile +++ b/linux-arm64.Dockerfile @@ -15,7 +15,7 @@ RUN apk add --no-cache privoxy iptables ip6tables iproute2 openresolv wireguard- ARG FULL_VERSION -RUN curl -fsSL "https://github.com/userdocs/qbittorrent-nox-static/releases/download/${FULL_VERSION}/aarch64-qbittorrent-nox" > "${APP_DIR}/qbittorrent-nox" && \ +RUN curl -fsSL "https://github.com/userdocs/qbittorrent-nox-static-legacy/releases/download/${FULL_VERSION}/aarch64-qbittorrent-nox" > "${APP_DIR}/qbittorrent-nox" && \ chmod 755 "${APP_DIR}/qbittorrent-nox" ARG VUETORRENT_VERSION diff --git a/update-versions.sh b/update-versions.sh index 90109ef98..3e4681869 100644 --- a/update-versions.sh +++ b/update-versions.sh @@ -4,7 +4,7 @@ nightwalker_version=$(curl -u "${GITHUB_ACTOR}:${GITHUB_TOKEN}" -fsSL "https://a [[ -z ${nightwalker_version} ]] && exit 0 vuetorrent_version=$(curl -u "${GITHUB_ACTOR}:${GITHUB_TOKEN}" -fsSL "https://api.github.com/repos/vuetorrent/vuetorrent/releases/latest" | jq -r .tag_name | sed s/v//g) [[ -z ${vuetorrent_version} ]] && exit 0 -full_version=$(curl -u "${GITHUB_ACTOR}:${GITHUB_TOKEN}" -fsSL "https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/dependency-version.json" | jq -r '. | "release-\(.qbittorrent)_v\(.libtorrent_1_2)"') +full_version=$(curl -u "${GITHUB_ACTOR}:${GITHUB_TOKEN}" -fsSL "https://github.com/userdocs/qbittorrent-nox-static-legacy/releases/latest/download/dependency-version.json" | jq -r '. | "release-\(.qbittorrent)_v\(.libtorrent_1_2)"') version=$(echo "${full_version}" | sed -e "s/release-//g" -e "s/_.*//g") [[ -z ${version} ]] && exit 0 old_version=$(jq -r '.version' < VERSION.json)