Skip to content

Commit

Permalink
chore(version): bump to 2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Jan 6, 2023
1 parent 3c04658 commit 48b992d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,32 @@
Change Log
==========

Version 2.5.2
-------------

## API Changes:

- Rename `gopSize` to `gopDuration` in `VideoConfig` class.

## Features:

- RTMP: force synchronisation of audio and video frames.

## Bug fixes:

- Fixed a crash when the microphone is muted.

Version 2.5.1
-------------

## API Changes
## API Changes:

- `StreamerSurfaceView` has been renamed `PreviewView` and it is not longer a `SurfaceView`

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

## API Changes
## API Changes:

- The logger is now a static class `Logger`. You still can set the `ILogger` implementation
with `Logger.setLogger()`.
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.5.1'
implementation 'io.github.thibaultbee:streampack:2.5.2'
}
```

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

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

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

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

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_005_001
streampackVersion = '2.5.1'
streampackCode = 2_005_002
streampackVersion = '2.5.2'

minSdk = 21
compileSdk = 31
Expand Down

0 comments on commit 48b992d

Please sign in to comment.