Skip to content

Commit bd0e189

Browse files
committed
Release 1.3.0 - Update WebRTC version to M89. Make RTCDefaultShader public.
1 parent 092ba88 commit bd0e189

File tree

90 files changed

+236
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+236
-198
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
### 1.3.0 (Apr 21, 2021)
4+
* Updated WebRTC version to M89.
5+
* Made `RTCDefaultShader` public.
6+
37
### 1.2.0 (Sep 2, 2020)
48
* Added `RTCAudioSink` interface for receiving audio stream data from iOS audio device.
59

SendBirdWebRTC.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = "SendBirdWebRTC"
3-
s.version = "1.2.0"
3+
s.version = "1.3.0"
44
s.summary = "WebRTC Framework"
55
s.description = "WebRTC Framework for SendBird Video Chat"
66
s.homepage = "https://sendbird.com"
77
s.license = { :type => 'BSD', :file => 'LICENSE' }
8-
s.authors = { "Jed Gyeong" => "jed.gyeong@sendbird.com", "Young Hwang" => "young.hwang@sendbird.com", "Minhyuk Kim" => "minhyuk.kim@sendbird.com", "Jaesung Lee" => "jaesung.lee@sendbird.com", "Damon Park" => "damon.park@sendbird.com" }
8+
s.authors = { "Jed Gyeong" => "jed.gyeong@sendbird.com", "Young Hwang" => "young.hwang@sendbird.com", "Minhyuk Kim" => "minhyuk.kim@sendbird.com", "Jaesung Lee" => "jaesung.lee@sendbird.com" }
99
s.source = { :git => "https://github.com/sendbird/sendbird-webrtc-ios.git", :tag => "#{s.version}" }
1010
s.requires_arc = true
1111
s.platform = :ios, "9.0"

WebRTC.framework/Headers/RTCAudioSession.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#import <AVFoundation/AVFoundation.h>
1212
#import <Foundation/Foundation.h>
1313

14-
#import "RTCMacros.h"
14+
#import <WebRTC/RTCMacros.h>
1515

1616
NS_ASSUME_NONNULL_BEGIN
1717

WebRTC.framework/Headers/RTCAudioSessionConfiguration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#import <AVFoundation/AVFoundation.h>
1212
#import <Foundation/Foundation.h>
1313

14-
#import "RTCMacros.h"
14+
#import <WebRTC/RTCMacros.h>
1515

1616
NS_ASSUME_NONNULL_BEGIN
1717

WebRTC.framework/Headers/RTCAudioSink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#import <Foundation/Foundation.h>
22
#import <AVFoundation/AVFoundation.h>
33

4-
#import "RTCMacros.h"
4+
#import <WebRTC/RTCMacros.h>
55

66
NS_ASSUME_NONNULL_BEGIN
77

WebRTC.framework/Headers/RTCAudioSource.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
#import <Foundation/Foundation.h>
1212

13-
#import "RTCMacros.h"
14-
#import "RTCMediaSource.h"
13+
#import <WebRTC/RTCMacros.h>
14+
#import <WebRTC/RTCMediaSource.h>
1515

1616
NS_ASSUME_NONNULL_BEGIN
1717

WebRTC.framework/Headers/RTCAudioTrack.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* be found in the AUTHORS file in the root of the source tree.
99
*/
1010

11-
#import "RTCMacros.h"
12-
#import "RTCMediaStreamTrack.h"
11+
#import <WebRTC/RTCMacros.h>
12+
#import <WebRTC/RTCMediaStreamTrack.h>
1313

1414
NS_ASSUME_NONNULL_BEGIN
1515

WebRTC.framework/Headers/RTCCVPixelBuffer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
#import <AVFoundation/AVFoundation.h>
1212

13-
#import "RTCMacros.h"
14-
#import "RTCVideoFrameBuffer.h"
13+
#import <WebRTC/RTCMacros.h>
14+
#import <WebRTC/RTCVideoFrameBuffer.h>
1515

1616
NS_ASSUME_NONNULL_BEGIN
1717

WebRTC.framework/Headers/RTCCallbackLogger.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
#import <Foundation/Foundation.h>
1212

13-
#import "RTCLogging.h"
14-
#import "RTCMacros.h"
13+
#import <WebRTC/RTCLogging.h>
14+
#import <WebRTC/RTCMacros.h>
1515

1616
NS_ASSUME_NONNULL_BEGIN
1717

WebRTC.framework/Headers/RTCCameraPreviewView.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#import <Foundation/Foundation.h>
1212
#import <UIKit/UIKit.h>
1313

14-
#import "RTCMacros.h"
14+
#import <WebRTC/RTCMacros.h>
1515

1616
@class AVCaptureSession;
1717

0 commit comments

Comments
 (0)