mirror of
https://github.com/YunoHost-Apps/cryptpad_ynh.git
synced 2024-09-03 18:26:14 +02:00
commit
ecf5c9747b
3 changed files with 14 additions and 77 deletions
|
@ -1,6 +1,6 @@
|
||||||
SOURCE_URL=https://github.com/xwiki-labs/cryptpad/archive/4.7.0.tar.gz
|
SOURCE_URL=https://github.com/xwiki-labs/cryptpad/archive/4.8.0.tar.gz
|
||||||
SOURCE_SUM=33f7a352b034ef12ee9e588896c11b7bc18a3ed216c864798d1d17da5debc982
|
SOURCE_SUM=f95b97769d3a69a6e687f298240813e96ef12ea24254a0e246931c3e5f71a4b7
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.gz
|
SOURCE_FORMAT=tar.gz
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=true
|
||||||
SOURCE_FILENAME=cryptpad-4.7.0.tar.gz
|
SOURCE_FILENAME=cryptpad-4.8.0.tar.gz
|
||||||
|
|
|
@ -122,55 +122,6 @@ module.exports = {
|
||||||
],
|
],
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* CryptPad's administration panel includes a "support" tab
|
|
||||||
* wherein administrators with a secret key can view messages
|
|
||||||
* sent from users via the encrypted forms on the /support/ page
|
|
||||||
*
|
|
||||||
* To enable this functionality:
|
|
||||||
* run `node ./scripts/generate-admin-keys.js`
|
|
||||||
* save the public key in your config in the value below
|
|
||||||
* add the private key via the admin panel
|
|
||||||
* and back it up in a secure manner
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
// supportMailboxPublicKey: "",
|
|
||||||
|
|
||||||
/* We're very proud that CryptPad is available to the public as free software!
|
|
||||||
* We do, however, still need to pay our bills as we develop the platform.
|
|
||||||
*
|
|
||||||
* By default CryptPad will prompt users to consider donating to
|
|
||||||
* our OpenCollective campaign. We publish the state of our finances periodically
|
|
||||||
* so you can decide for yourself whether our expenses are reasonable.
|
|
||||||
*
|
|
||||||
* You can disable any solicitations for donations by setting 'removeDonateButton' to true,
|
|
||||||
* but we'd appreciate it if you didn't!
|
|
||||||
*/
|
|
||||||
removeDonateButton: true,
|
|
||||||
|
|
||||||
/* CryptPad will display a point of contact for your instance on its contact page
|
|
||||||
* (/contact.html) if you provide it below.
|
|
||||||
*/
|
|
||||||
adminEmail: '__EMAIL__',
|
|
||||||
|
|
||||||
/*
|
|
||||||
* By default, CryptPad contacts one of our servers once a day.
|
|
||||||
* This check-in will also send some very basic information about your instance including its
|
|
||||||
* version and the adminEmail so we can reach you if we are aware of a serious problem.
|
|
||||||
* We will never sell it or send you marketing mail.
|
|
||||||
*
|
|
||||||
* If you want to block this check-in and remain set 'blockDailyCheck' to true.
|
|
||||||
*/
|
|
||||||
blockDailyCheck: true,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* By default users get 50MB of storage by registering on an instance.
|
|
||||||
* You can set this value to whatever you want.
|
|
||||||
*
|
|
||||||
* hint: 50MB is 50 * 1024 * 1024
|
|
||||||
*/
|
|
||||||
//defaultStorageLimit: 50 * 1024 * 1024,
|
|
||||||
|
|
||||||
|
|
||||||
/* =====================
|
/* =====================
|
||||||
* STORAGE
|
* STORAGE
|
||||||
* ===================== */
|
* ===================== */
|
||||||
|
@ -226,29 +177,6 @@ module.exports = {
|
||||||
*/
|
*/
|
||||||
//maxUploadSize: 20 * 1024 * 1024,
|
//maxUploadSize: 20 * 1024 * 1024,
|
||||||
|
|
||||||
/*
|
|
||||||
* CryptPad allows administrators to give custom limits to their friends.
|
|
||||||
* add an entry for each friend, identified by their user id,
|
|
||||||
* which can be found on the settings page. Include a 'limit' (number of bytes),
|
|
||||||
* a 'plan' (string), and a 'note' (string).
|
|
||||||
*
|
|
||||||
* hint: 1GB is 1024 * 1024 * 1024 bytes
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
customLimits: {
|
|
||||||
"[cryptpad-user1@my.awesome.website/YZgXQxKR0Rcb6r6CmxHPdAGLVludrAF2lEnkbx1vVOo=]": {
|
|
||||||
limit: 20 * 1024 * 1024 * 1024,
|
|
||||||
plan: 'insider',
|
|
||||||
note: 'storage space donated by my.awesome.website'
|
|
||||||
},
|
|
||||||
"[cryptpad-user2@my.awesome.website/GdflkgdlkjeworijfkldfsdflkjeEAsdlEnkbx1vVOo=]": {
|
|
||||||
limit: 10 * 1024 * 1024 * 1024,
|
|
||||||
plan: 'insider',
|
|
||||||
note: 'storage space donated by my.awesome.website'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Users with premium accounts (those with a plan included in their customLimit)
|
/* Users with premium accounts (those with a plan included in their customLimit)
|
||||||
* can benefit from an increased upload size limit. By default they are restricted to the same
|
* can benefit from an increased upload size limit. By default they are restricted to the same
|
||||||
* upload size as any other registered user.
|
* upload size as any other registered user.
|
||||||
|
@ -348,4 +276,13 @@ module.exports = {
|
||||||
* (false by default)
|
* (false by default)
|
||||||
*/
|
*/
|
||||||
verbose: false,
|
verbose: false,
|
||||||
|
|
||||||
|
/* Surplus information:
|
||||||
|
*
|
||||||
|
* 'installMethod' is included in server telemetry to voluntarily
|
||||||
|
* indicate how many instances are using unofficial installation methods
|
||||||
|
* such as Docker.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
installMethod: 'unspecified',
|
||||||
};
|
};
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "Zero Knowledge realtime collaborative editor",
|
"en": "Zero Knowledge realtime collaborative editor",
|
||||||
"fr": "Éditeur chiffré collaboratif en temps réel."
|
"fr": "Éditeur chiffré collaboratif en temps réel."
|
||||||
},
|
},
|
||||||
"version": "4.7.0~ynh1",
|
"version": "4.8.0~ynh1",
|
||||||
"url": "https://cryptpad.fr/",
|
"url": "https://cryptpad.fr/",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
|
|
Loading…
Reference in a new issue