Skip to content

Commit bcd506e

Browse files
authored
Update to 0.3 (#51)
1 parent 64ba915 commit bcd506e

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

78
## [Unreleased]
89

10+
## [0.3.0] - 2022-11-13
11+
12+
### Added
13+
14+
- New spatial audio feature:
15+
- Two versions: spatial audio and spatial buffered audio.
16+
- `SpatialAudioOutput`, `SpatialAudioSink`, `SpatialAudioSinks`, and `play_queued_spatial_audio` are added for spatial audio.
17+
- `SpatialBufferedAudioOutput`, `SpatialBufferedAudioSink`, `SpatialBufferedAudioSinks`, and `play_queued_spatial_buffered_audio` are added for spatial buffered audio.
18+
- `Audio` now has `play_spatial` and `play_spatial_buffered` methods.
19+
- `AudioApp` now has a `add_spatial_audio_source` and `add_spatial_buffered_audio_source` methods implemented for `App`.
20+
21+
### Changed
22+
23+
- Changed the `ToSignal::Signal` type of `AudioSource` to `Gain<Speed<FramesSignal<F>>>`
24+
925
## [0.2.0] - 2022-09-04
1026

1127
### Added
@@ -45,8 +61,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4561
- `SpatialScene` settings.
4662

4763
## [0.1.0] - 2022-07-01
64+
4865
- Released `bevy_oddio` 0.1 🎉
4966

5067
[Unreleased]: https://github.com/harudagondi/bevy_oddio/compare/v0.2.0..HEAD
68+
[0.3.0]: https://github.com/harudagondi/bevy_oddio/compare/v0.2.0..v0.3.0
5169
[0.2.0]: https://github.com/harudagondi/bevy_oddio/compare/v0.1.0..v0.2.0
52-
[0.1.0]: https://github.com/harudagondi/bevy_oddio/releases/tag/v0.1.0
70+
[0.1.0]: https://github.com/harudagondi/bevy_oddio/releases/tag/v0.1.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bevy_oddio"
33
authors = ["Gio Genre De Asis"]
4-
version = "0.2.0"
4+
version = "0.3.0"
55
edition = "2021"
66
description = "A third party Bevy plugin that integrates `oddio` into Bevy."
77
homepage = "https://github.com/harudagondi/bevy_oddio"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ fn play_background_audio(asset_server: Res<AssetServer>, mut audio: ResMut<Audio
3232
| `bevy_oddio` | `bevy` |
3333
| ------------- | ------ |
3434
| bevy_main | main |
35-
| 0.2.0 | 0.8 |
36-
| 0.1.0 | 0.8 |
35+
| 0.3.0 | 0.9 |
36+
| 0.1.0-0.2.0 | 0.8 |
3737

3838
## License
3939

0 commit comments

Comments
 (0)