|
9 | 9 | - Exports `IOTaskPool`, `ComputePool`, and `AsyncComputePool` in `bevy_tasks` crate.
|
10 | 10 | - [Parallel queries for distributing work over with the `ParallelIterator` trait.][292]
|
11 | 11 | - e.g. `query.iter().par_iter(batch_size).for_each(/* ... */)`
|
| 12 | +- [Added gamepad support using Gilrs][280] |
| 13 | +- [Implement WASM support for bevy_winit][503] |
| 14 | +- [Create winit canvas under WebAssembly][506] |
| 15 | +- [Implement single threaded task scheduler for WebAssembly][496] |
12 | 16 | - [Support for binary glTF (.glb).][271]
|
13 | 17 | - [Support for `Or` in ECS queries.][358]
|
14 | 18 | - [Added methods `unload()` and `unload_sync()` on `SceneSpawner` for unloading scenes.][339].
|
|
33 | 37 | - Added more instructions for Linux dependencies
|
34 | 38 | - [Arch / Manjaro][275], [NixOS][290], [Ubuntu][463] and [Solus][331]
|
35 | 39 | - [Provide shell.nix for easier compiling with nix-shell][491]
|
| 40 | +- [Add `AppBuilder::add_startup_stage_|before/after`][505] |
36 | 41 |
|
37 | 42 | ### Changed
|
38 | 43 |
|
39 | 44 | - [Transform rewrite][374]
|
40 |
| -- [Bump entities to u128 to avoid collisions][393] |
| 45 | +- [Use generational entity ids and other optimizations][504] |
41 | 46 | - [Optimize transform systems to only run on changes.][417]
|
42 | 47 | - [Send an AssetEvent when modifying using `get_id_mut`][323]
|
43 | 48 | - [Rename `Assets::get_id_mut` -> `Assets::get_with_id_mut`][332]
|
|
61 | 66 | - [Remove child from parent when it is despawned][386]
|
62 | 67 | - [Initialize App.schedule systems when running the app][444]
|
63 | 68 | - [Fix missing asset info path for synchronous loading][486]
|
| 69 | +- [fix font atlas overflow][495] |
64 | 70 |
|
65 | 71 | ### Internal Improvements
|
66 | 72 | - Many improvements to Bevy's CI [#325][325], [#349][349], [#357][357], [#373][373], [#423][423]
|
|
71 | 77 | [270]: https://github.com/bevyengine/bevy/pull/270
|
72 | 78 | [271]: https://github.com/bevyengine/bevy/pull/271
|
73 | 79 | [275]: https://github.com/bevyengine/bevy/pull/275
|
| 80 | +[280]: https://github.com/bevyengine/bevy/pull/280 |
74 | 81 | [290]: https://github.com/bevyengine/bevy/pull/290
|
75 | 82 | [292]: https://github.com/bevyengine/bevy/pull/292
|
76 | 83 | [304]: https://github.com/bevyengine/bevy/pull/304
|
|
98 | 105 | [385]: https://github.com/bevyengine/bevy/pull/385
|
99 | 106 | [386]: https://github.com/bevyengine/bevy/pull/386
|
100 | 107 | [390]: https://github.com/bevyengine/bevy/pull/390
|
101 |
| -[393]: https://github.com/bevyengine/bevy/pull/393 |
102 | 108 | [394]: https://github.com/bevyengine/bevy/pull/394
|
103 | 109 | [396]: https://github.com/bevyengine/bevy/pull/396
|
104 | 110 | [339]: https://github.com/bevyengine/bevy/pull/339
|
|
115 | 121 | [485]: https://github.com/bevyengine/bevy/pull/485
|
116 | 122 | [486]: https://github.com/bevyengine/bevy/pull/486
|
117 | 123 | [491]: https://github.com/bevyengine/bevy/pull/491
|
| 124 | +[495]: https://github.com/bevyengine/bevy/pull/495 |
| 125 | +[496]: https://github.com/bevyengine/bevy/pull/496 |
| 126 | +[503]: https://github.com/bevyengine/bevy/pull/503 |
| 127 | +[504]: https://github.com/bevyengine/bevy/pull/504 |
| 128 | +[505]: https://github.com/bevyengine/bevy/pull/505 |
| 129 | +[506]: https://github.com/bevyengine/bevy/pull/506 |
118 | 130 |
|
119 | 131 | ## Version 0.1.3 (2020-8-22)
|
120 | 132 |
|
|
0 commit comments