mirror of https://github.com/xwiki-labs/cryptpad
Update changelog and version
This commit is contained in:
parent
8fc5647aea
commit
ce56447031
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,3 +1,15 @@
|
|||
# 4.2.1
|
||||
|
||||
This minor release addresses a few bugs discovered after deploying 4.2.0:
|
||||
|
||||
* The 4.2.0 release included major improvements to the sheet application. This introduced breaking changes to the "lock" system in the application. Existing spreadsheets (before 4.2.0) that were closed by a user without "unlocking" all cells first became impossible to open after the 4.2.0 changes. This has been fixed.
|
||||
* Team owners can now properly upload a team avatar.
|
||||
* We've improved the file upload script to better recognize markdown files.
|
||||
* We've fixed a few issues resulting in an error screen:
|
||||
* New users were unable to create a drive without registering first.
|
||||
* Snapshots in the sheet application couldn't be loaded.
|
||||
* Loading an existing drive as an unregistered user could fail.
|
||||
|
||||
# 4.2.0 (C)
|
||||
|
||||
## Goals
|
||||
|
|
|
@ -62,7 +62,7 @@ define([
|
|||
var imprintUrl = AppConfig.imprint && (typeof(AppConfig.imprint) === "boolean" ?
|
||||
'/imprint.html' : AppConfig.imprint);
|
||||
|
||||
Pages.versionString = "v4.2.0";
|
||||
Pages.versionString = "v4.2.1";
|
||||
|
||||
// used for the about menu
|
||||
Pages.imprintLink = AppConfig.imprint ? footLink(imprintUrl, 'imprint') : undefined;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "cryptpad",
|
||||
"description": "realtime collaborative visual editor with zero knowlege server",
|
||||
"version": "4.2.0",
|
||||
"version": "4.2.1",
|
||||
"license": "AGPL-3.0+",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
Loading…
Reference in New Issue