From a9db8f9ebea95122963ffb0274406dce2506840e Mon Sep 17 00:00:00 2001 From: Patrick Gehrsitz Date: Tue, 2 Apr 2024 19:18:49 +0200 Subject: [PATCH] chore: revert #249 and update ustreamer version to v6.9 (#254) Signed-off-by: Patrick Gehrsitz --- bin/build.sh | 4 ++-- tools/configure.sh | 4 ++-- tools/libs/config.sh | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/build.sh b/bin/build.sh index 5e8ed519..992d2f21 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -32,10 +32,10 @@ CLONE_FLAGS=(--depth=1 --single-branch) # Ustreamer repo USTREAMER_PATH="ustreamer" if [[ -z "${CROWSNEST_USTREAMER_REPO_SHIP}" ]]; then - CROWSNEST_USTREAMER_REPO_SHIP="https://github.com/mryel00/ustreamer.git" + CROWSNEST_USTREAMER_REPO_SHIP="https://github.com/pikvm/ustreamer.git" fi if [[ -z "${CROWSNEST_USTREAMER_REPO_BRANCH}" ]]; then - CROWSNEST_USTREAMER_REPO_BRANCH="master" + CROWSNEST_USTREAMER_REPO_BRANCH="v6.10" fi # Camera-streamer repo diff --git a/tools/configure.sh b/tools/configure.sh index 8c3d9579..11c82467 100755 --- a/tools/configure.sh +++ b/tools/configure.sh @@ -26,8 +26,8 @@ CN_CONFIG_CONFIGPATH="${CN_CONFIG_ROOTPATH}/config" CN_CONFIG_LOGPATH="${CN_CONFIG_ROOTPATH}/logs" CN_CONFIG_ENVPATH="${CN_CONFIG_ROOTPATH}/systemd" CN_MOONRAKER_CONFIG_PATH="${CN_CONFIG_CONFIGPATH}/moonraker.conf" -CN_USTREAMER_REPO="https://github.com/mryel00/ustreamer.git" -CN_USTREAMER_BRANCH="master" +CN_USTREAMER_REPO="https://github.com/pikvm/ustreamer.git" +CN_USTREAMER_BRANCH="v6.10" CN_CAMERA_STREAMER_REPO="https://github.com/ayufan/camera-streamer.git" CN_CAMERA_STREAMER_BRANCH="master" diff --git a/tools/libs/config.sh b/tools/libs/config.sh index ba0b10b3..6f9419bc 100755 --- a/tools/libs/config.sh +++ b/tools/libs/config.sh @@ -35,8 +35,8 @@ import_config() { [[ -n "${CROWSNEST_CONFIG_PATH}" ]] || CROWSNEST_CONFIG_PATH="/home/${BASE_USER}/printer_data/config" [[ -n "${CROWSNEST_LOG_PATH}" ]] || CROWSNEST_LOG_PATH="/home/${BASE_USER}/printer_data/logs" [[ -n "${CROWSNEST_ENV_PATH}" ]] || CROWSNEST_ENV_PATH="/home/${BASE_USER}/printer_data/systemd" - [[ -n "${CROWSNEST_USTREAMER_REPO_SHIP}" ]] || CROWSNEST_USTREAMER_REPO_SHIP="https://github.com/mryel00/ustreamer.git" - [[ -n "${CROWSNEST_USTREAMER_REPO_BRANCH}" ]] || CROWSNEST_USTREAMER_REPO_BRANCH="master" + [[ -n "${CROWSNEST_USTREAMER_REPO_SHIP}" ]] || CROWSNEST_USTREAMER_REPO_SHIP="https://github.com/pikvm/ustreamer.git" + [[ -n "${CROWSNEST_USTREAMER_REPO_BRANCH}" ]] || CROWSNEST_USTREAMER_REPO_BRANCH="v6.10" [[ -n "${CROWSNEST_CAMERA_STREAMER_REPO_SHIP}" ]] || CROWSNEST_CAMERA_STREAMER_REPO_SHIP="https://github.com/ayufan/camera-streamer.git" [[ -n "${CROWSNEST_CAMERA_STREAMER_REPO_BRANCH}" ]] || CROWSNEST_CAMERA_STREAMER_REPO_BRANCH="master" status_msg "Using default configuration ..." "0"