Skip to content

Commit

Permalink
Release 1.10.1 -
Browse files Browse the repository at this point in the history
### 1.10.1 (Feb 14, 2023 UTC)
* Added room delegates methods to detect local participant's connection with the server.
    * Added `RoomDelegate.didLocalParticipantDisconnect`
    * Added `RoomDelegate.didLocalParticipantReconnect`
  • Loading branch information
mininny committed Feb 14, 2023
1 parent 38d0ffa commit fc8fcb0
Show file tree
Hide file tree
Showing 25 changed files with 986 additions and 840 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Change Log

### 1.10.1 (Feb 14, 2023 UTC)
* Added room delegates methods to detect local participant's connection with the server.
* Added `RoomDelegate.didLocalParticipantDisconnect`
* Added `RoomDelegate.didLocalParticipantReconnect`

### 1.10.0 (Jan 31, 2023 UTC)
*Added a feature to invite users to enter a room.
* Added a feature to invite users to enter a room.
* Added `room.sendInvitation(inviteeId:completionHandler:)`.
* Added `RoomInvitation` class to manage invitation.
* Added `roomInvitation.accept`, `roomInvitation.decline`, `roomInvitation.cancel`.
Expand Down
2 changes: 1 addition & 1 deletion SendBirdCalls.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SendBirdCalls"
s.version = "1.10.0"
s.version = "1.10.1"
s.summary = "real-time calls based on Sendbird Calls SDK"
s.description = "Sendbird Calls enables real-time calls between users registered within a Sendbird application"
s.homepage = "https://sendbird.com"
Expand Down
16 changes: 8 additions & 8 deletions SendBirdCalls.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,38 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SendBirdCalls.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>SendBirdCalls.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1712,7 +1712,6 @@ SWIFT_CLASS_NAMED("Room")
@end



@interface SBCRoom (SWIFT_EXTENSION(SendBirdCalls))
@end

Expand All @@ -1731,6 +1730,7 @@ typedef SWIFT_ENUM_NAMED(NSInteger, SBCRoomState, "State", open) {
};



@interface SBCRoom (SWIFT_EXTENSION(SendBirdCalls))
@end

Expand Down Expand Up @@ -1845,6 +1845,18 @@ SWIFT_PROTOCOL_NAMED("RoomDelegate")
/// </li>
/// </ul>
- (void)didRemoteVideoSettingsChange:(SBCRemoteParticipant * _Nonnull)participant;
/// Invoked when the local participant’s connection with the server has been interrupted.
/// since:
/// 1.10.1
/// \param participant <code>LocalParticipant</code> object
///
- (void)didLocalParticipantDisconnect:(SBCLocalParticipant * _Nonnull)participant;
/// Invoked when the local participant’s connection with the server has been established.
/// since:
/// 1.10.1
/// \param participant <code>LocalParticipant</code> object
///
- (void)didLocalParticipantReconnect:(SBCLocalParticipant * _Nonnull)participant;
/// Called when the custom items of the room are updated.
/// since:
/// 1.8.0
Expand Down Expand Up @@ -4917,7 +4929,6 @@ SWIFT_CLASS_NAMED("Room")
@end



@interface SBCRoom (SWIFT_EXTENSION(SendBirdCalls))
@end

Expand All @@ -4936,6 +4947,7 @@ typedef SWIFT_ENUM_NAMED(NSInteger, SBCRoomState, "State", open) {
};



@interface SBCRoom (SWIFT_EXTENSION(SendBirdCalls))
@end

Expand Down Expand Up @@ -5050,6 +5062,18 @@ SWIFT_PROTOCOL_NAMED("RoomDelegate")
/// </li>
/// </ul>
- (void)didRemoteVideoSettingsChange:(SBCRemoteParticipant * _Nonnull)participant;
/// Invoked when the local participant’s connection with the server has been interrupted.
/// since:
/// 1.10.1
/// \param participant <code>LocalParticipant</code> object
///
- (void)didLocalParticipantDisconnect:(SBCLocalParticipant * _Nonnull)participant;
/// Invoked when the local participant’s connection with the server has been established.
/// since:
/// 1.10.1
/// \param participant <code>LocalParticipant</code> object
///
- (void)didLocalParticipantReconnect:(SBCLocalParticipant * _Nonnull)participant;
/// Called when the custom items of the room are updated.
/// since:
/// 1.8.0
Expand Down
Loading

0 comments on commit fc8fcb0

Please sign in to comment.