diff --git a/Cargo.toml b/Cargo.toml index 858b58ac9e..e7da7e5cd1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ default = [ "render", "png", "hdr", - "mp3", + "vorbis", "x11", "filesystem_watcher", ] diff --git a/assets/sounds/Windless Slopes.mp3 b/assets/sounds/Windless Slopes.mp3 deleted file mode 100644 index 8b8b76d7ab..0000000000 Binary files a/assets/sounds/Windless Slopes.mp3 and /dev/null differ diff --git a/assets/sounds/Windless Slopes.ogg b/assets/sounds/Windless Slopes.ogg new file mode 100644 index 0000000000..8791086367 Binary files /dev/null and b/assets/sounds/Windless Slopes.ogg differ diff --git a/deny.toml b/deny.toml index ad00ea3a9d..5fb797d403 100644 --- a/deny.toml +++ b/deny.toml @@ -7,8 +7,6 @@ yanked = "deny" notice = "deny" ignore = [ "RUSTSEC-2020-0056", # from gilrs v0.8.1 - unmaintained - https://github.com/koute/stdweb/issues/403 - "RUSTSEC-2020-0158", # from rodio v0.14.0 - unmaintained - https://github.com/gnzlbg/slice_deque/issues/94 - "RUSTSEC-2021-0047", # from rodio v0.14.0 - unsafety - https://github.com/gnzlbg/slice_deque/issues/90 "RUSTSEC-2020-0095", # from crevice dev dependency - unmaintained - https://github.com/johannhof/difference.rs/issues/45 "RUSTSEC-2021-0119", # from rodio 0.14.0 - unsafety - https://github.com/nix-rust/nix/issues/1541 ] diff --git a/docs/cargo_features.md b/docs/cargo_features.md index 70675f281a..a820f183a9 100644 --- a/docs/cargo_features.md +++ b/docs/cargo_features.md @@ -11,7 +11,7 @@ |render|The render pipeline and all render related plugins.| |png|PNG picture format support.| |hdr|[HDR](https://en.wikipedia.org/wiki/High_dynamic_range) support.| -|mp3|MP3 audio format support.| +|vorbis|Ogg Vorbis audio format support.| |x11|Make GUI applications use X11 protocol. You could enable wayland feature to override this.| |filesystem_watcher|Enable watching the file system for asset hot reload| @@ -30,8 +30,8 @@ |jpeg|JPEG picture format support.| |bmp|BMP picture format support.| |flac|FLAC audio format support. It's included in bevy_audio feature.| +|mp3|MP3 audio format support.| |wav|WAV audio format support.| -|vorbis|Vorbis audio format support.| |serialize|Enables serialization of `bevy_input` types.| |wayland|Enable this to use Wayland display server protocol other than X11.| |subpixel_glyph_atlas|Enable this to cache glyphs using subpixel accuracy. This increases texture memory usage as each position requires a separate sprite in the glyph atlas, but provide more accurate character spacing.| diff --git a/examples/audio/audio.rs b/examples/audio/audio.rs index b093b88d94..2ff6f92ba1 100644 --- a/examples/audio/audio.rs +++ b/examples/audio/audio.rs @@ -9,6 +9,6 @@ fn main() { } fn setup(asset_server: Res, audio: Res