Skip to content

Commit

Permalink
releases v2.1.0 with multi-dimension animations support
Browse files Browse the repository at this point in the history
  • Loading branch information
wajahatkarim3 committed Jun 2, 2018
1 parent 91f29e9 commit 86f2f5e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion EasyFlipView/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ext {
siteUrl = 'https://github.com/wajahatkarim3/EasyFlipView'
gitUrl = 'https://github.com/wajahatkarim3/EasyFlipView.git'

libraryVersion = '2.0.6'
libraryVersion = '2.1.0'

developerId = 'wajahatkarim3'
developerName = 'Wajahat Karim'
Expand Down
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Installation
Add this in your app's build.gradle file:
```groovy
dependencies {
implementation 'com.wajahatkarim3.EasyFlipView:EasyFlipView:2.0.6'
implementation 'com.wajahatkarim3.EasyFlipView:EasyFlipView:2.1.0'
}
```

Expand All @@ -26,7 +26,7 @@ Or add EasyFlipView as a new dependency inside your pom.xml
<dependency>
<groupId>com.wajahatkarim3.EasyFlipView</groupId>
<artifactId>EasyFlipView</artifactId>
<version>2.0.6</version>
<version>2.1.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -44,6 +44,7 @@ EasyFlipView In XML layouts("Vertical")
app:flipEnabled="true"
app:flipDuration="400"
app:flipType="vertical"
app:flipFrom="front"
>

<!-- Back Layout Goes Here -->
Expand All @@ -63,6 +64,7 @@ EasyFlipView In XML layouts("Horizontal")
app:flipOnTouch="true"
app:flipEnabled="true"
app:flipDuration="400"
app:flipFrom="right"
app:flipType="horizontal"
>

Expand Down Expand Up @@ -100,6 +102,18 @@ All customizable attributes for EasyFlipView
<td>vertical</td>
<td>Whether card should flip in vertical or horizontal</td>
</tr>
<tr>
<td>app:flipType="horizontal"</td>
<td>vertical</td>
<td>Whether card should flip in vertical or horizontal</td>
</tr>
<tr>
<td>app:flipFrom="right"
app:flipFrom="back"</td>
<td>left
front</td>
<td>Whether card should flip from left to right Or right to left(Horizontal type) or car should flip to front or back(Vertical type)</td>
</tr>
</table>

In Code (Java)
Expand Down Expand Up @@ -185,8 +199,8 @@ Wajahat Karim
Special Thanks
=========
- [**iGio90**](https://github.com/iGio90) for adding dynamic views support [Pull Request # 10](https://github.com/wajahatkarim3/EasyFlipView/pull/10)

- [**Sachin Varma**](https://www.linkedin.com/in/sachin-varma-58b243118/) for adding vertical animations support [Pull Request # 12](https://github.com/wajahatkarim3/EasyFlipView/pull/12)
- [**Sachin Varma**](https://www.linkedin.com/in/sachin-varma-58b243118/) for adding multi-dimension animations support [Pull Request # 23](https://github.com/wajahatkarim3/EasyFlipView/pull/23)


# How to Contribute
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
}
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ org.gradle.jvmargs=-Xmx1536M
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

# JDK Path
org.gradle.java.home=C:\\Program Files\\Java\\jdk1.8.0_144

0 comments on commit 86f2f5e

Please sign in to comment.