Skip to content

Commit 586b935

Browse files
authored
Upgrade libwebrtc-bin to 127.0.6533.72 version (#166)
1 parent b348da3 commit 586b935

File tree

8 files changed

+16
-15
lines changed

8 files changed

+16
-15
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ All user visible changes to this project will be documented in this file. This p
2121

2222
### Changed
2323

24-
- Upgraded [libwebrtc] to [126.0.6478.182-r2] version. ([#155], [#162])
24+
- Upgraded [libwebrtc] to [127.0.6533.72] version. ([#155], [#162], [#166])
2525
- Disable [H264] software encoders and decoders. ([#153])
2626
- Migrated from [`dart:html`] to [`package:web`]. ([#164])
2727

@@ -49,9 +49,10 @@ All user visible changes to this project will be documented in this file. This p
4949
[#162]: https://github.com/instrumentisto/medea-flutter-webrtc/pull/162
5050
[#164]: https://github.com/instrumentisto/medea-flutter-webrtc/pull/164
5151
[#165]: https://github.com/instrumentisto/medea-flutter-webrtc/pull/165
52+
[#166]: https://github.com/instrumentisto/medea-flutter-webrtc/pull/166
5253
[`dart:html`]: https://dart.dev/libraries/dart-html
5354
[`package:web`]: https://pub.dev/packages/web
54-
[126.0.6478.182-r2]: https://github.com/instrumentisto/libwebrtc-bin/releases/tag/126.0.6478.182-r2
55+
[127.0.6533.72]: https://github.com/instrumentisto/libwebrtc-bin/releases/tag/127.0.6533.72
5556

5657

5758

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Medea Flutter-WebRTC
22
====================
33

44
[![pub](https://img.shields.io/pub/v/medea_flutter_webrtc "pub")](https://pub.dev/packages/medea_flutter_webrtc)
5-
[![libwebrtc](https://img.shields.io/badge/libwebrtc-126.0.6478.182-r2-blue "libwebrtc")](https://github.com/instrumentisto/libwebrtc-bin/releases/tag/126.0.6478.182-r2)
5+
[![libwebrtc](https://img.shields.io/badge/libwebrtc-127.0.6533.72-blue "libwebrtc")](https://github.com/instrumentisto/libwebrtc-bin/releases/tag/127.0.6533.72)
66
[![OpenAL](https://img.shields.io/badge/OpenAL-1.23.1-blue "OpenAL")](https://github.com/kcat/openal-soft/releases/tag/1.23.1)
77

88
[Changelog](https://github.com/instrumentisto/medea-flutter-webrtc/blob/main/CHANGELOG.md)

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ android {
5353
}
5454

5555
dependencies {
56-
implementation 'com.github.instrumentisto:libwebrtc-bin:126.0.6478.182-r2@aar'
56+
implementation 'com.github.instrumentisto:libwebrtc-bin:127.0.6533.72@aar'
5757
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version'
5858
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
5959
}

crates/libwebrtc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libwebrtc-sys"
3-
version = "0.0.0+126.0.6478.182-r2"
3+
version = "0.0.0+127.0.6533.72"
44
edition = "2021"
55
rust-version = "1.62"
66
publish = false

crates/libwebrtc-sys/build.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use walkdir::{DirEntry, WalkDir};
2323
/// [`libwebrtc-bin`]: https://github.com/instrumentisto/libwebrtc-bin
2424
static LIBWEBRTC_URL: &str =
2525
"https://github.com/instrumentisto/libwebrtc-bin/releases/download\
26-
/126.0.6478.182-r2";
26+
/127.0.6533.72";
2727

2828
/// URL for downloading `openal-soft` source code.
2929
static OPENAL_URL: &str =
@@ -120,19 +120,19 @@ fn get_target() -> anyhow::Result<String> {
120120
fn get_expected_libwebrtc_hash() -> anyhow::Result<&'static str> {
121121
Ok(match get_target()?.as_str() {
122122
"aarch64-unknown-linux-gnu" => {
123-
"f35ef4076a4c6a9adce54717f14c7408a5a3e2d9e09c3f112a70a823b7369933"
123+
"56ccde930cacd2251fff8aba9991782f93deb1883fd9763ae3b297d2b2973023"
124124
}
125125
"x86_64-unknown-linux-gnu" => {
126-
"9bc1995fcd28d6b26191717a92bae64e13e583d15e8c582322527b43be2b7c84"
126+
"2dd4c7cb497d6b1ce10a52a22effd0ae5d616f50ec12192956d904cca838743b"
127127
}
128128
"aarch64-apple-darwin" => {
129-
"8e135face9e03b3f90c9fd73d02bc9a024fe9f1ac07fd8aa6d4c1dfaef61de86"
129+
"9ce99c5ede1bcf16ddf630be9a0fc34c086c948f17645254c9537a43c831bbc1"
130130
}
131131
"x86_64-apple-darwin" => {
132-
"0ffcee42398804e27408f1c4acadefce69f88e425ac311eda8a6ff0f9da12eb1"
132+
"e3dbc4cb009ed8413c7ff18edb5a82cb7fdc8502eed0cc02ffffffbfca4f6560"
133133
}
134134
"x86_64-pc-windows-msvc" => {
135-
"7dda117194077d0408d9e644014cca499f80dd4df4c78dc069ba09ac4b95549a"
135+
"69045ff8f9b239f680e6df0256993981d3d4218de5618238d3cc1c111c6b4801"
136136
}
137137
arch => return Err(anyhow::anyhow!("Unsupported target: {arch}")),
138138
})

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- instrumentisto-libwebrtc-bin (126.0.6478.182-r2)
3+
- instrumentisto-libwebrtc-bin (127.0.6533.72)
44
- integration_test (0.0.1):
55
- Flutter
66
- medea_flutter_webrtc (0.10.0-dev):
77
- Flutter
8-
- instrumentisto-libwebrtc-bin (= 126.0.6478.182-r2)
8+
- instrumentisto-libwebrtc-bin (= 127.0.6533.72)
99

1010
DEPENDENCIES:
1111
- Flutter (from `Flutter`)

ios/medea_flutter_webrtc.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Flutter WebRTC plugin based on Google WebRTC.
1515
s.source = { :path => '.' }
1616
s.source_files = 'Classes/**/*'
1717
s.dependency 'Flutter'
18-
s.dependency 'instrumentisto-libwebrtc-bin', '126.0.6478.182-r2'
18+
s.dependency 'instrumentisto-libwebrtc-bin', '127.0.6533.72'
1919
s.platform = :ios, '13.0'
2020
s.static_framework = true
2121

0 commit comments

Comments
 (0)