Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion FAQ.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ If CryptPad is not working as expected there are a few common things to try. Mos

#. Check the list of extensions below, disable the ones you have installed, if any
#. Try using your browser in a private window and/or with all extensions disabled
#. Turn off any Virtual Private Network (VPN) and/or custom DNS filtering solution (NextDNS, AdGuard DNS...) you may use
#. Try using a different browser. We recommend the latest versions of `Firefox <https://www.mozilla.org/en-US/firefox/new/>`_ or `Chromium <https://www.chromium.org/Home/>`_
#. If the issues persist, please contact your instance :ref:`support`

Expand All @@ -31,6 +32,7 @@ List of extensions known to cause issues with CryptPad
* Emoji keyboard emojis for chrome
* PAYBACK Internet Assistent (PIA)
* User-Agent Switcher and Manager
* ClearURLs

.. note::
If you identify issues with another extension please `report it <https://github.com/cryptpad/cryptpad/issues/new/choose>`_ to the development team
Expand Down Expand Up @@ -183,7 +185,7 @@ The way encryption is currently used in CryptPad does not allow syncing with the
What is the relationship between CryptPad and OnlyOffice?
---------------------------------------------------------

The CryptPad :ref:`app_documents`, :ref:`app_presentation` & :ref:`app_sheets` applications are an `OnlyOffice Docs <https://www.onlyoffice.com/en/office-suite.aspx>`_ integration. However, this only concerns the client-side code, CryptPad does not make use of the OnlyOffice Document Server. CryptPad's encrypted collaboration, used for document, presentantion & spreadsheets and other applications, is completely different from the encryption system used in parts of upstream OnlyOffice. Some of CryptPad's file format conversion tools are based on OnlyOffice code, but substantial work has been done to make it run in the browser rather than on the server, therefore avoiding the need to reveal the contents of users' documents when converting.
The CryptPad :ref:`app_documents`, :ref:`app_presentation` & :ref:`app_sheets` applications are an `OnlyOffice Docs <https://www.onlyoffice.com/en/office-suite.aspx>`_ integration. However, this only concerns the client-side code, CryptPad does not make use of the OnlyOffice Document Server. CryptPad's encrypted collaboration, used for document, presentation & spreadsheets and other applications, is completely different from the encryption system used in parts of upstream OnlyOffice. Some of CryptPad's file format conversion tools are based on OnlyOffice code, but substantial work has been done to make it run in the browser rather than on the server, therefore avoiding the need to reveal the contents of users' documents when converting.

How Secure is CryptPad?
-----------------------
Expand Down
9 changes: 5 additions & 4 deletions admin_guide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ 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 <https://nodejs.org/en/about/previous-releases#looking-for-the-latest-release-of-a-version-branch>`__ version branch)

- Using `nodesource <https://github.com/nodesource/distributions?tab=readme-ov-file#installation-instructions-deb>`__ is recommended
- Using `NVM <https://nodejs.org/en/download>`__ is recommended

- Docker engine (if using Docker, see :ref:`Install with Docker <admin_docker_install>`)

Expand All @@ -54,13 +54,14 @@ 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

.. 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

Expand All @@ -72,7 +73,7 @@ Switch to the latest published tag

.. code:: bash

git checkout 2025.9.0
git checkout 2025.12.0

Dependencies
""""""""""""
Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
7 changes: 6 additions & 1 deletion dev_guide/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,9 @@ It is important to note that no "build" or "compilation" step is necessary when
Launching in development mode
-----------------------------

- ``npm run dev``
- If you are on Linux or macOS:

- ``npm run dev``
- If your are on Microsoft Windows:

- ``npm run windev``
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
16 changes: 16 additions & 0 deletions user_guide/drive.rst
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,19 @@ To use a template:

- Select the template when creating a :ref:`new document <new_document>`.
- In an existing document: |file-o| **File** > |upload| **Import a template**. Please note: this option **replaces** the contents of the document with the template.

Storage quota
-------------

When reaching the storage limit, you can still edit existing documents but you cannot create new ones.

To reclaim storage space you can clear:

- The :ref:`drive history <drive_history>`
- Documents history, from their :ref:`properties <document_properties>`

If necessary, an administrator can easily raise the storage limit of a specific account.

.. note::

Some CryptPad instances offer paid plans with more storage space.
4 changes: 4 additions & 0 deletions user_guide/share_and_access.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <teams>` isn't fitting for the use case.

To create a shared folder in the CryptDrive:

- ``+ New`` > |cptools shared-folder| **Shared folder**.
Expand Down