This repository has been archived by the owner on Aug 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- add 'medea-reactive' crate - write basic Command::ApplyTracks and Event::TracksApplied implementation - rewrite Sender and MediaTrack to react on mute state change - rewrite Room::mute_audio-like functions to return Promise that resolves in Sender becoming muted - send Command::ApplyTracks on Room::mute-like functions - impl processing of Event::TracksApplied for muting MediaTracks Additionally: - update Travis CI spec to dpl v2 - fix 'medea-jason' rustdoc warnings - upgrade Chrome to 80.0 version and Firefox to 73.0.1 version for E2E tests
- Loading branch information
1 parent
84a1352
commit 0d0cc44
Showing
47 changed files
with
2,949 additions
and
544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
`medea-reactive` changelog | ||
========================== | ||
|
||
All user visible changes to this project will be documented in this file. This project uses [Semantic Versioning 2.0.0]. | ||
|
||
|
||
|
||
|
||
## TBD [0.1.0] · 2020-??-?? | ||
[0.1.0]: /../../tree/medea-reactive-0.1.0/crates/medea-reactive | ||
|
||
### Added | ||
|
||
- `ObservableField` and `ObservableCell` containers ([#81]); | ||
- `Observable` type alias ([#81]); | ||
- `OnObservableFieldModification`, `Subscribable` and `Whenable` traits ([#81]). | ||
|
||
[#81]: /../../pull/81 | ||
|
||
|
||
|
||
|
||
|
||
[Semantic Versioning 2.0.0]: https://semver.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[package] | ||
name = "medea-reactive" | ||
version = "0.1.0-dev" | ||
edition = "2018" | ||
description = "Reactive mutable data containers" | ||
authors = ["Instrumentisto Team <[email protected]>"] | ||
license = "BlueOak-1.0.0" | ||
documentation = "https://docs.rs/medea-reactive" | ||
homepage = "https://github.com/instrumentisto/medea/tree/master/crates/medea-reactive" | ||
repository = "https://github.com/instrumentisto/medea/tree/master/crates/medea-reactive" | ||
readme = "README.md" | ||
keywords = ["medea", "reactive", "reactivity", "observable"] | ||
categories = ["asynchronous", "data-structures"] | ||
|
||
[dependencies] | ||
futures = "0.3" | ||
|
||
[dev-dependencies.tokio] | ||
version = "0.2" | ||
features = ["macros", "rt-core", "rt-util", "test-util", "time"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
Blue Oak Model License | ||
====================== | ||
|
||
Version 1.0.0 | ||
|
||
## Purpose | ||
|
||
This license gives everyone as much permission to work with | ||
this software as possible, while protecting contributors | ||
from liability. | ||
|
||
## Acceptance | ||
|
||
In order to receive this license, you must agree to its | ||
rules. The rules of this license are both obligations | ||
under that agreement and conditions to your license. | ||
You must not do anything with this software that triggers | ||
a rule that you cannot or will not follow. | ||
|
||
## Copyright | ||
|
||
Each contributor licenses you to do everything with this | ||
software that would otherwise infringe that contributor's | ||
copyright in it. | ||
|
||
## Notices | ||
|
||
You must ensure that everyone who gets a copy of | ||
any part of this software from you, with or without | ||
changes, also gets the text of this license or a link to | ||
<https://blueoakcouncil.org/license/1.0.0>. | ||
|
||
## Excuse | ||
|
||
If anyone notifies you in writing that you have not | ||
complied with [Notices](#notices), you can keep your | ||
license by taking all practical steps to comply within 30 | ||
days after the notice. If you do not do so, your license | ||
ends immediately. | ||
|
||
## Patent | ||
|
||
Each contributor licenses you to do everything with this | ||
software that would otherwise infringe any patent claims | ||
they can license or become able to license. | ||
|
||
## Reliability | ||
|
||
No contributor can revoke this license. | ||
|
||
## No Liability | ||
|
||
***As far as the law allows, this software comes as is, | ||
without any warranty or condition, and no contributor | ||
will be liable to anyone for any damages related to this | ||
software or this license, under any kind of legal claim.*** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
medea-reactive | ||
============== | ||
|
||
[![Crates.io](https://img.shields.io/crates/v/medea-reactive)](https://crates.io/crates/medea-reactive) | ||
![Crates.io license](https://img.shields.io/crates/l/medea-reactive) | ||
![Unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg) | ||
[![Rust docs](https://docs.rs/medea-coturn-telnet-client/badge.svg)](https://docs.rs/medea-reactive) | ||
|
||
[API Docs](https://docs.rs/medea-reactive) | | ||
[Changelog](https://github.com/instrumentisto/medea/blob/master/crates/medea-reactive/CHANGELOG.md) | ||
|
||
Reactive mutable data containers. | ||
|
||
|
||
|
||
|
||
## License | ||
|
||
Copyright © 2020 Instrumentisto Team, https://github.com/instrumentisto | ||
|
||
This software is subject to the terms of the [Blue Oak Model License 1.0.0](https://github.com/instrumentisto/medea/blob/crates/medea-reactive/LICENSE.md). If a copy of the [BlueOak-1.0.0](https://spdx.org/licenses/BlueOak-1.0.0.html) license was not distributed with this file, You can obtain one at <https://blueoakcouncil.org/license/1.0.0>. |
Oops, something went wrong.