Skip to content

Commit 6bbbd90

Browse files
committed
chore(version): bump to 3.0.0-RC3
1 parent 809e140 commit 6bbbd90

File tree

3 files changed

+26
-7
lines changed

3 files changed

+26
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
Changelog
22
==========
33

4+
Version 3.0.0-RC3
5+
----------------
6+
7+
## Features:
8+
9+
- Move `RTMP` and `SRT` packages to `io.github.thibaultbee.streampack:streampack-rtmp` and
10+
`io.github.thibaultbee.streampack:streampack-srt`.
11+
- Made `SurfaceProcessor` customizable: you can now set a custom `ISurfaceProcessorInternal` to
12+
process the
13+
frames before they are sent to the encoders.
14+
- Move audio and video input settings to `audioInput` and `videoInput` members
15+
16+
## Bug fixes:
17+
18+
- Fix 16 KB page size alignment for SRT
19+
- Demos: fix crash on startup for audio only demo
20+
- Fix permissions of RTMP and SRT packages
21+
- Fix dead lock on `release`
22+
423
Version 3.0.0-RC2
524
----------------
625

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Get StreamPack core latest artifacts on Maven Central:
1111

1212
```groovy
1313
dependencies {
14-
implementation 'io.github.thibaultbee.streampack:streampack-core:3.0.0-RC2'
14+
implementation 'io.github.thibaultbee.streampack:streampack-core:3.0.0-RC3'
1515
// For UI (incl. PreviewView)
16-
implementation 'io.github.thibaultbee.streampack:streampack-ui:3.0.0-RC2'
16+
implementation 'io.github.thibaultbee.streampack:streampack-ui:3.0.0-RC3'
1717
// For services (incl. screen capture/media projection service)
18-
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC2'
18+
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC3'
1919
// For RTMP
20-
implementation 'io.github.thibaultbee.streampack:streampack-rtmp:3.0.0-RC2'
20+
implementation 'io.github.thibaultbee.streampack:streampack-rtmp:3.0.0-RC3'
2121
// For SRT
22-
implementation 'io.github.thibaultbee.streampack:streampack-srt:3.0.0-RC2'
22+
implementation 'io.github.thibaultbee.streampack:streampack-srt:3.0.0-RC3'
2323
}
2424
```
2525

@@ -249,7 +249,7 @@ For a complete example, check out the [demos/camera](demos/camera) directory.
249249

250250
```groovy
251251
dependencies {
252-
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC2'
252+
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC3'
253253
}
254254
```
255255

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010

1111
allprojects {
1212
val versionCode by extra { 3_000_000 }
13-
val versionName by extra { "3.0.0-RC2" }
13+
val versionName by extra { "3.0.0-RC3" }
1414

1515
group = "io.github.thibaultbee.streampack"
1616
version = versionName

0 commit comments

Comments
 (0)