Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-04-11 20:59:11 +0300
committerOlivier Paroz <github@oparoz.com>2015-07-25 20:31:26 +0300
commitb99e1e3cf828b16b4dc31bf0329b2aa142f1560c (patch)
treeeb34d44ba32b214c7833ccf55ef6b491f8774f14 /README.md
parent21939254ad75ec94b6ed1987fd94b2b57a6547e3 (diff)
Raw support will be in 8.1
(cherry picked from commit 87f8ad5)
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/README.md b/README.md
index 488bd822..fe408f75 100644
--- a/README.md
+++ b/README.md
@@ -126,11 +126,14 @@ Next add a few new entries to your **config/config.php** configuration file.
'preview_max_scale_factor' => 1,
'enabledPreviewProviders' =>
array (
- 0 => 'OC\\Preview\\Image',
- 1 => 'OC\\Preview\\Illustrator',
- 2 => 'OC\\Preview\\Postscript',
- 3 => 'OC\\Preview\\Photoshop',
- 4 => 'OC\\Preview\\TIFF',
+ 0 => 'OC\\Preview\\PNG',
+ 1 => 'OC\\Preview\\JPEG',
+ 2 => 'OC\\Preview\\GIF',
+ 11 => 'OC\\Preview\\Illustrator',
+ 12 => 'OC\\Preview\\Postscript',
+ 13 => 'OC\\Preview\\Photoshop',
+ 14 => 'OC\\Preview\\TIFF',
+ 15 => 'OC\\Preview\\Raw'
),
```