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}.
Le lien peut être copié et partagé de manièé de manière publique.";
+ out.profile_inviteButtonTitle = 'Créer un lien pour inviter cet utilisateur à se connecter avec vous.';
+ out.profile_inviteExplanation = "Cliquer sur OK créera un lien vers une session de messagerie sécurisée uniquement accessible par {0}.
Le lien peut être copié et partagé de manière publique.";
out.profile_viewMyProfile = "Voir mon profil";
// contacts/userlist
@@ -413,7 +413,7 @@ define(function () {
"Vous pouvez importer les pads récents de ce navigateur pour les avoir dans votre compte utilisateur.",
"Si vous utilisez un ordinateur partagé, vous devez vous déconnecter avant de partir, fermer l'onglet n'est pas suffisant.",
""
- ];
+ ].join('');
// Settings
out.settings_cat_account = "Compte";
@@ -487,8 +487,8 @@ define(function () {
out.todo_title = "CryptTodo";
out.todo_newTodoNamePlaceholder = "Décrivez votre tâche...";
out.todo_newTodoNameTitle = "Ajouter cette tâche à votre liste";
- out.todo_markAsCompleteTitle = "Marquer tâche comme terminée";
- out.todo_markAsIncompleteTitle = "Marquer tâche comme non incomplète";
+ out.todo_markAsCompleteTitle = "Marquer cette tâche comme terminée";
+ out.todo_markAsIncompleteTitle = "Marquer cette tâche comme incomplète";
out.todo_removeTaskTitle = "Enlever cette tâche de votre liste";
// pad
@@ -506,7 +506,7 @@ define(function () {
//contact.html
out.main_about_p2 = 'Si vous avez des questions ou commentaires, vous pouvez nous tweeter, ouvrir une issue sur GitHub, venir dire bonjour sur notre salle Matrix ou IRC (#cryptpad sur irc.freenode.net), ou bien encore nous envoyer un email.';
- out.main_info = "Collaborez avec confiance
Développez vos idées en groupe avec des document partagés; la technologie Zero Knowledge sécurise vos données.";
+ out.main_info = "Collaborez avec confiance
Développez vos idées en groupe avec des documents partagés; la technologie Zero Knowledge sécurise vos données.";
out.main_catch_phrase = "Le Cloud Zero Knowledge";
out.main_howitworks = 'Comment ça fonctionne';
@@ -589,7 +589,7 @@ define(function () {
out.header_support = ' ';
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",