Skip to content

Commit

Permalink
Prepare for release 1.5.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
izzytwosheds committed Jun 30, 2022
1 parent 7e65a80 commit fa4b564
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## Version 1.5.2 (2022-06-30)

- Audio filter that changes track volume [#193] (https://github.com/linkedin/LiTr/pull/193)
- Fix ConcurrentModificationException when removing jobs [#195] (https://github.com/linkedin/LiTr/pull/195) by @ReallyVasiliy
- Notify TransformationListener before releasing TransformationJob [#198] (https://github.com/linkedin/LiTr/pull/198) by @simekadam

## Version 1.5.1 (2022-05-10)

- Fix for incorrect orientation angle calculation during MVP matrix initialization [#185] (https://github.com/linkedin/LiTr/pull/185) by @kolesnikov-pasha
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ By default, LiTr uses Android MediaCodec stack for hardware accelerated decoding
Simply grab via Gradle:

```groovy
implementation 'com.linkedin.android.litr:litr:1.5.1'
implementation 'com.linkedin.android.litr:litr:1.5.2'
```
...or Maven:

```xml
<dependency>
<groupId>com.linkedin.android.litr</groupId>
<artifactId>litr</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>

```
Expand Down Expand Up @@ -127,15 +127,15 @@ You can use custom filters to modify video frames. Write your own in OpenGL as a
LiTr now has 40 new GPU accelerated video filters ported from [Mp4Composer-android](https://github.com/MasayukiSuda/Mp4Composer-android) and [android-gpuimage](https://github.com/cats-oss/android-gpuimage) projects. You can also create your own filter simply by configuring VideoFrameRenderFilter with your custom shader, with no extra coding!

```groovy
implementation 'com.linkedin.android.litr:litr-filters:1.5.1'
implementation 'com.linkedin.android.litr:litr-filters:1.5.2'
```
...or Maven:

```xml
<dependency>
<groupId>com.linkedin.android.litr</groupId>
<artifactId>litr-filters</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>

```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ org.gradle.jvmargs=-Xmx1536m
android.useAndroidX=true

GROUP_ID=com.linkedin.android.litr
VERSION_NAME=1.5.2-SNAPSHOT
VERSION_NAME=1.5.2

0 comments on commit fa4b564

Please sign in to comment.