mirror of
https://github.com/YunoHost-Apps/outline_ynh.git
synced 2024-09-03 19:56:12 +02:00
commit
04e3e6dd93
7 changed files with 21 additions and 21 deletions
|
@ -25,7 +25,7 @@ The fastest wiki and knowledge base for growing teams. Beautiful, feature rich,
|
||||||
- Using Yunohost's built-in SMTP server for notifications
|
- Using Yunohost's built-in SMTP server for notifications
|
||||||
|
|
||||||
|
|
||||||
**Shipped version:** 0.62.0~ynh3
|
**Shipped version:** 0.63.0~ynh1
|
||||||
|
|
||||||
**Demo:** https://app.getoutline.com/create
|
**Demo:** https://app.getoutline.com/create
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ The fastest wiki and knowledge base for growing teams. Beautiful, feature rich,
|
||||||
- Using Yunohost's built-in SMTP server for notifications
|
- Using Yunohost's built-in SMTP server for notifications
|
||||||
|
|
||||||
|
|
||||||
**Version incluse :** 0.62.0~ynh3
|
**Version incluse :** 0.63.0~ynh1
|
||||||
|
|
||||||
**Démo :** https://app.getoutline.com/create
|
**Démo :** https://app.getoutline.com/create
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://github.com/outline/outline/archive/refs/tags/v0.62.0.tar.gz
|
SOURCE_URL=https://github.com/outline/outline/archive/refs/tags/v0.63.0.tar.gz
|
||||||
SOURCE_SUM=13abbf5559af9cfee5da83e8832495d5b9195bad60745a82ae2419c19c2dad99
|
SOURCE_SUM=ca2758a6461c7a159c073374a2480b77d2049625ff9ef87686f57557bd2f0bb4
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.gz
|
SOURCE_FORMAT=tar.gz
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=true
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "An open, extensible, wiki for your team built using React and Node.js.",
|
"en": "An open, extensible, wiki for your team built using React and Node.js.",
|
||||||
"fr": "Un wiki open source et évolutif pour votre équipe, conçu avec React et Node.js"
|
"fr": "Un wiki open source et évolutif pour votre équipe, conçu avec React et Node.js"
|
||||||
},
|
},
|
||||||
"version": "0.62.0~ynh3",
|
"version": "0.63.0~ynh1",
|
||||||
"url": "www.getoutline.com",
|
"url": "www.getoutline.com",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "BUSL-1.1",
|
"license": "BUSL-1.1",
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
{
|
{
|
||||||
"name": "minio_password",
|
"name": "minio_password",
|
||||||
"type": "password",
|
"type": "password",
|
||||||
"ask": "Domain for MinIO app, used for images and attachements storage. Please note that if MinIO is already installed, that setting won't be used"
|
"ask": "Password for MinIO admin"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ NODEJS_VERSION=14
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
ynh_hex_32_random() {
|
ynh_hex_32_random() {
|
||||||
echo "$(openssl rand -hex 32)"
|
echo "$(tr -dc 'A-F0-9' < /dev/urandom | head -c64)"
|
||||||
}
|
}
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
diff --git a/app/scenes/Document/components/Document.tsx b/app/scenes/Document/components/Document.tsx
|
diff --git a/app/scenes/Document/components/Document.tsx b/app/scenes/Document/components/Document.tsx
|
||||||
index 83ab850f..70ae99ec 100644
|
index 955a1fd5..ce385aa2 100644
|
||||||
--- a/app/scenes/Document/components/Document.tsx
|
--- a/app/scenes/Document/components/Document.tsx
|
||||||
+++ b/app/scenes/Document/components/Document.tsx
|
+++ b/app/scenes/Document/components/Document.tsx
|
||||||
@@ -588,9 +588,6 @@ class DocumentScene extends React.Component<Props> {
|
@@ -611,9 +611,6 @@ class DocumentScene extends React.Component<Props> {
|
||||||
</Flex>
|
</Flex>
|
||||||
</React.Suspense>
|
</React.Suspense>
|
||||||
</MaxWidth>
|
</MaxWidth>
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
diff --git a/server/mailer.tsx b/server/mailer.tsx
|
diff --git a/server/emails/mailer.tsx b/server/emails/mailer.tsx
|
||||||
index 058e43f6..b7652b19 100644
|
index 6fc9865a..69e5b8ac 100644
|
||||||
--- a/server/mailer.tsx
|
--- a/server/emails/mailer.tsx
|
||||||
+++ b/server/mailer.tsx
|
+++ b/server/emails/mailer.tsx
|
||||||
@@ -85,6 +85,7 @@ export class Mailer {
|
@@ -109,6 +109,7 @@ export class Mailer {
|
||||||
ciphers: process.env.SMTP_TLS_CIPHERS,
|
ciphers: process.env.SMTP_TLS_CIPHERS,
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
+ ignoreTLS:true
|
+ ignoreTLS:true
|
||||||
};
|
};
|
||||||
|
}
|
||||||
if (process.env.SMTP_USERNAME) {
|
|
Loading…
Add table
Reference in a new issue