Skip to content

Commit

Permalink
Upgrade to 128.0.6613.84 version (#117)
Browse files Browse the repository at this point in the history
Co-authored-by: evdokimovs <[email protected]>
  • Loading branch information
instrumentisto-bot and evdokimovs authored Aug 26, 2024
1 parent 425f757 commit 10d94d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ jobs:
arch: x64
- os: windows
arch: x64
# NOTE: Using `macos-12` instead of `macos-latest` is for improving backward
# NOTE: Using `macos-14` instead of `macos-latest` is for improving backward
# compatibility with older iOS/macOS versions.
runs-on: ${{ (contains('ios macos', matrix.os) && 'macos-12')
# The minimum macOS version required to build `libwebrtc` is macOS 14
# due to the use of Screen Capture Kit in the `libwebrtc` source code.
runs-on: ${{ (contains('ios macos', matrix.os) && 'macos-14')
|| (contains('windows', matrix.os) && 'windows-2019')
|| 'ubuntu-latest' }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ CCACHE_VERSION=4.8.3

# WebRTC doesn't have its own versioning, so we use Chromium versions:
# https://chromiumdash.appspot.com/releases
WEBRTC_VERSION=127.0.6533.119
WEBRTC_VERSION=128.0.6613.84
# Look for the concrete revision for WebRTC in:
# https://chromium.googlesource.com/chromium/src/+/refs/tags/<WEBRTC_VERSION>/DEPS
WEBRTC_COMMIT=e0b28a6a81a989c1f5c89e30fcd247870047390d
WEBRTC_COMMIT=e7686023a186ac233ed1284da45cc166c0df4e1a

# Additional revision of the `WEBRTC_VERSION` added as `-rN` suffix to it, and
# tracking additional changes applied on top of it.
Expand Down
4 changes: 2 additions & 2 deletions instrumentisto-libwebrtc-bin.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |spec|
spec.name = "instrumentisto-libwebrtc-bin"
spec.version = "127.0.6533.119"
spec.version = "128.0.6613.84"
spec.summary = "Pre-compiled `libwebrtc` library for Darwin used by Medea Flutter-WebRTC."

spec.homepage = "https://github.com/instrumentisto/libwebrtc-bin"
spec.license = { :type => 'BSD', :file => 'WebRTC.xcframework/LICENSE.md' }
spec.author = { 'Instrumentisto Team' => '[email protected]' }
spec.ios.deployment_target = '10.0'

spec.source = { :http => "https://github.com/instrumentisto/libwebrtc-bin/releases/download/127.0.6533.119/libwebrtc-ios.zip" }
spec.source = { :http => "https://github.com/instrumentisto/libwebrtc-bin/releases/download/128.0.6613.84/libwebrtc-ios.zip" }
spec.vendored_frameworks = "WebRTC.xcframework"

spec.pod_target_xcconfig = {
Expand Down

0 comments on commit 10d94d5

Please sign in to comment.