diff --git a/ct/booklore.sh b/ct/booklore.sh index 59dd81c30..c0d4b8540 100644 --- a/ct/booklore.sh +++ b/ct/booklore.sh @@ -3,7 +3,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (CanbiZ) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/adityachandelgit/BookLore +# Source: https://github.com/booklore-app/BookLore APP="BookLore" var_tags="${var_tags:-books;library}" @@ -29,13 +29,13 @@ function update_script() { exit fi - RELEASE=$(curl -fsSL https://api.github.com/repos/adityachandelgit/BookLore/releases/latest | yq '.tag_name' | sed 's/^v//') + RELEASE=$(curl -fsSL https://api.github.com/repos/booklore-app/BookLore/releases/latest | yq '.tag_name' | sed 's/^v//') if [[ "${RELEASE}" != "$(cat ~/.booklore 2>/dev/null)" ]] || [[ ! -f ~/.booklore ]]; then msg_info "Stopping $APP" systemctl stop booklore msg_ok "Stopped $APP" - fetch_and_deploy_gh_release "booklore" "adityachandelgit/BookLore" + fetch_and_deploy_gh_release "booklore" "booklore-app/BookLore" msg_info "Building Frontend" cd /opt/booklore/booklore-ui @@ -45,7 +45,7 @@ function update_script() { msg_info "Building Backend" cd /opt/booklore/booklore-api - APP_VERSION=$(curl -fsSL https://api.github.com/repos/adityachandelgit/BookLore/releases/latest | yq '.tag_name' | sed 's/^v//') + APP_VERSION=$(curl -fsSL https://api.github.com/repos/booklore-app/BookLore/releases/latest | yq '.tag_name' | sed 's/^v//') yq eval ".app.version = \"${APP_VERSION}\"" -i src/main/resources/application.yaml $STD ./gradlew clean build --no-daemon mkdir -p /opt/booklore/dist diff --git a/frontend/public/json/booklore.json b/frontend/public/json/booklore.json index 9ccc8eff8..d92e987e8 100644 --- a/frontend/public/json/booklore.json +++ b/frontend/public/json/booklore.json @@ -9,8 +9,8 @@ "updateable": true, "privileged": false, "interface_port": 6060, - "documentation": "https://github.com/adityachandelgit/BookLore", - "website": "https://github.com/adityachandelgit/BookLore", + "documentation": "https://booklore-app.github.io/booklore-docs/docs/getting-started", + "website": "https://github.com/booklore-app/booklore", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/booklore.webp", "config_path": "/opt/booklore_storage/.env", "description": "BookLore is a self-hosted digital library for managing and reading books, offering a beautiful interface and support for metadata management. Built with a modern tech stack, it provides support for importing, organizing, and reading EPUBs and PDFs, while also managing cover images and book metadata.", diff --git a/install/booklore-install.sh b/install/booklore-install.sh index aee215d39..1fd49cf6e 100644 --- a/install/booklore-install.sh +++ b/install/booklore-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (CanbiZ) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/adityachandelgit/BookLore +# Source: https://github.com/booklore-app/BookLore source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color @@ -17,7 +17,7 @@ msg_info "Installing Dependencies" $STD apt-get install -y nginx msg_ok "Installed Dependencies" -fetch_and_deploy_gh_release "booklore" "adityachandelgit/BookLore" +fetch_and_deploy_gh_release "booklore" "booklore-app/BookLore" JAVA_VERSION="21" setup_java NODE_VERSION="22" setup_nodejs setup_mariadb @@ -59,7 +59,7 @@ msg_ok "Created Environment" msg_info "Building Backend" cd /opt/booklore/booklore-api -APP_VERSION=$(curl -fsSL https://api.github.com/repos/adityachandelgit/BookLore/releases/latest | yq '.tag_name' | sed 's/^v//') +APP_VERSION=$(curl -fsSL https://api.github.com/repos/booklore-app/BookLore/releases/latest | yq '.tag_name' | sed 's/^v//') yq eval ".app.version = \"${APP_VERSION}\"" -i src/main/resources/application.yaml $STD ./gradlew clean build --no-daemon mkdir -p /opt/booklore/dist