Skip to content

Commit

Permalink
Merge pull request #196 from shiguredo/feature/update-libwebrtc-m125.…
Browse files Browse the repository at this point in the history
…6422.2.5

libwebrtc を m125.6422.2.5 に上げる
  • Loading branch information
miosakuma authored Jul 3, 2024
2 parents f5bcde5 + ee22f03 commit 0a99014
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@

## develop

- [UPDATE] WebRTC m125.6422.2.5 に上げる
- @miosakuma

## 2024.2.0

- [CHANGE] シグナリング `connect` メッセージの `libwebrtc` に含まれるバージョン文字列を Android と揃える
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-122.6261.1.0/WebRTC.xcframework.zip"
let file = "WebRTC-125.6422.2.5/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: "dd5ce39710270c4498a1628461e00c17525369faf0ca0a7e258325b99f21ee8e"
checksum: "5f3b36455b72b1448800c38aae5435b973f1ad18169b9ce004e8f7eaee246be4"
),
.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', '122.6261.1.0'
pod 'WebRTC', '125.6422.2.5'
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', '122.6261.1.0'
pod 'WebRTC', '125.6422.2.5'
pod 'SwiftLint', '0.51.0'
pod 'SwiftFormat/CLI', '0.53.2'
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-123.6312-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6312)
[![libwebrtc](https://img.shields.io/badge/libwebrtc-125.6422-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6422)
[![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", '122.6261.1.0'
s.dependency "WebRTC", '125.6422.2.5'
s.pod_target_xcconfig = {
'ARCHS' => 'arm64',
'ARCHS[config=Debug]' => '$(ARCHS_STANDARD)'
Expand Down
10 changes: 5 additions & 5 deletions Sora/PackageInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ public enum SDKInfo {
*/
public enum WebRTCInfo {
/// WebRTC フレームワークのバージョン
public static let version = "M122"
public static let version = "M125"

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

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

/// WebRTC フレームワークのソースコードのリビジョン
public static let revision = "6b419a0536b1a0ccfff3682f997c6f19bcbd9bd8"
public static let revision = "8505a9838ea91c66c96c173d30cd66f9dbcc7548"

/// WebRTC の branch-heads
public static let branch = "6261"
public static let branch = "6422"

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

0 comments on commit 0a99014

Please sign in to comment.