diff --git a/config.example.js b/config.example.js index 43438aea6..7af6cf8af 100644 --- a/config.example.js +++ b/config.example.js @@ -82,23 +82,6 @@ module.exports = { */ websocketPath: '/cryptpad_websocket', - /* it is assumed that your websocket will bind to the same port as http - * you can override this behaviour by supplying a number via websocketPort - */ - //websocketPort: 3000, - - /* if you want to run a different version of CryptPad but using the same websocket - * server, you should use the other server port as websocketPort and disable - * the websockets on that server - */ - //useExternalWebsocket: false, - - /* If CryptPad is proxied without using https, the server needs to know. - * Specify 'useSecureWebsockets: true' so that it can send - * Content Security Policy Headers that prevent http and https from mixing - */ - useSecureWebsockets: false, - /* CryptPad can log activity to stdout * This may be useful for debugging */ @@ -238,14 +221,6 @@ module.exports = { */ suppressRPCErrors: false, - - /* WARNING: EXPERIMENTAL - * - * CryptPad features experimental support for encrypted file upload. - * Our encryption format is still liable to change. As such, we do not - * guarantee that files uploaded now will be supported in the future - */ - /* Setting this value to anything other than true will cause file upload * attempts to be rejected outright. */ diff --git a/customize.dist/pages.js b/customize.dist/pages.js index 659ef5dbc..d2959d1b2 100644 --- a/customize.dist/pages.js +++ b/customize.dist/pages.js @@ -46,7 +46,9 @@ define([ h('div.container', [ h('div.row', [ footerCol(null, [ - setHTML(h('div.cp-bio-foot'), '
With CryptPad, you can make quick collaborative documents for taking notes and writing down ideas together.
'), + h('div.cp-bio-foot', [ + h('p', Msg.main_footerText) + ]) ], ''), /* footerCol(null, [ footLink('/about.html', 'about'), diff --git a/customize.dist/translations/messages.fr.js b/customize.dist/translations/messages.fr.js index a301a8f2f..b8c488459 100644 --- a/customize.dist/translations/messages.fr.js +++ b/customize.dist/translations/messages.fr.js @@ -265,8 +265,8 @@ define(function () { out.profile_fieldSaved = 'Nouvelle valeur enregistrée: {0}'; out.profile_inviteButton = "Inviter"; - out.profile_inviteButtonTitle = 'Creer un lien pour inviter cet utilisateur à se connecter avec vous.'; - out.profile_inviteExplanation = "Cliquer sur OK créera un lien vers un session de messagerie sécurisée uniquement accessible par {0}.
';
out.updated_0_header_logoTitle = 'Retourner vers votre CryptDrive';
out.header_logoTitle = out.updated_0_header_logoTitle;
- out.header_homeTitle = "Aller sur la page d'acceuil";
+ out.header_homeTitle = "Aller sur la page d'accueil";
// Initial states
diff --git a/customize.dist/translations/messages.js b/customize.dist/translations/messages.js
index 34c1f2d5e..262f9890c 100644
--- a/customize.dist/translations/messages.js
+++ b/customize.dist/translations/messages.js
@@ -545,6 +545,7 @@ define(function () {
out.main_whiteboardPad = 'Whiteboard';
out.main_localPads = 'Local Pads';
out.main_yourCryptDrive = 'Your CryptDrive';
+ out.main_footerText = "With CryptPad, you can make quick collaborative documents for taking notes and writing down ideas together.";
out.footer_applications = "Applications";
out.footer_contact = "Contact";
diff --git a/package.json b/package.json
index a2b893d21..9821b6bdb 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "cryptpad",
"description": "realtime collaborative visual editor with zero knowlege server",
- "version": "1.12.0",
+ "version": "1.13.0",
"dependencies": {
"chainpad-server": "^1.0.1",
"express": "~4.10.1",