You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are always making changes to rodio. That can mean the examples do not work with the current crates.io release. You will have to look at the examples from commit `f1eaaa4a`. They are available [on github](https://github.com/RustAudio/rodio/tree/f1eaaa4a6346933fc8a58d5fd1ace170946b3a94/examples).
28
+
We are always making changes to rodio. This can mean that the examples do not work with the current crates.io release. You will have to look at the examples from commit `f1eaaa4a`. They are available [on github](https://github.com/RustAudio/rodio/tree/f1eaaa4a6346933fc8a58d5fd1ace170946b3a94/examples).
Copy file name to clipboardExpand all lines: UPGRADE.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ nothing
18
18
removed
19
19
20
20
## OutputStream
21
-
The outputstream is now more configurable. Where you used `OutputStream::try_default()` you have a choice:
21
+
The output stream is now more configurable. Where you used `OutputStream::try_default()` you have a choice:
22
22
-*(recommended)* Get an error when the default stream could not be opened: `OutputStreamBuilder::open_default_stream()?`
23
23
- Stay close to the old behavior using: `OutputStreamBuilder::open_stream_or_fallback()`, which tries to open the default (audio) stream. If that fails it tries all other combinations of device and settings. The old behavior was only trying all settings of the default device.
24
24
@@ -37,7 +37,7 @@ let sink = rodio::Sink::try_new(&handle)?;
0 commit comments