Skip to content
Open
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
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,36 @@ jobs:

- run: make swift.fmt check=yes dockerized=no

codegen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable

- name: Install Linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libgtk-3-dev libpulse-dev libudev-dev libxcomposite-dev \
libxdamage-dev libxfixes-dev libxrandr-dev libxtst-dev \
ninja-build lld-19 binutils build-essential clang
# TODO: Remove once lld-19 becomes the default in Ubuntu repositories
sudo update-alternatives --install /usr/bin/lld lld /usr/bin/lld-19 100
sudo update-alternatives --config lld
sudo update-alternatives --install /usr/bin/ld.lld ld.lld /usr/bin/ld.lld-19 100
sudo update-alternatives --config ld.lld

- run: cargo install cargo-expand

- run: make cargo.gen

- run: make flutter.fmt

- run: git status --short | (! read -t 1 -N 1)




Expand Down
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



## main

[Diff](https://github.com/instrumentisto/medea-flutter-webrtc/compare/0.15.0...main)

### Changed

- Upgraded [libwebrtc] to [138.0.7204.92] version. ([#233], [todo])

[#233]: https://github.com/instrumentisto/medea-flutter-webrtc/pull/233
[todo]: https://github.com/instrumentisto/medea-flutter-webrtc/commit/todo
[138.0.7204.92]: https://github.com/instrumentisto/libwebrtc-bin/releases/tag/138.0.7204.92




## [0.15.0] · 2025-06-24
[0.15.0]: https://github.com/instrumentisto/medea-flutter-webrtc/tree/0.15.0

Expand Down
Loading
Loading