diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b3df84d5..ed5d53cc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,29 @@ -Change Log +Changelog ========== +Version 2.6.1 +------------- + +## Features: + +- Upgrade dependencies (AGP 8.4.2, Kotlin 1.9.24,...) + +## Bug fixes: + +- Streamer: do not call `stopStream` when streamer is not streaming +- ScreenRecorder: fix callback + registration [#147](https://github.com/ThibaultBee/StreamPack/issues/147) +- PreviewView: fix facing camera orientation +- PreviewView: fix synchro +- MP4: use relative timestamps +- FLV: fix onMetadata audio sample size +- FLV: fix onMetadata timestamp +- FLV: only send header once +- TS: fix PES packet length when frame size is > + 65535 [#135](https://github.com/ThibaultBee/StreamPack/issues/135). Thanks to @moliyadi +- AudioSource: try catch audio processors and properly release them +- VideoConfig: only set HDR when profile and level can be set + Version 2.6.0 ------------- diff --git a/README.md b/README.md index a811a41c2..9c783517d 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ Get StreamPack core latest artifacts on mavenCentral: ```groovy dependencies { - implementation 'io.github.thibaultbee:streampack:2.6.0' + implementation 'io.github.thibaultbee:streampack:2.6.1' // For RTMP - implementation 'io.github.thibaultbee:streampack-extension-rtmp:2.6.0' + implementation 'io.github.thibaultbee:streampack-extension-rtmp:2.6.1' // For SRT - implementation 'io.github.thibaultbee:streampack-extension-srt:2.6.0' + implementation 'io.github.thibaultbee:streampack-extension-srt:2.6.1' } ``` diff --git a/build.gradle b/build.gradle index 44380e2a0..d2ded191f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,8 @@ buildscript { ext { // Upgrade StreamPack version here - streampackCode = 2_006_000 - streampackVersion = '2.6.0' + streampackCode = 2_006_001 + streampackVersion = '2.6.1' minSdk = 21 compileSdk = 34