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

Update CHANGELOG.md #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
29 changes: 21 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,38 @@
Change Log
==========
Version 2.2.2 *(2018-5-3)*
Version 3.0.0 *(2018-5-9)*
----------------------------

* Upgrade: Gradle file
* Upgrade: Moved to Jitpack
* Updated: ReadMe
#### Updated
* Gradle has been updated
* ReadMe has been updated
* The project has been moved to the Jitpack repository.
These changes allow the user to add the library to a project in only two steps.
1. Add the following to the root build.gradle list of repositories
```
maven { url 'https://jitpack.io' }
```
2. Add the dependency
```
implementation 'com.github.User:Repo:Tag'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can probably update for parallaxpager directly here

```

Version 2.2.0 *(2015-02-23)*
----------------------------

* New: added `override_visibility` attribute to allow for overriding the default visibility behaviour.
#### Added
* Added `override_visibility` attribute to allow for overriding the default visibility behaviour.
When false, it will act as it has; true will not change the visibility of the View at all,
leaving it to the implementer.


Version 2.1.0 *(2015-02-19)*
----------------------------

* New: `ParallaxContainer.setOnPageChangeListener()` to access page change events of the
#### Added
* `ParallaxContainer.setOnPageChangeListener()` to access page change events of the
underlying ViewPager. This means that `ParallaxContainer.attachOnPageChangeListener()` is now
deprecated. You should use the listener setter from above.
* New: `ParallaxContainer.getViewPager()` to allow access to the underlying ViewPager for
* `ParallaxContainer.getViewPager()` to allow access to the underlying ViewPager for
existing code that relies on having a ViewPager instance.


Expand All @@ -31,6 +42,8 @@ Version 2.0.0 *(2015-02-17)*
* Release should be mostly backwards compatible with v1.0.0, but the sweeping changes to the
subsystem merited a major bump.
* Bugfix: Fix targeting API v21

#### Added
* New: Ability to add custom listeners to the View creation process.
This is to help work around an issue with trying to have multiple ContextWrappers meddle with
the view creation process. See sample project for Calligraphy example.
Expand Down