diff options
author | Chocobozzz <me@florianbigard.com> | 2020-01-30 11:53:38 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-01-30 11:53:38 +0100 |
commit | ca6d36227a9273f616a462d3aad6a721ab5dd627 (patch) | |
tree | a1610578e719ddb2c58199f06dd4eae436d25c0a /server/initializers/constants.ts | |
parent | 215304eaa06020f27152108567c6a9de16b220d3 (diff) | |
download | PeerTube-ca6d36227a9273f616a462d3aad6a721ab5dd627.tar.gz PeerTube-ca6d36227a9273f616a462d3aad6a721ab5dd627.tar.zst PeerTube-ca6d36227a9273f616a462d3aad6a721ab5dd627.zip |
Add url field in caption and use it for thumbnails
Diffstat (limited to 'server/initializers/constants.ts')
-rw-r--r-- | server/initializers/constants.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 64803b1db..3a9946bba 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -14,7 +14,7 @@ import { CONFIG, registerConfigChangedHandler } from './config' | |||
14 | 14 | ||
15 | // --------------------------------------------------------------------------- | 15 | // --------------------------------------------------------------------------- |
16 | 16 | ||
17 | const LAST_MIGRATION_VERSION = 475 | 17 | const LAST_MIGRATION_VERSION = 480 |
18 | 18 | ||
19 | // --------------------------------------------------------------------------- | 19 | // --------------------------------------------------------------------------- |
20 | 20 | ||
@@ -541,11 +541,13 @@ let STATIC_MAX_AGE = { | |||
541 | // Videos thumbnail size | 541 | // Videos thumbnail size |
542 | const THUMBNAILS_SIZE = { | 542 | const THUMBNAILS_SIZE = { |
543 | width: 223, | 543 | width: 223, |
544 | height: 122 | 544 | height: 122, |
545 | minWidth: 150 | ||
545 | } | 546 | } |
546 | const PREVIEWS_SIZE = { | 547 | const PREVIEWS_SIZE = { |
547 | width: 850, | 548 | width: 850, |
548 | height: 480 | 549 | height: 480, |
550 | minWidth: 400 | ||
549 | } | 551 | } |
550 | const AVATARS_SIZE = { | 552 | const AVATARS_SIZE = { |
551 | width: 120, | 553 | width: 120, |