Skip to content

Commit

Permalink
v2.5.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Peal committed Jan 10, 2018
1 parent cca6a20 commit eca9c70
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 2.5.0-beta2
### Features and Improvements
* Completely overhauled json deserialization. Deserializing a composition takes half as long and
can deserialize much larger json files (tested 50mb) without ooming.
* Added a new LottieInterpolatedValue class in which you set start, end, and interpolator values
for a property.
* Added setValue methods to all LottieValue classes.
* Renamed some of the LottieValue classes for clarity.
* API to add all animator listeners.
* Adhere to the Animatable interface.
### Bugs Fixed
* Prevent a crash trying to recycle a null bitmap.

# 2.5.0-beta1
### Features and Improvements
* Added the ability to dynamically change properties at runtime. See [docs](http://airbnb.io/lottie/android/dynamic.html) for more info.
Expand Down
4 changes: 2 additions & 2 deletions LottieSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "com.airbnb.lottie"
minSdkVersion 16
targetSdkVersion 27
versionCode 29
versionName "2.5.0-beta1"
versionCode 30
versionName "2.5.0-beta2"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
buildConfigField("String", "S3AccessKey", "\"" + System.getenv("LOTTIE_S3_API_KEY") + "\"")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ Gradle is the only supported build configuration, so just add the dependency to

```groovy
dependencies {
compile 'com.airbnb.android:lottie:2.5.0-beta1'
compile 'com.airbnb.android:lottie:2.5.0-beta2'
}
```
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=2.5.0-beta1
VERSION_NAME=2.5.0-beta2
GROUP=com.airbnb.android

POM_DESCRIPTION=Lottie is an animation library that renders Adobe After Effects animations natively in realtime.
Expand Down
2 changes: 1 addition & 1 deletion lottie/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
minSdkVersion 14
targetSdkVersion 27
versionCode 100
versionName "2.5.0-beta1"
versionName "2.5.0-beta2"
}
lintOptions {
abortOnError true
Expand Down

0 comments on commit eca9c70

Please sign in to comment.