- text input: Shift+Backspace is also backspace Definitely the desired behavior. One liner. Approved and merged.
- gate Local use in bevy_pbr for wasm This is necessary, but inlining the import cuts down on hard-to-maintain conditionals so I pushed that and merged.
- fix: disabled number input field isn't editable This works, but it should use a Without filter instead of a query + value check. Pushed that and merged.
- Make
DlssimplementDefaultfor all feature types Easy uncontroversial win. Approved and merged. - Fix bevy not exporting bevy::extract Another quick win. Approved and merged.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use serde::{Deserialize, Serialize}; | |
| use std::{collections::HashMap, fs::read_to_string}; | |
| #[derive(Serialize, Deserialize, Debug)] | |
| struct BloatOutput { | |
| #[serde(alias = "file-size")] | |
| file_size: usize, | |
| #[serde(alias = "text-section-size")] | |
| text_section_size: usize, | |
| functions: Vec<Function>, |
OlderNewer