Skip to content

Commit

Permalink
chore(version): bump to 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Nov 8, 2022
1 parent eef4147 commit c5572bc
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Change Log
==========

Version 2.5.0
-------------

## API Changes

- The logger is now a static class `Logger`. You still can set the `ILogger` implementation
with `Logger.setLogger()`.

## Features:

- Add a new view that simplify StreamPack integration. It supports zoom on pinch and focus on tap.
See `StreamerSurfaceView`.
- Add a `gopSize` parameter in `VideoConfig` to set the keyframe interval.
- Add an API for external cameras.
- In camera settings, add a zoom on pinch and a focus on tap API.
- Add encoder information in `AudioConfig` and `VideoConfig`.
- srt: `connect(String)` API supports URI with query parameters: `streamId` and `passphrase`.
Example: `srt://server:port?streamId=myStreamId&passphrase=myPassphrase`.

## Bug fixes:

- Fixed a crash when created a MediaCodec on few Samsung devices.
- Fixed services notification for Android 13.

Version 2.4.2
-------------

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ Get StreamPack core latest artifacts on mavenCentral:

```groovy
dependencies {
implementation 'io.github.thibaultbee:streampack:2.4.2'
implementation 'io.github.thibaultbee:streampack:2.5.0'
}
```

If you want to use RTMP, you need to add the following dependency:

```groovy
dependencies {
implementation 'io.github.thibaultbee:streampack-extension-rtmp:2.4.2'
implementation 'io.github.thibaultbee:streampack-extension-rtmp:2.5.0'
}
```

If you want to use SRT, you need to add the following dependency:

```groovy
dependencies {
implementation 'io.github.thibaultbee:streampack-extension-srt:2.4.2'
implementation 'io.github.thibaultbee:streampack-extension-srt:2.5.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ apply plugin: 'org.jetbrains.dokka'
buildscript {
ext {
// Upgrade StreamPack version here
streampackCode = 2_004_002
streampackVersion = '2.4.2'
streampackCode = 2_005_000
streampackVersion = '2.5.0'

minSdk = 21
compileSdk = 31
Expand Down

0 comments on commit c5572bc

Please sign in to comment.