Skip to content

Commit

Permalink
version jump
Browse files Browse the repository at this point in the history
  • Loading branch information
Typhon0 committed Sep 25, 2020
1 parent 8e899e1 commit a6a1b7c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
30 changes: 18 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,53 @@
[![Build Status](https://travis-ci.org/Typhon0/AnimateFX.svg?branch=master)](https://travis-ci.org/Typhon0/AnimateFX)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Bintray](https://api.bintray.com/packages/typhon0/AnimateFX/animatefx/images/download.svg)](https://bintray.com/typhon0/AnimateFX/animatefx)
[![javadoc](https://javadoc.io/badge2/io.github.typhon0/AnimateFX/javadoc.svg)](https://javadoc.io/doc/io.github.typhon0/AnimateFX)
[![javadoc](https://javadoc.io/badge2/io.github.typhon0/AnimateFX/javadoc.svg)](https://javadoc.io/doc/io.github.typhon0/AnimateFX)
[![Join the chat at https://gitter.im/AnimateFX/Lobby](https://badges.gitter.im/AnimateFX/Lobby.svg)](https://gitter.im/AnimateFX/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

# AnimateFX

A library of ready-to-use animations for JavaFX

Features:

* Custom animations
* Custom interpolators
* Play/Stop animation
* Play an animation after another
* More to come
- Custom animations
- Custom interpolators
- Play/Stop animation
- Play an animation after another
- More to come

# Installation

### Gradle

```
dependencies {
compile 'io.github.typhon0:AnimateFX:1.2.1'
compile 'io.github.typhon0:AnimateFX:1.2.2'
}
```

### Maven

```
<dependency>
<groupId>io.github.typhon0</groupId>
<artifactId>AnimateFX</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<type>pom</type>
</dependency>
```

## Snapshot

### Gradle

```
repositories {
maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
dependencies {
compile('group.id:animatefx:1.2.1-SNAPSHOT')
compile('group.id:animatefx:1.2.2-SNAPSHOT')
}
```

Expand All @@ -56,15 +61,16 @@ dependencies {
<url>https://oss.jfrog.org/artifactory/libs-snapshot</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>io.github.typhon0</groupId>
<artifactId>AnimateFX</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.2-SNAPSHOT</version>
</dependency>
</dependencies>
```

# Quick start

#### Basic
Expand All @@ -85,7 +91,7 @@ new Bounce(text).play();

# Contributing

Please see [CONTRIBUTING.md](https://github.com/Typhon0/AnimateFX/blob/master/CONTRIBUTING.md) for more information.
Please see [CONTRIBUTING.md](https://github.com/Typhon0/AnimateFX/blob/master/CONTRIBUTING.md) for more information.

# Credits

Expand Down
2 changes: 1 addition & 1 deletion animatefx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
jcenter()
}

version = '1.2.1' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "")
version = '1.2.2' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "")
sourceCompatibility = 1.8

dependencies {
Expand Down

0 comments on commit a6a1b7c

Please sign in to comment.