Enable RAW support (fix #107)
parent
506ea05d8b
commit
9bc8378207
|
@ -12,6 +12,7 @@ Memories is a photo management app for Nextcloud with advanced features includin
|
||||||
* **📱 Mobile Support**: Works on devices of any shape and size through the web app.
|
* **📱 Mobile Support**: Works on devices of any shape and size through the web app.
|
||||||
* **✏️ Edit Metadata**: Edit Exif dates on photos quickly and easily.
|
* **✏️ Edit Metadata**: Edit Exif dates on photos quickly and easily.
|
||||||
* **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.
|
* **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.
|
||||||
|
* **📷 RAW Support**: View RAW photos from your camera with the [Camera RAW Previews](https://apps.nextcloud.com/apps/camerarawpreviews) app.
|
||||||
* **⚡️ Fast**: Memories is extremely fast. Period. More details below.
|
* **⚡️ Fast**: Memories is extremely fast. Period. More details below.
|
||||||
|
|
||||||
To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/). Note that the demo is read-only and may be slow since it runs in a low-end free tier VM provided by [Oracle Cloud](https://www.oracle.com/cloud/free/). Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).
|
To get an idea of what memories looks and feels like, check out the [public demo](https://memories-demo.radialapps.com/apps/memories/). Note that the demo is read-only and may be slow since it runs in a low-end free tier VM provided by [Oracle Cloud](https://www.oracle.com/cloud/free/). Photo credits go to [Unsplash](https://unsplash.com/) (for individual credits, refer to each folder).
|
||||||
|
|
|
@ -45,6 +45,7 @@ class Application extends App implements IBootstrap
|
||||||
'image/tiff',
|
'image/tiff',
|
||||||
'image/gif',
|
'image/gif',
|
||||||
'image/bmp',
|
'image/bmp',
|
||||||
|
'image/x-dcraw', // RAW
|
||||||
// 'image/x-xbitmap', // too rarely used for photos
|
// 'image/x-xbitmap', // too rarely used for photos
|
||||||
// 'image/svg+xml', // too rarely used for photos
|
// 'image/svg+xml', // too rarely used for photos
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue