Go to file
Nextcloud bot 7058639608
[tx-robot] updated from transifex
2020-09-05 02:39:17 +00:00
.github Create stale.yml 2019-09-03 20:24:30 +02:00
.tx Fix tx config 2018-02-12 23:03:23 +01:00
appinfo Update version on master 2019-09-05 11:04:36 +02:00
build Use Codecov exclusively for coverage 2017-03-12 11:57:47 +01:00
css Fix gallery sorting buttons and remove filelist ref # #16076 2019-06-27 14:46:18 +02:00
documentation Use Codecov exclusively for coverage 2017-03-12 11:57:47 +01:00
img Update templates with new .icon-white and .icon-shadow classes; move toggle.svg to core, remove deprecated icons 2017-11-28 10:46:35 +01:00
js Force close all tooltips when closing sharing menu 2019-10-09 08:21:57 +02:00
l10n [tx-robot] updated from transifex 2020-09-05 02:39:17 +00:00
lib Don't load shares of files drop 2019-10-22 09:58:41 +02:00
templates Fix gallery sorting buttons and remove filelist ref # #16076 2019-06-27 14:46:18 +02:00
tests Fix PageControllerTest 2018-04-05 21:29:00 +02:00
vendor Update Composer 2017-03-12 00:36:21 +01:00
.gitmodules This is the Nextcloud Gallery app 2016-11-23 22:44:51 +01:00
.scrutinizer.yml Minor config changes 2017-04-23 18:36:18 +02:00
.travis.yml Update master php testing versions 2019-04-12 12:34:03 +02:00
AUTHORS.md Change Icewind's email address 2016-09-04 18:44:15 +02:00
CHANGELOG.md Update readme to include Nextcloud 2016-09-04 18:44:15 +02:00
CONTRIBUTING.md Add contributing guidelines 2016-09-04 18:44:15 +02:00
COPYING Newlines 2015-01-27 12:28:18 +01:00
Makefile Move to compiled handlebars 2018-10-30 12:27:29 +01:00
README.md Update README.md 2020-01-20 12:19:40 +01:00
codeception.yml Migrate PHP to PSR-4 2017-04-23 17:36:45 +02:00
composer.json Require PHPUnit 6.5 2018-01-27 12:46:17 +01:00
composer.lock Update composer.lock for PHPUnit 6.5 and Codeception 2.3.8 2018-01-29 00:46:24 +01:00
phpdoc.xml Unit tests for ConfigParser 2015-09-07 22:06:17 +02:00

README.md

💀Gallery was replaced by 📸 Photos

💀The gallery app has been replaced by the beautiful new app: 📸 Nextcloud Photos - Your memories under your control

Before reporting an issue or opening a pull request, please checkout the new app and see if your request still needs to be handled there. In case it is, open your PR against the photos app.


Media gallery for Nextcloud which includes previews for all media types supported by your 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 Nextcloud 14.

Screenshot

Featuring

  • Support for large selection of media types (depending on server setup)
  • Upload and organise images and albums straight from the app
  • Large, zoomable previews which can be shown in fullscreen mode
  • Sort images by name or date added
  • Per album design, description and copyright statement
  • A la carte features (external shares, browser svg rendering, etc.)
  • Image download and sharing straight from the slideshow or the gallery
  • Switch to Gallery from any folder in files and vice-versa
  • Ignore folders containing a ".nomedia" or ".noimage" file
  • Browser rendering of SVG images (disabled by default)
  • Mobile support

Checkout the full changelog for more.

Maintainers

Current

Alumni

Contributors

All the people who have provided patches to:

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 nextcloud/server or the app itself
  • 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 community member 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 imagick PECL extension. Next add a few new entries to your config/config.php configuration file.

  '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

Redis for files locking

Using Redis for files locking improves performance by a factor of 10 when loading an album.

Read about it in the Nextcloud 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 apps/ directory
  • Unpack the app
  • IMPORTANT: Make sure the folder name is gallery

Installing from Git

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

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

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

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

$ git pull --rebase

List of patches

None so far