From 484f20f7001ed5d86b86cd292762a233e8af0c35 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 11 Jan 2023 10:39:55 +0530 Subject: [PATCH 1/3] sed fix nextcloud 24 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 61de9750..27e82732 100644 --- a/Dockerfile +++ b/Dockerfile @@ -191,7 +191,7 @@ RUN sed -i 's/(0,zd.imagePath)("notifications",e)/"\/themes\/"+OC.theme.folder+" RUN cd ${BASE_DIR}/custom_apps/contacts && sed -i 's/"GROUP","INDIVIDUAL"/"INDIVIDUAL"/g' js/contacts-main.js RUN cd ${BASE_DIR}/custom_apps/calendar && sed -i 's/"GROUP","INDIVIDUAL"/"INDIVIDUAL"/g' js/calendar-main.js -RUN cd ${BASE_DIR}/custom_apps/calendar && sed -i 's/{name:\[a,"displayname"\]},//' js/calendar-main.js +RUN cd ${BASE_DIR}/custom_apps/calendar && sed -i 's/{name:\[o,"displayname"\]},//' js/calendar-main.js # Set default widgets to calendar, tasks and notes RUN sed -i 's/recommendations,spreed,mail,calendar/calendar,tasks,notes/' ${BASE_DIR}/apps/dashboard/lib/Controller/DashboardController.php -- GitLab From 1c63bce77f8240534441efee8f7a0ec6bd46b447 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 11 Jan 2023 14:07:34 +0530 Subject: [PATCH 2/3] job id updated --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 27e82732..b91887c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,11 @@ FROM nextcloud:24.0.8-fpm AS nextcloud ARG BASE_DIR="/usr/src/nextcloud" ARG TMP_PATCH_DIR="/tmp/build_patches" ARG THEME_HELPER_JOB_ID="446245" -ARG NEWS_VERSION="19.0.0" +ARG NEWS_VERSION="20.0.0" ARG QUOTA_WARN_VERSION="1.15.0" ARG NOTES_VERSION="4.5.1" -ARG CONTACTS_JOB_ID="400045" -ARG CALENDAR_JOB_ID="435164" +ARG CONTACTS_JOB_ID="471108" +ARG CALENDAR_JOB_ID="471116" ARG USER_BACKEND_RAW_SQL_VERSION="1.3.0" ARG EMAIL_RECOVERY_JOB_ID="445958" ARG RAINLOOP_VERSION="7.2.5" -- GitLab From 93e52e43b4292411d20ee90ad7caa59fde5e66af Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 11 Jan 2023 14:08:30 +0530 Subject: [PATCH 3/3] version bump --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b91887c4..f754e315 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ ARG ECLOUD_LAUNCHER_JOB_ID="458901" ARG GOOGLE_INTEGRATION_VERSION="1.0.8" -RUN sed -i 's/24,0,8,2/24,0,8,4/' ${BASE_DIR}/version.php +RUN sed -i 's/24,0,8,2/24,0,8,5/' ${BASE_DIR}/version.php COPY custom_entrypoint.sh / RUN chmod +x /custom_entrypoint.sh RUN mkdir -p /var/www/skeleton/Documents && mkdir -p /var/www/skeleton/Images -- GitLab