Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ipavlidakis committed Nov 12, 2024
1 parent 654a538 commit 5302bf1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

# Upcoming

### 🐞 Fixed
- When joining one call after another, the last frame of the previous call was flashing for a split second in the new call [#596](https://github.com/GetStream/stream-video-swift/pull/596)

# [1.14.0](https://github.com/GetStream/stream-video-swift/releases/tag/1.14.0)
_November 06, 2024_

### ✅ Added
- You can now provide the incoming video quality setting for some or all participants [#571](https://github.com/GetStream/stream-video-swift/pull/571)
- You can now set the time a user can remain in the call - after their connection disrupted - while waiting for their network connection to recover [#573](https://github.com/GetStream/stream-video-swift/pull/573)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final class VideoRendererPool {

/// Initializes the `VideoRendererPool` with a specified initial capacity.
///
/// - Parameter initialCapacity: The initial capacity of the pool (default is 2).
/// - Parameter initialCapacity: The initial capacity of the pool (default is 0).
init(initialCapacity: Int = 0) {
// Initialize the pool with a capacity and a factory closure to create `VideoRenderer` instances
pool = ReusePool(initialCapacity: initialCapacity) {
Expand Down

0 comments on commit 5302bf1

Please sign in to comment.