Merge branch 'staging' of github.com:xwiki-labs/cryptpad into staging
commit
e909987ed2
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -15,6 +15,8 @@
|
||||||
* websockets
|
* websockets
|
||||||
* sandbox CSP
|
* sandbox CSP
|
||||||
* login block
|
* login block
|
||||||
|
* recommend against trailing slashes for configured domains
|
||||||
|
* remove slashes in server.js anyway
|
||||||
* admin page
|
* admin page
|
||||||
* support responses to closed tickets
|
* support responses to closed tickets
|
||||||
* collapse very long messages
|
* collapse very long messages
|
||||||
|
@ -24,7 +26,9 @@
|
||||||
* display survey URL
|
* display survey URL
|
||||||
* support 'KB' in Util.magnitudeOfBytes
|
* support 'KB' in Util.magnitudeOfBytes
|
||||||
* degraded mode
|
* degraded mode
|
||||||
* decide on a number
|
* decide on a number: 8
|
||||||
|
* provide an easy way to change it (application_config.js)
|
||||||
|
* inform users what the limit is (when degraded mode "kicks in")
|
||||||
* sheets
|
* sheets
|
||||||
* fix naming collisions between images in spreadsheets
|
* fix naming collisions between images in spreadsheets
|
||||||
* degraded mode not supported
|
* degraded mode not supported
|
||||||
|
@ -44,6 +48,16 @@
|
||||||
* nodrive
|
* nodrive
|
||||||
* load anonymous accounts without creating a drive
|
* load anonymous accounts without creating a drive
|
||||||
* faster load time, less junk on the server
|
* faster load time, less junk on the server
|
||||||
|
* `AppConfig.allowDrivelessMode`
|
||||||
|
* cursor color is randomly generated each time and doesn't persist after creating a drive
|
||||||
|
* secure iframe now always knows the channel of the related document
|
||||||
|
* more consistent API with other APPs
|
||||||
|
* debug app doesn't create a drive
|
||||||
|
* implement/fix ability to destroy pads whether they exist in your drive or not
|
||||||
|
|
||||||
|
|
||||||
|
* Known issues
|
||||||
|
* change password for documents in your drive when you don't have the most recent password (multi-owner pads)
|
||||||
|
|
||||||
|
|
||||||
# 4.2.1
|
# 4.2.1
|
||||||
|
|
|
@ -685,6 +685,14 @@ const handleGetHistory = function (Env, Server, seq, userId, parsed) {
|
||||||
// If we're asking for a specific version (lastKnownHash) but we receive an
|
// If we're asking for a specific version (lastKnownHash) but we receive an
|
||||||
// ENOENT, this is not a pad creation so we need to abort.
|
// ENOENT, this is not a pad creation so we need to abort.
|
||||||
if (err && err.code === 'ENOENT' && lastKnownHash) {
|
if (err && err.code === 'ENOENT' && lastKnownHash) {
|
||||||
|
/*
|
||||||
|
This informs clients that the pad they're trying to load was deleted by its owner.
|
||||||
|
The user in question might be reconnecting or might have loaded the document from their cache.
|
||||||
|
The owner that deleted it could be another user or the same user from a different device.
|
||||||
|
Either way, the respectful thing to do is display an error screen informing them that the content
|
||||||
|
is no longer on the server so they don't abuse the data and so that they don't unintentionally continue
|
||||||
|
to edit it in a broken state.
|
||||||
|
*/
|
||||||
const parsedMsg2 = {error:'EDELETED', channel: channelName, txid: txid};
|
const parsedMsg2 = {error:'EDELETED', channel: channelName, txid: txid};
|
||||||
Server.send(userId, [0, HISTORY_KEEPER_ID, 'MSG', userId, JSON.stringify(parsedMsg2)]);
|
Server.send(userId, [0, HISTORY_KEEPER_ID, 'MSG', userId, JSON.stringify(parsedMsg2)]);
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -162,7 +162,7 @@ define(function() {
|
||||||
// making it much faster to open new tabs.
|
// making it much faster to open new tabs.
|
||||||
config.disableWorkers = false;
|
config.disableWorkers = false;
|
||||||
|
|
||||||
config.surveyURL = "https://survey.cryptpad.fr/index.php/672782";
|
//config.surveyURL = "";
|
||||||
|
|
||||||
// Teams are always loaded during the initial loading screen (for the first tab only if
|
// Teams are always loaded during the initial loading screen (for the first tab only if
|
||||||
// SharedWorkers are available). Allowing users to be members of multiple teams can
|
// SharedWorkers are available). Allowing users to be members of multiple teams can
|
||||||
|
@ -196,7 +196,6 @@ define(function() {
|
||||||
// a different page (Drive, Settings, etc.) or try to create a new pad themselves. You can disable
|
// a different page (Drive, Settings, etc.) or try to create a new pad themselves. You can disable
|
||||||
// the driveless mode by changing the following value to "false"
|
// the driveless mode by changing the following value to "false"
|
||||||
config.allowDrivelessMode = true;
|
config.allowDrivelessMode = true;
|
||||||
config.allowDrivelessMode = true;
|
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
});
|
});
|
||||||
|
|
|
@ -941,7 +941,6 @@ define([
|
||||||
_href = Hash.hashToHref(newHash, parsed.type);
|
_href = Hash.hashToHref(newHash, parsed.type);
|
||||||
}
|
}
|
||||||
|
|
||||||
var reload = false;
|
|
||||||
// Trigger a page reload if the href didn't change
|
// Trigger a page reload if the href didn't change
|
||||||
if (_href === href) { _href = undefined; }
|
if (_href === href) { _href = undefined; }
|
||||||
|
|
||||||
|
|
|
@ -70,7 +70,8 @@ define([
|
||||||
if ($uname.val()) {
|
if ($uname.val()) {
|
||||||
localStorage.login_user = $uname.val();
|
localStorage.login_user = $uname.val();
|
||||||
}
|
}
|
||||||
window.location.href = '/register/';
|
var hash = (window.location.hash || '').replace(/\/login\//, '/register/');
|
||||||
|
window.location.href = '/register/' + hash;
|
||||||
});
|
});
|
||||||
|
|
||||||
Test(function (t) {
|
Test(function (t) {
|
||||||
|
|
Loading…
Reference in New Issue