From 4e49c64757843370a8ea004c19400dc3849375f5 Mon Sep 17 00:00:00 2001 From: Nicolas Gelot Date: Fri, 11 Jul 2025 17:52:47 +0200 Subject: [PATCH 1/3] doc: update the README --- README.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cc41e511..9897710d 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,11 @@ -Nextcloud theme for /e/ - nextcloud V20 compatible version +# Murena Workspace theme for Nextcloud +## Installation -# Installation +Deploy theme in nextcloud/themes directory. -deploy theme in nextcloud/themes directory - -use occ to update mimetypelist.js file and clear image cache : +Use occ to update mimetypelist.js file and clear image cache: ``` occ maintenance:theme:update ``` - - -# License - -The project is licensed under [AGPL](LICENSE). -- GitLab From 5ebdea2a6e27ab52ebea5ae7c1d44147cf47f794 Mon Sep 17 00:00:00 2001 From: Nicolas Gelot Date: Fri, 11 Jul 2025 17:53:01 +0200 Subject: [PATCH 2/3] chore: add publish job Ref: https://gitlab.e.foundation/e/infra/ecloud/nextcloud-apps/nextcloud-theme/-/issues/6 --- .gitlab-ci.yml | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 784c2031..bda57632 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,9 @@ stages: - test + - build - performance - dast + - publish - deploy variables: @@ -12,15 +14,22 @@ include: - project: "e/infra/ecloud/nextcloud-apps/ci-templates" ref: main file: "nc-apps-checkout-deploy.yml" -# - project: "e/infra/ecloud/nextcloud-apps/ci-templates" -# ref: main -# file: "mr-review-tools.yml" -# - project: "e/infra/ecloud/nextcloud-apps/ci-templates" -# ref: main -# file: "git-operations.yml" -# - project: "e/infra/ecloud/nextcloud-apps/ci-templates" + - project: "e/infra/ecloud/nextcloud-apps/ci-templates" # ref: main -# file: "populate-code-climate-default-config.yml" + ref: dev/001-publish-app-in-pkg-registry + file: "nc-publish-app.yml" + +copy-theme-files: + stage: build + image: + name: alpine/git:v2.49.0 + entrypoint: [""] + script: + - mkdir -p dist/${APP_NAME} + - git archive ${CI_COMMIT_SHA} | tar -x -C dist/${APP_NAME} + artifacts: + paths: + - dist/ .deploy:nextcloud-app-by-checkout: script: -- GitLab From 0651a61855aec0a3a5f493d97920669b6cbc722f Mon Sep 17 00:00:00 2001 From: Nicolas Gelot Date: Wed, 23 Jul 2025 18:31:08 +0200 Subject: [PATCH 3/3] fix: set NC version to 29 for documentation --- defaults.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults.php b/defaults.php index 87ee1546..1614778a 100644 --- a/defaults.php +++ b/defaults.php @@ -129,7 +129,7 @@ class OC_Theme { * @return string documentation link */ public function buildDocLinkToKey($key) { - return $this->getDocBaseUrl() . '/server/27/go.php?to=' . $key; + return $this->getDocBaseUrl() . '/server/29/go.php?to=' . $key; } -- GitLab