Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.2.0 #103

Merged
merged 3 commits into from
Apr 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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]

## [1.2.0] - 2019-04-16

### Added

- Add occ command to reset for all users - [#83](https://github.com/owncloud/firstrunwizard/issues/83)

### Changed

- Decouple from core, switching to own release cycle

## [1.1.1]

### Changed

- Set max version to 10

## [1.1] - 2014-07-07

### Added
Expand All @@ -25,3 +43,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
### Added

- Initial implementation

[Unreleased]: https://github.com/owncloud/firstrunwizard/compare/v1.2.0...master
[1.2.0]: https://github.com/owncloud/firstrunwizard/compare/v1.1.1...v1.2.0
[1.1.1]: https://github.com/owncloud/firstrunwizard/compare/v1.1...v1.1.1
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@ dist: source appstore
source:
rm -rf $(source_build_directory)
mkdir -p $(source_build_directory)
tar cvzf $(source_package_name).tar.gz ../$(app_name) \
tar --format=gnu --owner=nobody --group=nogroup -cvzf $(source_package_name).tar.gz \
--exclude-vcs \
--exclude="../$(app_name)/build" \
--exclude="../$(app_name)/*.log"
--exclude="../$(app_name)/*.log" \
../$(app_name)

# Builds the source package for the app store, ignores php and js tests
.PHONY: appstore
Expand All @@ -76,12 +77,13 @@ appstore:
wizard.php \
$(appstore_package_name)

rm -R $(appstore_package_name)/l10n/{.tx,.gitignore}
ifdef CAN_SIGN
$(sign) --path="$(appstore_package_name)"
else
@echo $(sign_skip_msg)
endif
tar -czf $(appstore_package_name).tar.gz -C $(appstore_package_name)/../ $(app_name)
tar --format=gnu --owner=nobody --group=nogroup -czf $(appstore_package_name).tar.gz -C $(appstore_package_name)/../ $(app_name)

##---------------------
## Tests
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
The First run wizard can be customized to meet specific design goals, or to change links and messages. Create an appropriate theme following the Theming documentation, and changes to the look and feel of this Wizard are simple. More information is available in the First run wizard documentation, as well as the theming documentation.
</description>
<licence>AGPL</licence>
<author>Frank Karlitschek, Jan-Christoph Borchardt</author>
<author>Frank Karlitschek, Jan-Christoph Borchardt, Tom Needham</author>
<dependencies>
<owncloud min-version="10.2" max-version="11" />
</dependencies>
<version>1.1.1</version>
<version>1.2.0</version>
<namespace>FirstRunWizard</namespace>
<default_enable/>
<commands>
Expand Down