diff --git a/CHANGELOG.md b/CHANGELOG.md index 890f8328d..b80b5d0d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +# WoollyMammoth (3.22.0) + +## Goals + +We've been working on some long-term projects that we hope to deliver over the course of the next few releases. In the meantime, this release includes a number of minor improvements. + +## Update notes + +To upgrade from 3.21.0 to 3.22.0: + +1. Stop your server +2. Get the latest platform code with git +3. Install client-side dependencies with `bower update` +4. Restart the CryptPad API server + +## Features + +* Contributors have helped by translating more of CryptPad into Finnish and traditional Chinese via [our weblate instance](https://weblate.cryptpad.fr/projects/cryptpad/app/) + +## Bug fixes + +* Some of the special behaviour implemented for Org-mode in our code editor sometimes failed when the document was first changed into Org-mode. +* We now clear some minor personal preferences like whether certain tooltips had been dismissed when you log out. +* We identified and addressed a number of issues with teams that caused valid teams to not be displayed and team member rights to fail to upgrade until a full session reload. +* We now display the number of days before an unregistered user's documents are considered inactive in their drive instead of hardcoding "3 months". + # VietnameseRhinoceros (3.21.0) ## Goals diff --git a/customize.dist/pages.js b/customize.dist/pages.js index bd5627139..ab86aa7a8 100644 --- a/customize.dist/pages.js +++ b/customize.dist/pages.js @@ -62,7 +62,7 @@ define([ var imprintUrl = AppConfig.imprint && (typeof(AppConfig.imprint) === "boolean" ? '/imprint.html' : AppConfig.imprint); - Pages.versionString = "CryptPad v3.21.0 (VietnameseRhinoceros)"; + Pages.versionString = "CryptPad v3.22.0 (WoollyMammoth)"; // used for the about menu Pages.imprintLink = AppConfig.imprint ? footLink(imprintUrl, 'imprint') : undefined; diff --git a/package-lock.json b/package-lock.json index cb59a4dac..fb230790b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cryptpad", - "version": "3.21.0", + "version": "3.22.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 866058611..7f00bc651 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "cryptpad", "description": "realtime collaborative visual editor with zero knowlege server", - "version": "3.21.0", + "version": "3.22.0", "license": "AGPL-3.0+", "repository": { "type": "git",