Skip to content

Commit

Permalink
Prepare for release 1.5.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
izzytwosheds committed May 10, 2022
1 parent 70a05a0 commit 17eb3e9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 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
- AudioRenderer now picks correct AudioProcessor when audio format changes during transcoding [#190] (https://github.com/linkedin/LiTr/pull/190)

## Version 1.5.0 (2022-04-01)

- Fix for error callback is not called with InsufficientDiskSpace exception [#179] (https://github.com/linkedin/LiTr/pull/179) by @mikeshuttjuvo
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.0'
implementation 'com.linkedin.android.litr:litr:1.5.1'
```
...or Maven:

```xml
<dependency>
<groupId>com.linkedin.android.litr</groupId>
<artifactId>litr</artifactId>
<version>1.5.0</version>
<version>1.5.1</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.0'
implementation 'com.linkedin.android.litr:litr-filters:1.5.1'
```
...or Maven:

```xml
<dependency>
<groupId>com.linkedin.android.litr</groupId>
<artifactId>litr-filters</artifactId>
<version>1.5.0</version>
<version>1.5.1</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.1-SNAPSHOT
VERSION_NAME=1.5.1

0 comments on commit 17eb3e9

Please sign in to comment.