From 7265cc0327d490ee8cd6c96707de267a9700e8ac Mon Sep 17 00:00:00 2001 From: miosakuma Date: Tue, 23 Apr 2024 18:48:55 +0900 Subject: [PATCH 1/6] =?UTF-8?q?=E9=96=8B=E7=99=BA=E7=94=A8=E3=81=AB=20deve?= =?UTF-8?q?lop=20=E3=83=96=E3=83=A9=E3=83=B3=E3=83=81=E3=82=92=E5=8F=82?= =?UTF-8?q?=E7=85=A7=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E3=81=99?= =?UTF-8?q?=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Podfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Podfile b/Podfile index dbcfa40..c99645e 100644 --- a/Podfile +++ b/Podfile @@ -5,7 +5,7 @@ platform :ios, '13.0' target 'SoraQuickStart' do use_frameworks! - pod 'Sora', '2024.2.0' + pod 'Sora', :git => 'https://github.com/shiguredo/sora-ios-sdk.git', :branch => 'develop' pod 'SwiftLint' pod 'SwiftFormat/CLI' From 3b700bbff8b89929e0bd8e4b5aa75971dc13b754 Mon Sep 17 00:00:00 2001 From: zztkm Date: Wed, 17 Jul 2024 17:46:26 +0900 Subject: [PATCH 2/6] =?UTF-8?q?libwebrtc=20=E3=81=AE=E3=83=AD=E3=82=B0?= =?UTF-8?q?=E3=83=AC=E3=83=99=E3=83=AB=E3=82=92=20INFO=20=E3=81=AB?= =?UTF-8?q?=E8=A8=AD=E5=AE=9A=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.md | 3 +++ SoraQuickStart/ViewController.swift | 1 + 2 files changed, 4 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 0de6051..f46b518 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,9 @@ ## develop +- [UPDATE] libwebrtc のログレベルを INFO にする + - @zztkm + ## sora-ios-sdk-2024.2.0 - [UPDATE] Github Actions を actions/cache@v4 にあげる diff --git a/SoraQuickStart/ViewController.swift b/SoraQuickStart/ViewController.swift index ae53299..7cda180 100644 --- a/SoraQuickStart/ViewController.swift +++ b/SoraQuickStart/ViewController.swift @@ -20,6 +20,7 @@ class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() Logger.shared.level = .debug + Sora.setWebRTCLogLevel(.info) navigationItem.title = "\(Environment.channelId)" } From a63521613479e42a03658a7576c1161c5fbb27ce Mon Sep 17 00:00:00 2001 From: zztkm Date: Wed, 17 Jul 2024 18:06:37 +0900 Subject: [PATCH 3/6] =?UTF-8?q?CHANGES=20=E3=81=AE=E8=AA=AC=E6=98=8E?= =?UTF-8?q?=E3=82=92=E8=A3=9C=E8=B6=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index f46b518..6853142 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,7 +11,8 @@ ## develop -- [UPDATE] libwebrtc のログレベルを INFO にする +- [UPDATE] libwebrtc のログレベルを RTCLoggingSeverityNone から RTCLoggingSeverityInfo にする + - libwebrtc のログを INFO レベルで出力するようにする - @zztkm ## sora-ios-sdk-2024.2.0 From e1e51711ddfdbd49907e0f37969606cec45e9875 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Thu, 15 Aug 2024 18:00:14 +0900 Subject: [PATCH 4/6] =?UTF-8?q?Github=20Actions=20=E3=81=AE=20Xcode=20?= =?UTF-8?q?=E3=82=92=2015.4=20=E3=81=AB=E3=81=82=E3=81=92=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 4 ++-- CHANGES.md | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index feb5ded..3dac387 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,8 +13,8 @@ jobs: build: runs-on: macos-14 env: - XCODE: /Applications/Xcode_15.2.app - XCODE_SDK: iphoneos17.2 + XCODE: /Applications/Xcode_15.4.app + XCODE_SDK: iphoneos17.5 steps: - uses: actions/checkout@v4 - name: Select Xcode Version diff --git a/CHANGES.md b/CHANGES.md index 6853142..83baeee 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -14,6 +14,9 @@ - [UPDATE] libwebrtc のログレベルを RTCLoggingSeverityNone から RTCLoggingSeverityInfo にする - libwebrtc のログを INFO レベルで出力するようにする - @zztkm +- [UPDATE] GitHub Actions の Xcode のバージョンを 15.4 にあげる + - 合わせて iOS の SDK を iphoneos17.5 にあげる + - @miosakuma ## sora-ios-sdk-2024.2.0 From 65547dc4756eb12fd6db7d11c9224b8a8b320580 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Wed, 4 Sep 2024 16:53:11 +0900 Subject: [PATCH 5/6] =?UTF-8?q?=E3=82=B7=E3=82=B9=E3=83=86=E3=83=A0?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=E3=82=92=E5=A4=89=E6=9B=B4=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.md | 5 +++++ README.md | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 83baeee..e72d86c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -17,6 +17,11 @@ - [UPDATE] GitHub Actions の Xcode のバージョンを 15.4 にあげる - 合わせて iOS の SDK を iphoneos17.5 にあげる - @miosakuma +- [UPDATE] システム条件を変更する + - macOS 14.6.1 以降 + - Xcode 15.4 + - WebRTC SFU Sora 2024.1.0 以降 + - @miosakuma ## sora-ios-sdk-2024.2.0 diff --git a/README.md b/README.md index 1923095..b1a5520 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,11 @@ Please read https://github.com/shiguredo/oss before use. - iOS 13 以降 - アーキテクチャ arm64 (シミュレーターの動作は未保証) -- macOS 14.4.1 以降 -- Xcode 15.3 +- macOS 14.6.1 以降 +- Xcode 15.4 - Swift 5.10 - CocoaPods 1.15.2 以降 -- WebRTC SFU Sora 2023.2.0 以降 +- WebRTC SFU Sora 2024.1.0 以降 Xcode と Swift のバージョンによっては、 CocoaPods で取得できるバイナリに互換性がない可能性があります。詳しくは[Sora iOS SDK ドキュメント](https://sora-ios-sdk.shiguredo.jp/) を参照してください。 From 7b30a001b9065659125b15dcdfe7c13cea8a10af Mon Sep 17 00:00:00 2001 From: miosakuma Date: Fri, 6 Sep 2024 15:39:44 +0900 Subject: [PATCH 6/6] =?UTF-8?q?Sora=20iOS=20SDK=20=E3=83=AA=E3=83=AA?= =?UTF-8?q?=E3=83=BC=E3=82=B9=202024.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.md | 4 ++++ Podfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index e72d86c..96ad1fa 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,10 @@ ## develop +## sora-ios-sdk-2024.3.0 + +**リリース日**: 2024-09-06 + - [UPDATE] libwebrtc のログレベルを RTCLoggingSeverityNone から RTCLoggingSeverityInfo にする - libwebrtc のログを INFO レベルで出力するようにする - @zztkm diff --git a/Podfile b/Podfile index c99645e..b60a6b2 100644 --- a/Podfile +++ b/Podfile @@ -5,7 +5,7 @@ platform :ios, '13.0' target 'SoraQuickStart' do use_frameworks! - pod 'Sora', :git => 'https://github.com/shiguredo/sora-ios-sdk.git', :branch => 'develop' + pod 'Sora', '2024.3.0' pod 'SwiftLint' pod 'SwiftFormat/CLI'