Skip to content

Commit 17eb3e9

Browse files
committed
Prepare for release 1.5.1.
1 parent 70a05a0 commit 17eb3e9

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## Version 1.5.1 (2022-05-10)
4+
5+
- Fix for incorrect orientation angle calculation during MVP matrix initialization [#185] (https://github.com/linkedin/LiTr/pull/185) by @kolesnikov-pasha
6+
- AudioRenderer now picks correct AudioProcessor when audio format changes during transcoding [#190] (https://github.com/linkedin/LiTr/pull/190)
7+
38
## Version 1.5.0 (2022-04-01)
49

510
- Fix for error callback is not called with InsufficientDiskSpace exception [#179] (https://github.com/linkedin/LiTr/pull/179) by @mikeshuttjuvo

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ By default, LiTr uses Android MediaCodec stack for hardware accelerated decoding
2323
Simply grab via Gradle:
2424

2525
```groovy
26-
implementation 'com.linkedin.android.litr:litr:1.5.0'
26+
implementation 'com.linkedin.android.litr:litr:1.5.1'
2727
```
2828
...or Maven:
2929

3030
```xml
3131
<dependency>
3232
<groupId>com.linkedin.android.litr</groupId>
3333
<artifactId>litr</artifactId>
34-
<version>1.5.0</version>
34+
<version>1.5.1</version>
3535
</dependency>
3636

3737
```
@@ -127,15 +127,15 @@ You can use custom filters to modify video frames. Write your own in OpenGL as a
127127
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!
128128

129129
```groovy
130-
implementation 'com.linkedin.android.litr:litr-filters:1.5.0'
130+
implementation 'com.linkedin.android.litr:litr-filters:1.5.1'
131131
```
132132
...or Maven:
133133

134134
```xml
135135
<dependency>
136136
<groupId>com.linkedin.android.litr</groupId>
137137
<artifactId>litr-filters</artifactId>
138-
<version>1.5.0</version>
138+
<version>1.5.1</version>
139139
</dependency>
140140

141141
```

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ org.gradle.jvmargs=-Xmx1536m
2222
android.useAndroidX=true
2323

2424
GROUP_ID=com.linkedin.android.litr
25-
VERSION_NAME=1.5.1-SNAPSHOT
25+
VERSION_NAME=1.5.1

0 commit comments

Comments
 (0)