Skip to content

Commit

Permalink
Prepare for 16.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Petry committed Dec 10, 2018
1 parent 625502e commit 0f634ff
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Expand Up @@ -4,15 +4,21 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]
## [16.1.1]

### Changed

- Set max version to 10 because core platform is switching to Semver

## [16.1.0] - 2018-07-11

### Fixed

- Rotate images in the browser [#764](https://github.com/owncloud/gallery/pull/764)
- Do not break if mount is not available [#739](https://github.com/owncloud/gallery/pull/739)
- Fix to work properly with 10.0.9 [738](https://github.com/owncloud/gallery/pull/738)

[Unreleased]: https://github.com/owncloud/gallery/compare/v16.1.0...HEAD
[16.1.1]: https://github.com/owncloud/gallery/compare/v16.1.0...v16.1.1
[16.1.0]: https://github.com/owncloud/gallery/compare/v16.0.2...v16.1.0


Expand Down
6 changes: 5 additions & 1 deletion Makefile
Expand Up @@ -69,13 +69,14 @@ dist:
source:
rm -rf $(source_build_directory)
mkdir -p $(source_build_directory)
tar cvzf $(source_package_name).tar.gz ../$(app_name) \
tar cvzf $(source_package_name).tar.gz \
--exclude-vcs \
--exclude="../$(app_name)/build" \
--exclude="../$(app_name)/js/node_modules" \
--exclude="../$(app_name)/node_modules" \
--exclude="../$(app_name)/*.log" \
--exclude="../$(app_name)/js/*.log" \
../$(app_name)

# Builds the source package for the app store, ignores php and js tests
.PHONY: appstore
Expand All @@ -97,6 +98,9 @@ appstore:
utility \
templates \
js \
README.md \
CHANGELOG.md \
COPYING \
$(appstore_package_name)

ifdef CAN_SIGN
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Expand Up @@ -20,7 +20,7 @@ Media gallery that adds image viewing capabilities to files view and public link
- Mobile support</description>
<licence>AGPL</licence>
<author>Olivier Paroz, Robin Appelman, Thomas Müller</author>
<version>16.1.0</version>
<version>16.1.1</version>
<namespace>Gallery</namespace>
<documentation>
<user>https://doc.owncloud.com/server/latest/user_manual/files/gallery_app.html</user>
Expand All @@ -33,7 +33,7 @@ Media gallery that adds image viewing capabilities to files view and public link
<bugs>https://github.com/owncloud/gallery/issues</bugs>
<repository type="git">https://github.com/owncloud/gallery.git</repository>
<dependencies>
<owncloud min-version="10.0" max-version="11.0.0.0"/>
<owncloud min-version="10" max-version="10"/>
</dependencies>
<default_enable />
</info>

0 comments on commit 0f634ff

Please sign in to comment.