From 537be0ea03991104ebeede994fa005cd01fdd1ed Mon Sep 17 00:00:00 2001 From: mathilde-cryptpad <156299270+mathilde-cryptpad@users.noreply.github.com> Date: Mon, 3 Nov 2025 10:31:20 +0100 Subject: [PATCH 1/5] add warning about shared folders usage impacting storage quotas --- user_guide/share_and_access.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/user_guide/share_and_access.rst b/user_guide/share_and_access.rst index 6c441443..16d8ddbd 100644 --- a/user_guide/share_and_access.rst +++ b/user_guide/share_and_access.rst @@ -115,6 +115,10 @@ Shared folders Shared folders are made for sharing a set of documents at once. +.. warning:: + + Shared folders are impacting the storage quota of everyone who has them in their drive. Hence, it's usage should be limited and ideally used only in last resort, when a :ref:`team ` isn't fitting for the use case. + To create a shared folder in the CryptDrive: - ``+ New`` > |cptools shared-folder| **Shared folder**. From af28c225a8f70bb19a6d258871f247eabcd3e99b Mon Sep 17 00:00:00 2001 From: mathilde-cryptpad <156299270+mathilde-cryptpad@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:32:32 +0100 Subject: [PATCH 2/5] mention the use of the Active LTS version branch specifically --- admin_guide/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_guide/installation.rst b/admin_guide/installation.rst index 5e75adb9..afc65514 100644 --- a/admin_guide/installation.rst +++ b/admin_guide/installation.rst @@ -37,7 +37,7 @@ Before starting the installation, ensure the following software is installed: - Git -- Node.js with NPM included (we use the official NodeJs LTS release) +- Node.js with NPM included (we use the `Active LTS `__ version branch) - Using `nodesource `__ is recommended From 8b8eb96aaa7395108f47bdee64a7b709225c6ede Mon Sep 17 00:00:00 2001 From: mathilde-cryptpad <156299270+mathilde-cryptpad@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:33:10 +0100 Subject: [PATCH 3/5] switch from Nodesource to NVM for Node.js recommended installation source --- admin_guide/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_guide/installation.rst b/admin_guide/installation.rst index afc65514..0c271cc7 100644 --- a/admin_guide/installation.rst +++ b/admin_guide/installation.rst @@ -39,7 +39,7 @@ Before starting the installation, ensure the following software is installed: - Node.js with NPM included (we use the `Active LTS `__ version branch) - - Using `nodesource `__ is recommended + - Using `NVM `__ is recommended - Docker engine (if using Docker, see :ref:`Install with Docker `) From 64ea646eb3f70f89bb787f4c10488363b0f6baa9 Mon Sep 17 00:00:00 2001 From: mathilde-cryptpad <156299270+mathilde-cryptpad@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:33:49 +0100 Subject: [PATCH 4/5] add a missing return to the line --- admin_guide/installation.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/admin_guide/installation.rst b/admin_guide/installation.rst index 0c271cc7..33a72ecc 100644 --- a/admin_guide/installation.rst +++ b/admin_guide/installation.rst @@ -54,6 +54,7 @@ Recommended ~~~~~~~~~~~ .. note:: + The development team recommends creating a dedicated user to install and run CryptPad in production rather than using the root user. Clone the CryptPad repository From 3f72439603a19c2c5cd1f42938981daa197f1d66 Mon Sep 17 00:00:00 2001 From: mathilde-cryptpad <156299270+mathilde-cryptpad@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:35:45 +0100 Subject: [PATCH 5/5] update 2025.9.0 occurences to 2025.12.0 --- admin_guide/installation.rst | 4 ++-- conf.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/admin_guide/installation.rst b/admin_guide/installation.rst index 33a72ecc..48634c21 100644 --- a/admin_guide/installation.rst +++ b/admin_guide/installation.rst @@ -61,7 +61,7 @@ Clone the CryptPad repository .. code:: bash - git clone -b 2025.9.0 --depth 1 https://github.com/cryptpad/cryptpad.git cryptpad + git clone -b 2025.12.0 --depth 1 https://github.com/cryptpad/cryptpad.git cryptpad Move to the newly cloned repository @@ -73,7 +73,7 @@ Switch to the latest published tag .. code:: bash - git checkout 2025.9.0 + git checkout 2025.12.0 Dependencies """""""""""" diff --git a/conf.py b/conf.py index 2a50a9d2..e70df7ca 100644 --- a/conf.py +++ b/conf.py @@ -28,7 +28,7 @@ author = 'CryptPad Team' # The full version, including alpha/beta/rc tags -release = '2025.9.0' +release = '2025.12.0' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index ed0f88ce..388348e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,6 @@ dependencies = [ "Jinja2<4.0.0,>=3.1.4", ] name = "documentation" -version = "2025.9.0" +version = "2025.12.0" description = "CryptPad official documentation" readme = "README.md"