Skip to content

Commit

Permalink
WebRTC 119.6045.2.1 に上げる
Browse files Browse the repository at this point in the history
  • Loading branch information
miosakuma committed Oct 27, 2023
1 parent 2113ed4 commit 21f548d
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

- [UPDATE] CameraVideoCapturer のログを出力する
- @enm10k
- [UPDATE] WebRTC 119.6045.2.1 に上げる
- @miosakuma
- [ADD] VideoCodec に H265 を追加する
- @enm10k
- [UPDATE] 解像度に qHD (960x540) を追加する
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import Foundation
import PackageDescription

let file = "WebRTC-116.5845.6.1/WebRTC.xcframework.zip"
let file = "WebRTC-119.6045.2.1/WebRTC.xcframework.zip"

let package = Package(
name: "Sora",
Expand All @@ -16,7 +16,7 @@ let package = Package(
.binaryTarget(
name: "WebRTC",
url: "https://github.com/shiguredo/sora-ios-sdk-specs/releases/download/\(file)",
checksum: "5902e61f79e941830a52827db8bc408e7c9d2e5f2e0804e3664b8dd35fd6148c"
checksum: "f0c1f7d9091410a402213a06fef5c534976db0a8b30043fa963b4a8da176dd85"
),
.target(
name: "Sora",
Expand Down
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ platform :ios, '13.0'

target 'Sora' do
use_frameworks!
pod 'WebRTC', '116.5845.6.1'
pod 'WebRTC', '119.6045.2.1'
end
2 changes: 1 addition & 1 deletion Podfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform :ios, '13.0'

target 'Sora' do
use_frameworks!
pod 'WebRTC', '116.5845.6.1'
pod 'WebRTC', '119.6045.2.1'
pod 'SwiftLint', '0.51.0'
pod 'SwiftFormat/CLI', '0.51.6'
end
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sora iOS SDK

[![libwebrtc](https://img.shields.io/badge/libwebrtc-116.5845-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/5845)
[![libwebrtc](https://img.shields.io/badge/libwebrtc-119.6045-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6045)
[![GitHub tag](https://img.shields.io/github/tag/shiguredo/sora-ios-sdk.svg)](https://github.com/shiguredo/sora-ios-sdk)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Expand Down
2 changes: 1 addition & 1 deletion Sora.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
}
s.source_files = "Sora/**/*.swift"
s.resources = ['Sora/*.xib']
s.dependency "WebRTC", '116.5845.6.1'
s.dependency "WebRTC", '119.6045.2.1'
s.pod_target_xcconfig = {
'ARCHS' => 'arm64',
'ARCHS[config=Debug]' => '$(ARCHS_STANDARD)'
Expand Down
6 changes: 3 additions & 3 deletions Sora/PackageInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ public enum SDKInfo {
*/
public enum WebRTCInfo {
/// WebRTC フレームワークのバージョン
public static let version = "M116"
public static let version = "M119"

/// WebRTC フレームワークのコミットポジション
public static let commitPosition = "6"
public static let commitPosition = "2"

/// WebRTC フレームワークのメンテナンスバージョン
public static let maintenanceVersion = "1"

/// WebRTC フレームワークのソースコードのリビジョン
public static let revision = "44bc8e96ed88005fec89a1cc479e291fea30d1b3"
public static let revision = "52bc9f7c1205f4b731ea0289b059f7d240c1e228"

/// WebRTC フレームワークのソースコードのリビジョン (短縮版)
public static var shortRevision: String {
Expand Down

0 comments on commit 21f548d

Please sign in to comment.