From 5b6b55d37a7cf4f3a1e3ec7202674f51f97b9c6c Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 25 Jul 2025 01:05:19 -0400 Subject: [PATCH] Immich v1.136.0 (#6219) - change path of copy command - pin to latest working version rather than latest --- ct/immich.sh | 6 +++--- install/immich-install.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ct/immich.sh b/ct/immich.sh index 0c3e488d62..3244a20d4c 100644 --- a/ct/immich.sh +++ b/ct/immich.sh @@ -58,7 +58,7 @@ function update_script() { done msg_ok "Image-processing libraries updated" fi - RELEASE="1.135.3" + RELEASE="1.136.0" #RELEASE=$(curl -fsSL https://api.github.com/repos/immich-app/immich/releases?per_page=1 | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') if [[ -f ~/.immich && "$RELEASE" == "$(cat ~/.immich)" ]]; then msg_ok "No update required. ${APP} is already at v${RELEASE}" @@ -103,7 +103,7 @@ function update_script() { mkdir -p "$ML_DIR" rm -rf "$SRC_DIR" - fetch_and_deploy_gh_release "immich" "immich-app/immich" "tarball" "v1.135.3" "$SRC_DIR" + fetch_and_deploy_gh_release "immich" "immich-app/immich" "tarball" "v1.136.0" "$SRC_DIR" msg_info "Updating ${APP} web and microservices" cd "$SRC_DIR"/server @@ -121,7 +121,7 @@ function update_script() { $STD npm ci $STD npm run build cd "$SRC_DIR" - cp -a server/{node_modules,dist,bin,resources,package.json,package-lock.json,start*.sh} "$APP_DIR"/ + cp -a server/{node_modules,dist,bin,resources,package.json,package-lock.json,bin/start.sh} "$APP_DIR"/ cp -a web/build "$APP_DIR"/www cp LICENSE "$APP_DIR" cd "$APP_DIR" diff --git a/install/immich-install.sh b/install/immich-install.sh index de0a635795..c341686466 100644 --- a/install/immich-install.sh +++ b/install/immich-install.sh @@ -283,7 +283,7 @@ GEO_DIR="${INSTALL_DIR}/geodata" mkdir -p "$INSTALL_DIR" mkdir -p {"${APP_DIR}","${UPLOAD_DIR}","${GEO_DIR}","${ML_DIR}","${INSTALL_DIR}"/cache} -fetch_and_deploy_gh_release "immich" "immich-app/immich" "tarball" "v1.135.3" "$SRC_DIR" +fetch_and_deploy_gh_release "immich" "immich-app/immich" "tarball" "v1.136.0" "$SRC_DIR" msg_info "Installing ${APPLICATION} (more patience please)"