Go to file
Morris Jobke aaa1df5d1e Merge pull request #250 from nextcloud/stable9-bump-dom-purify
[stable9] Bump DOMPurify version
2017-04-21 16:12:32 -05:00
.github Add risk / caveats to feature request template 2016-02-25 23:13:57 +01:00
appinfo Do not allow access to write-only shares 2016-06-13 00:39:08 +02:00
build Restore screenshot 2016-02-29 17:59:19 +01:00
config Optimise ConfigValidator 2016-02-14 21:12:43 +01:00
controller Do not display technical error messages 2016-09-14 17:48:37 +02:00
css Make menu item icons in the slideshow the same size as the rest 2016-02-26 18:44:02 +01:00
documentation Some unit tests for the Environment class 2015-08-23 04:11:28 +02:00
environment Restrict token access 2016-06-12 18:36:02 +02:00
http Add download API 2015-08-19 01:52:13 +02:00
img update toggle icon, remove outdated download icon, ref #51 2016-02-26 10:47:19 +01:00
js Bump DOMPurify version 2017-04-21 20:56:24 +02:00
l10n [tx-robot] updated from transifex 2016-02-24 15:54:24 -05:00
middleware Fix for string id 2016-07-07 15:36:22 +02:00
preview [8.2, 8.1] Remove obsolete preview validator 2015-09-24 23:24:17 +02:00
service Do not allow access to write-only shares 2016-06-13 00:39:08 +02:00
templates fix share link button label 2016-08-20 16:33:42 +02:00
tests Move createMock to GalleryUnitTest 2016-09-14 17:49:23 +02:00
utility Decomplexify EventSource->send 2015-09-13 14:21:19 +02:00
vendor Update libraries 2015-10-06 10:14:55 +02:00
.gitmodules Publish documentation and reports on GitHub 2015-08-15 21:26:51 +02:00
.scrutinizer.yml Max version is PHP 7 2015-08-21 01:11:32 +02:00
.travis.yml Fix Travis-CI to make it work with newer versions of Composer 2016-06-12 18:53:14 +02:00
AUTHORS.md Preparing for 2.0.8 2015-04-08 03:06:07 +02:00
CHANGELOG.md Update Changelog 2016-03-01 01:27:31 +01:00
COPYING Newlines 2015-01-27 12:28:18 +01:00
README.md Restore screenshot 2016-02-29 17:59:19 +01:00
codeception.yml Unit tests for ConfigParser 2015-09-07 22:06:17 +02:00
composer.json Add code coverage report for api tests 2015-08-16 22:21:47 +02:00
composer.lock Update libraries 2015-10-06 10:14:55 +02:00
phpdoc.xml Unit tests for ConfigParser 2015-09-07 22:06:17 +02:00

README.md

Gallery

Build Status Scrutinizer Code Quality Code Coverage

Media gallery for ownCloud which includes previews for all media types supported by your ownCloud installation.

Provides a dedicated view of all images in a grid, adds image viewing capabilities to the files app and adds a gallery view to public links.

This version is for ownCloud 9.0. If you need the same app for older versions of ownCloud. Use Gallery+ from the app store.

Screenshot

Featuring

  • Support for large selection of media types (depending on ownCloud setup)
  • Large, zoomable previews which can be shown in fullscreen mode
  • Sort images by name or date added
  • Per album description and copyright statement
  • A la carte features (external shares, native svg, etc.)
  • Image download straight from the slideshow or the gallery
  • Seamlessly jump between the gallery and the files view
  • Ignore folders containing a ".nomedia" file
  • Native SVG support (disabled by default)
  • Mobile support

Checkout the full changelog for more.

Maintainers

Current

Alumni

Contributors

Requirements

See this wiki article about the requirements for Gallery.

Supporting the development

There are many ways in which you can help make Gallery a better product

  • Report bugs (see below)
  • Provide patches for both owncloud/core and the app
  • Help test new features by checking out new branches on Github
  • Design interface components for new features
  • Develop new features. Please consult with the maintainers before starting your journey
  • Fund a feature, either via BountySource or by directly hiring a maintainer or anybody else who is capable of developing and maintaining it

Bug reporting and contributing

Everything you need to know about bug reporting and contributing is located here.

Preparation

Here is a list of steps you might want to take before using the app

Supporting more media types

First, make sure you have installed ImageMagick and its PECL extension. Next add a few new entries to your config/config.php configuration file.

  'preview_max_scale_factor' => 1,
  'enabledPreviewProviders' =>
  array (
    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'
  ),

Look at the sample configuration (config.sample.php) in your config folder if you need more information about how the config file works. That's it. You should be able to see more media types in your slideshows and galleries as soon as you've installed the app.

Improving performance

Assets pipelining

Make sure to enable "asset pipelining", so that all the Javascript and CSS resources can be mixed together. This can greatly reduce the loading time of the app.

Read about it in the Administration Manual

Installation

Installing from the app store

  • As an admin, select "Apps" in the menu
  • Go to the "disabled apps" section
  • Enable Gallery

Installing from archive

  • Go to the the releases page
  • Download the latest release/archive to your server's owncloud/apps/ directory
  • Unpack the app
  • IMPORTANT: Make sure the folder name is gallery

Installing from Git

In your terminal go into the owncloud/apps/ directory and then run the following command:

$ git clone https://github.com/owncloud/gallery.git

Now you can activate it in the apps menu. It's called Gallery

To update the app go inside you owncloud/apps/gallery/ directory and type:

$ git pull --rebase

List of patches

None so far