bevy/crates/bevy_asset/src
François 3900b48c88 update winit to 0.28 (#7480)
# Objective

- Update winit to 0.28

## Solution

- Small API change 
- A security advisory has been added for a unmaintained crate used by a dependency of winit build script for wayland

I didn't do anything for Android support in this PR though it should be fixable, it should be done in a separate one, maybe https://github.com/bevyengine/bevy/pull/6830 

---

## Changelog

- `window.always_on_top` has been removed, you can now use `window.window_level`

## Migration Guide

before:
```rust
    app.new()
        .add_plugins(DefaultPlugins.set(WindowPlugin {
            primary_window: Some(Window {
                always_on_top: true,
                ..default()
            }),
            ..default()
        }));
```

after:
```rust
    app.new()
        .add_plugins(DefaultPlugins.set(WindowPlugin {
            primary_window: Some(Window {
                window_level: bevy:🪟:WindowLevel::AlwaysOnTop,
                ..default()
            }),
            ..default()
        }));
```
2023-02-03 16:41:39 +00:00
..
diagnostic docs: Full documentation for bevy_asset (#3536) 2022-07-12 15:44:09 +00:00
io update winit to 0.28 (#7480) 2023-02-03 16:41:39 +00:00
asset_server.rs Optional BEVY_ASSET_ROOT to find assets directory (#5346) 2023-01-16 17:36:09 +00:00
assets.rs fix load_internal_binary_asset with debug_asset_server (#7246) 2023-01-18 02:07:26 +00:00
debug_asset_server.rs fix load_internal_binary_asset with debug_asset_server (#7246) 2023-01-18 02:07:26 +00:00
filesystem_watcher.rs Update to notify 5.0 stable (#5865) 2022-09-02 15:54:54 +00:00
handle.rs Remove unnecessary Default impl of HandleType (#7472) 2023-02-02 15:09:06 +00:00
info.rs docs: Full documentation for bevy_asset (#3536) 2022-07-12 15:44:09 +00:00
lib.rs Derive clone and debug for AssetPlugin (#6583) 2022-11-14 23:08:26 +00:00
loader.rs Fix clippy::iter_with_drain (#6485) 2022-11-06 01:42:15 +00:00
path.rs Add From<String> for AssetPath<'a> (#6337) 2022-10-24 14:14:24 +00:00
reflect.rs add UnsafeWorldCell abstraction (#6404) 2023-01-27 00:12:13 +00:00