Skip to content

Commit e02bd9f

Browse files
authored
Update and fix changelog (#755)
* Update changelog * Merge multiple mesh mentions and fix issue numbers
1 parent 4645da3 commit e02bd9f

File tree

1 file changed

+33
-21
lines changed

1 file changed

+33
-21
lines changed

CHANGELOG.md

Lines changed: 33 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ to view all changes since the `0.2.1` release.
1111
## Unreleased
1212

1313
### Added
14-
- [Mesh overhaul with custom vertex attributes][616] for `Mesh`
15-
- Any vertex attribute can now be added over `mesh.attributes.insert()`. For example: `mesh.attributes.insert(Cow::Borrowed(Mesh::ATTRIBUTE_POSITION), points.into())`.
16-
- For missing attributes (requested by shader, but not defined by mesh), Bevy will provide a zero-filled fallback buffer.
14+
1715
- [Touch Input][696]
1816
- [Do not depend on spirv on wasm32 target][689]
1917
- [Another fast compile flag for macOS][552]
20-
- [Mesh overhaul with custom vertex attributes][599]
2118
- [Introduce Mouse capture API][679]
2219
- [`bevy_input::touch`: implement touch input][696]
2320
- [D-pad support on MacOS][653]
21+
- [Support for Android file system][723]
22+
- [app: PluginGroups and DefaultPlugins][744]
23+
- `PluginGroup` is a collection of plugins where each plugin can be enabled or disabled.
2424
- [Support to get gamepad button/trigger values using `Axis<GamepadButton>`][683]
2525
- [Expose Winit decorations][627]
2626
- [Enable changing window settings at runtime][644]
2727
- [Expose a pointer of EventLoopProxy to process custom messages][674]
2828
- [Add a way to specify padding/ margins between sprites in a TextureAtlas][460]
29-
- [Add remove bundle to `bevy_ecs::Commands`][579]
29+
- [Add `bevy_ecs::Commands::remove` for bundles][579]
3030
- [impl `Default` for `TextureFormat`][675]
3131
- [Expose current_entity in ChildBuilder][595]
3232
- [`AppBuilder::add_thread_local_resource`][671]
@@ -38,14 +38,21 @@ to view all changes since the `0.2.1` release.
3838
- Index buffer specialization
3939
- [Allows the use of U32 indices in Mesh index buffers in addition to the usual U16 indices][568]
4040
- [Switch to u32 indices by default][572]
41-
- More instructions for system dependences
41+
- More instructions for system dependencies
4242
- [Add `systemd-devel` for Fedora Linux dependencies][528]
4343
- [Add `libudev-dev` to Ubuntu dependencies][538]
4444
- [Add Void Linux to linux dependencies file][645]
45+
- [WSL2 instructions][727]
4546
- [Suggest `-Zrun-dsymutil-no` for faster compilation on MacOS][552]
4647

4748
### Changed
4849

50+
- [ecs: ergonomic query.iter(), remove locks, add QuerySets][741]
51+
- `query.iter()` is now a real iterator!
52+
- `QuerySet` allows working with conflicting queries and is checked at compile-time.
53+
- [Rename `query.entity()` and `query.get()`][752]
54+
- `query.get::<Component>(entity)` is now `query.get_component::<Component>(entity)`
55+
- `query.entity(entity)` is now `query.get(entity)`
4956
- [Asset system rework and GLTF scene loading][693]
5057
- [Introduces WASM implementation of `AssetIo`][703]
5158
- [Move transform data out of Mat4][596]
@@ -58,35 +65,30 @@ to view all changes since the `0.2.1` release.
5865
- [Use `FnOnce` in `Commands` and `ChildBuilder` where possible][535]
5966
- [Runners explicitly call `App.initialize()`][690]
6067
- [sRGB awareness for `Color`][616]
61-
- Color is now assumed to be provided in the non-linear sRGB colorspace, and constructors such as
62-
`Color::rgb` and `Color::rgba` will be converted to linear sRGB under-the-hood.
63-
- This allows drop-in use of colors from most applications.
68+
- Color is now assumed to be provided in the non-linear sRGB colorspace.
69+
Constructors such as `Color::rgb` and `Color::rgba` will be converted to linear sRGB.
6470
- New methods `Color::rgb_linear` and `Color::rgba_linear` will accept colors already in linear sRGB (the old behavior)
65-
- Individual color-components must now be accessed through setters and getters: `.r`, `.g`, `.b`, `.a`, `.set_r`, `.set_g`, `.set_b`, `.set_a`, and the corresponding methods with the `*_linear` suffix.
66-
- Breaking Change: [Mesh overhaul with custom vertex attributes][616] for `Mesh`
71+
- Individual color-components must now be accessed through setters and getters.
72+
- [`Mesh` overhaul with custom vertex attributes][599]
6773
- Removed `VertexAttribute`, `Vertex`, `AsVertexBufferDescriptor`.
68-
69-
- Despawning an entity multiple times causes a debug-level log message to be emitted instead of a panic [649] [651]
70-
- Breaking Change: Migrated to rodio 0.12, this means:
71-
- Individual color-components must now be accessed through setters and getters:
72-
`.r`, `.g`, `.b`, `.a`, `.set_r`, `.set_g`, `.set_b`, `.set_a`, and the corresponding methods with the `*_linear` suffix.
74+
- For missing attributes (requested by shader, but not defined by mesh), Bevy will provide a zero-filled fallback buffer.
75+
- Any vertex attribute can now be added over `mesh.attributes.insert()`. `mesh.attributes.insert(Cow::Borrowed(Mesh::ATTRIBUTE_POSITION), points.into())`
7376
- Despawning an entity multiple times causes a debug-level log message to be emitted instead of a panic: [#649][649], [#651][651]
7477
- [Migrated to Rodio 0.12][692]
75-
- Playing an mp3 no longer sometimes panics in debug mode
76-
- New method of playing audio can be found in the audio example (an intermediary `Audio` struct is used instead of `AudioOutput` directly)
78+
- New method of playing audio can be found in the examples.
7779

7880
### Fixed
7981

80-
[599]: https://github.com/bevyengine/bevy/pull/599
81-
[696]: https://github.com/bevyengine/bevy/pull/696
82-
[689]: https://github.com/bevyengine/bevy/pull/689
8382
- [Properly update bind group ids when setting dynamic bindings][560]
8483
- [Properly exit the app on AppExit event][610]
8584
- [Fix FloatOrd hash being different for different NaN values][618]
8685
- [Fix Added behavior for QueryOne get][543]
8786
- [Update camera_system to fix issue with late camera addition][488]
8887
- [Register `IndexFormat` as a property][664]
8988
- [Fix breakout example bug][685]
89+
- [Fix PreviousParent lag by merging parent update systems][713]
90+
- [Fix bug of connection event of gamepad at startup][730]
91+
- [Fix wavy text][725]
9092

9193
[397]: https://github.com/bevyengine/bevy/pull/397
9294
[460]: https://github.com/bevyengine/bevy/pull/460
@@ -106,6 +108,7 @@ to view all changes since the `0.2.1` release.
106108
[595]: https://github.com/bevyengine/bevy/pull/595
107109
[596]: https://github.com/bevyengine/bevy/pull/596
108110
[597]: https://github.com/bevyengine/bevy/pull/597
111+
[599]: https://github.com/bevyengine/bevy/pull/599
109112
[610]: https://github.com/bevyengine/bevy/pull/610
110113
[616]: https://github.com/bevyengine/bevy/pull/616
111114
[618]: https://github.com/bevyengine/bevy/pull/618
@@ -134,6 +137,15 @@ to view all changes since the `0.2.1` release.
134137
[700]: https://github.com/bevyengine/bevy/pull/700
135138
[703]: https://github.com/bevyengine/bevy/pull/703
136139
[711]: https://github.com/bevyengine/bevy/pull/711
140+
[713]: https://github.com/bevyengine/bevy/pull/713
141+
[723]: https://github.com/bevyengine/bevy/pull/723
142+
[725]: https://github.com/bevyengine/bevy/pull/725
143+
[727]: https://github.com/bevyengine/bevy/pull/727
144+
[730]: https://github.com/bevyengine/bevy/pull/730
145+
[741]: https://github.com/bevyengine/bevy/pull/741
146+
[744]: https://github.com/bevyengine/bevy/pull/744
147+
[752]: https://github.com/bevyengine/bevy/pull/752
148+
137149

138150
## Version 0.2.1 (2020-9-20)
139151

0 commit comments

Comments
 (0)