From b49299351153bc01c0db9765fc960bfacf9b5b0d Mon Sep 17 00:00:00 2001 From: Akhil Date: Tue, 16 Dec 2025 12:56:33 +0530 Subject: [PATCH 1/2] (fix) update google integration to 4.2.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cdc8ff6..6e2dc14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ARG USER_MIGRATION_URL="https://gitlab.e.foundation/api/v4/projects/1468/package ARG NOTES_URL="https://github.com/nextcloud-releases/notes/releases/download/v4.11.0/notes-v4.11.0.tar.gz" ARG MEMORIES_URL="https://github.com/pulsejet/memories/releases/download/v7.5.2/memories.tar.gz" ARG DROP_ACCOUNT_URL="https://packages.framasoft.org/projects/nextcloud-apps/drop-account/drop_account-2.7.1.tar.gz" -ARG GOOGLE_INTEGRATION_URL="https://github.com/nextcloud/integration_google/releases/download/v1.0.9/integration_google-1.0.9.tar.gz" +ARG GOOGLE_INTEGRATION_URL="https://github.com/nextcloud-releases/integration_google/releases/download/v4.2.0/integration_google-v4.2.0.tar.gz" RUN sed -i 's/31,0,10,2/31,0,10,11/' ${BASE_DIR}/version.php COPY custom_entrypoint.sh / -- GitLab From 0810bd26b6bb2789158db6cccabdd525181b7a99 Mon Sep 17 00:00:00 2001 From: Akhil Date: Tue, 16 Dec 2025 13:00:42 +0530 Subject: [PATCH 2/2] (fix) apply integration_google patches to .mjs files --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e2dc14..e302454 100644 --- a/Dockerfile +++ b/Dockerfile @@ -135,8 +135,8 @@ RUN if [ "$IS_SELFHOST" = true ]; then \ # Set default class of hidden to settings-hint RUN sed -i 's/settings-hint/settings-hint hidden/' ${BASE_DIR}/apps/settings/templates/settings/personal/security/twofactor.php -RUN sed -i 's/ in Nextcloud/ /' ${BASE_DIR}/custom_apps/integration_google/js/integration_google-personalSettings.js -RUN sed -i 's/Nextcloud administrator/administrator/' ${BASE_DIR}/custom_apps/integration_google/js/integration_google-personalSettings.js +RUN sed -i 's/ in Nextcloud/ /' ${BASE_DIR}/custom_apps/integration_google/js/integration_google-personalSettings.mjs +RUN sed -i 's/Nextcloud administrator/administrator/' ${BASE_DIR}/custom_apps/integration_google/js/integration_google-personalSettings.mjs # Fix the navbar entries -- GitLab