diff options
author | Olivier Paroz <github@oparoz.com> | 2015-03-20 22:11:42 +0100 |
---|---|---|
committer | Olivier Paroz <github@oparoz.com> | 2015-03-20 22:11:42 +0100 |
commit | f3fe46685b5152a24a1106676b77131022af01a1 (patch) | |
tree | d42d678838af212f83fb7dd768d55eaf3a4f0a41 /lib/private | |
parent | 6c9892562148857197caa1ce9cd1b58ceda10dac (diff) | |
download | nextcloud-server-f3fe46685b5152a24a1106676b77131022af01a1.tar.gz nextcloud-server-f3fe46685b5152a24a1106676b77131022af01a1.zip |
Introducing 3D images support (media type)
So that people with 3D images can at least see a 2D picture
Full 3D support is possible via an app
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/mimetypes.list.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index c051c0eded2..af2c651cf80 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -81,6 +81,7 @@ return array( 'impress' => array('text/impress', null), 'jpeg' => array('image/jpeg', null), 'jpg' => array('image/jpeg', null), + 'jps' => array('image/jpeg', null), 'js' => array('application/javascript', 'text/plain'), 'json' => array('application/json', 'text/plain'), 'k25' => array('image/x-dcraw', null), @@ -103,6 +104,7 @@ return array( 'mp4' => array('video/mp4', null), 'mpeg' => array('video/mpeg', null), 'mpg' => array('video/mpeg', null), + 'mpo' => array('image/jpeg', null), 'msi' => array('application/x-msi', null), 'nef' => array('image/x-dcraw', null), 'numbers' => array('application/x-iwork-numbers-sffnumbers', null), |