Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to medea-flutter-webrtc 0.12.0 #195

Merged
merged 8 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ All user visible changes to this project will be documented in this file. This p



## [master] · unreleased
[master]: /../../tree/master

[Diff](https://github.com/instrumentisto/medea-jason/compare/medea-jason-0.7.0...master)

### Upgraded

- Dependencies:
- [`flutter_rust_bridge`] to 2.7.0 version. ([#195])

[#195]: /../../pull/195




## [0.7.0] · 2024-10-29
[0.7.0]: /../../tree/medea-jason-0.7.0

Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,8 @@ android_logger = "0.14"
simple_logger = "5.0"

[target.'cfg(not(target_family = "wasm"))'.dependencies]
# TODO: Switch to `dart-sys` once `flutter_rust_bridge` does.
dart-sys = { version = "4.1", package = "dart-sys-fork" }
flutter_rust_bridge = { version = "=2.4.0", features = ["anyhow", "dart-opaque", "rust-async"], default-features = false }
dart-sys = "4.1"
flutter_rust_bridge = { version = "=2.7.0", features = ["anyhow", "dart-opaque", "rust-async"], default-features = false }
libc = "0.2"
send_wrapper = "0.6"

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ endif
--no-web \
--local
cd flutter && \
dart pub run build_runner build --delete-conflicting-outputs
dart run build_runner build --delete-conflicting-outputs


# Lint Rust sources with Clippy.
Expand Down
17 changes: 16 additions & 1 deletion flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,22 @@ All user visible changes to this project will be documented in this file. This p



## [0.7.0] · 2024-??-?? (unreleased)
## [master] · unreleased
[master]: /../../tree/master/flutter

See also [`medea-jason` crate `master` changes](/../../tree/master/CHANGELOG.md).

### Upgraded

- Dependencies:
- [`flutter_rust_bridge`] to 2.7.0 version. ([#195])

[#195]: /../../pull/195




## [0.7.0] · 2024-10-29
[0.7.0]: /../../tree/medea-jason-0.7.0/flutter

See also [`medea-jason` crate 0.7.0 changes](/../../tree/medea-jason-0.7.0/CHANGELOG.md).
Expand Down
10 changes: 5 additions & 5 deletions flutter/example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
PODS:
- Flutter (1.0.0)
- instrumentisto-libwebrtc-bin (130.0.6723.69)
- instrumentisto-libwebrtc-bin (131.0.6778.108)
- integration_test (0.0.1):
- Flutter
- medea_flutter_webrtc (0.11.2):
- Flutter
- instrumentisto-libwebrtc-bin (= 130.0.6723.69)
- instrumentisto-libwebrtc-bin (= 131.0.6778.108)
- medea_jason (0.7.0):
- Flutter

Expand All @@ -31,10 +31,10 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
instrumentisto-libwebrtc-bin: 769972c5c8a2b370ab2d6b242180e0bba64bd5c3
instrumentisto-libwebrtc-bin: f3eb741f5bbc90fd5503f1000f29820b72edc9aa
integration_test: 252f60fa39af5e17c3aa9899d35d908a0721b573
medea_flutter_webrtc: 2edd16f21de79901c91cd7dc3e132b3bf5af3b3a
medea_jason: f07b27618ffacbd5a79756000a2e335ccb5a25b6
medea_flutter_webrtc: c8ae806ecf2ba317db5c16b374c2ae9accc4be95
medea_jason: dd2579ca796f0bff007212896cc27e333d6b4c9c

PODFILE CHECKSUM: 645e03ec353e4a50b5c4f39a89c4acce2cfd4faf

Expand Down
2 changes: 1 addition & 1 deletion flutter/example/lib/join_route.dart
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class _JoinRouteState extends State<JoinRoute> {
style: TextButton.styleFrom(
foregroundColor: Colors.white,
backgroundColor: Colors.blue,
disabledForegroundColor: Colors.grey.withOpacity(0.38),
disabledForegroundColor: Colors.grey.withAlpha(0x60),
),
onPressed: () {
Navigator.push(
Expand Down
Loading
Loading