Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

Rename mute/unmute to enable/disable (#27) #155

Merged
merged 11 commits into from
Nov 13, 2020
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ All user visible changes to this project will be documented in this file. This p
- Emit `TracksApplied` event to create new and update existing tracks ([#105]);
- `PeerConnection` renegotiation functionality ([#105]);
- Calculate and send call quality score based on RTC stats ([#132]);
- Muting/unmuting `MediaTrack`s by receiver ([#127]);
- Enabling/disabling `MediaTrack`s by receiver ([#127], [#155]);
- Send `TrackUpdate::IceRestart` based on RTC stats analysis ([#138]);
- Multiple `Room`s served by one RPC connection support ([#147]).
- [Coturn] integration:
Expand Down Expand Up @@ -84,6 +84,7 @@ All user visible changes to this project will be documented in this file. This p
[#138]: /../../pull/138
[#147]: /../../pull/147
[#153]: /../../pull/153
[#155]: /../../pull/155



Expand Down
92 changes: 43 additions & 49 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ CONTROL_MOCK_IMAGE_NAME := instrumentisto/medea-control-api-mock

RUST_VER := 1.47
CHROME_VERSION := 86.0
FIREFOX_VERSION := 82.0
FIREFOX_VERSION := 82.0.2

crate-dir = .
ifeq ($(crate),medea-jason)
Expand Down
23 changes: 12 additions & 11 deletions jason/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ All user visible changes to this project will be documented in this file. This p

- Media management:
- Library API:
- Mute/unmute local video/audio ([#40], [#81], [#97], [#144]):
- `Room.mute_audio()`;
- `Room.unmute_audio()`;
- `Room.mute_video()`;
- `Room.unmute_video()`.
- Disable/Enable local video/audio ([#40], [#81], [#97], [#144], [#155]):
- `Room.disable_audio()`;
- `Room.enable_audio()`;
- `Room.disable_video()`;
- `Room.enable_video()`.
- `InputDeviceInfo` class obtainable via `MediaManager.enumerate_devices()` ([#46]);
- `MediaManager` class obtainable via `Jason.media_manager()` ([#46]):
- `MediaManager.enumerate_devices()`;
Expand All @@ -51,11 +51,11 @@ All user visible changes to this project will be documented in this file. This p
- `Room.on_close` callback for WebSocket close initiated by server ([#55]);
- `MediaTrack.on_enabled` and `MediaTrack.on_disabled` callbacks being called when `MediaTrack` is enabled or disabled ([#123], [#143]);
- `ConnectionHandle.on_remote_track_added` callback being called when new receiver `MediaTrack` is added ([#123], [#143]);
- Muting/unmuting remote video/audio ([#127]):
- `Room.mute_remote_audio`;
- `Room.unmute_remote_audio`;
- `Room.mute_remote_video`;
- `Room.unmute_remote_video`.
- Enabling/disabling remote video/audio ([#127], [#155]):
- `Room.disable_remote_audio`;
- `Room.enable_remote_audio`;
- `Room.disable_remote_video`;
- `Room.enable_remote_video`.
- `MediaTrack.media_source_kind` function ([#145], [#146]).
- Optional tracks support ([#106]);
- Simultaneous device and display video tracks publishing and receiving ([#144]);
Expand All @@ -73,7 +73,7 @@ All user visible changes to this project will be documented in this file. This p
- Signalling:
- Emitting of RPC commands:
- `AddPeerConnectionMetrics` with `IceConnectionState` and `PeerConnectionState` ([#71], [#87]);
- `ApplyTracks` for muting/unmuting ([#81]);
- `ApplyTracks` for enabling/disabling ([#81], [#155]);
- `AddPeerConnectionStats` with `RtcStats` ([#90]);
- Handling of RPC events:
- `TracksApplied` with `TrackUpdate::Added`, `TrackUpdate::Updated` and `TrackUpdate::IceRestart` ([#105], [#138]);
Expand Down Expand Up @@ -114,6 +114,7 @@ All user visible changes to this project will be documented in this file. This p
[#145]: /../../pull/145
[#146]: /../../pull/146
[#147]: /../../pull/147
[#155]: /../../pull/155



Expand Down
Loading