Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Update all `examples` to Rust 2024 | 1 | -2/+2 | ||
2025-02-11 | Replace `with` function with `Function` trait | 1 | -4/+5 | ||
2025-02-02 | Use working wasmtimer for time::every | 1 | -1/+2 | ||
2025-01-29 | Replace unmaintained `directories-next` crate with `directories` crate | 1 | -1/+1 | ||
[`directories-next`][1] crate is no longer maintained and [`directories`][2] crate is still maintained. `directories-next` had been forked from `directories` but it died because the original `directories` crate revived the maintenance. [1]: https://crates.io/crates/directories-next [2]: https://crates.io/crates/directories | |||||
2025-01-24 | Add helper functions for alignment to `widget` module | 1 | -2/+2 | ||
2025-01-06 | Rename `window::change_*` tasks to `set_*` | 1 | -3/+1 | ||
2024-12-17 | Write documentation for `iced_test` | 1 | -2/+3 | ||
2024-12-17 | Use proper hash for `creates_a_new_task` snapshot | 1 | -2/+2 | ||
2024-12-17 | Append `env::consts::OS` to snapshot filenames | 1 | -2/+1 | ||
2024-12-17 | Reduce size of `Simulator` in `todos` test | 1 | -1/+2 | ||
2024-12-17 | Implement `Simulator::simulate` and polish naming | 1 | -2/+2 | ||
2024-12-14 | Support custom renderers in `iced_test` through `renderer::Headless` trait | 1 | -5/+14 | ||
2024-12-10 | Add explicit `'static` in `todos` for Rust 1.80 | 1 | -1/+1 | ||
2024-12-10 | Decouple `iced_test` from `iced` crate | 1 | -12/+11 | ||
2024-12-10 | Add image and hash snapshot-based testing to `iced_test` | 1 | -3/+12 | ||
2024-12-10 | Return `Result` in `todos` test | 1 | -8/+4 | ||
2024-12-10 | Draft `iced_test` crate and test `todos` example | 1 | -0/+33 | ||
2024-09-18 | Implement some `From` traits for `text_input::Id` | 1 | -5/+2 | ||
2024-08-24 | Implement `align_x` for `TextInput` | 1 | -1/+2 | ||
Co-authored-by: Shan <shankern@protonmail.com> | |||||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -18/+19 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -19/+8 | ||
2024-07-09 | Remove `load` method from `application` and `daemon` | 1 | -6/+7 | ||
If you need to run a `Task` during boot, use `run_with` instead! | |||||
2024-06-20 | Remove `window::Id::MAIN` constant | 1 | -3/+4 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -1/+1 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -1/+1 | ||
2024-05-13 | Ask for explicit `Length` in `center_*` methods | 1 | -1/+4 | ||
2024-05-03 | Introduce `center` widget helper | 1 | -9/+5 | ||
... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result. | |||||
2024-03-18 | refactor: replace `text(format!(` with `text` macro | 1 | -2/+2 | ||
2024-03-17 | Use `Program` API in `game_of_life` example | 1 | -1/+1 | ||
2024-03-17 | Remove unnecessary `Command::batch` in `todos` example | 1 | -4/+1 | ||
2024-03-17 | Use `Program` API in `todos` example | 1 | -28/+15 | ||
2024-03-07 | Rename `positive` and `destructive` to `success` and `danger` in `button` | 1 | -1/+1 | ||
2024-03-05 | Reduce default size of `checkbox` to `15.0` | 1 | -0/+1 | ||
2024-03-04 | Simplify theming for `Button` widget | 1 | -7/+7 | ||
2024-03-04 | Simplify theming for `Text` widget | 1 | -3/+3 | ||
2024-02-05 | Fix new `beta` toolchain warnings | 1 | -1/+1 | ||
2024-02-01 | Introduce support for disabling a `checkbox` | 1 | -7/+4 | ||
2024-01-16 | Refactor `KeyCode` into `Key` and `Location` | 1 | -5/+11 | ||
2024-01-10 | Fix `size_hint` for `keyed_column` | 1 | -8/+1 | ||
2023-11-30 | Use actual floats for logical coordinates | 1 | -2/+2 | ||
2023-09-20 | Fix `clippy::trivially-copy-pass-by-ref` | 1 | -1/+1 | ||
2023-09-19 | Chore: Inline format args for ease of reading | 1 | -2/+1 | ||
A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read. | |||||
2023-09-10 | Fix Wasm build of `todos` example | 1 | -0/+1 | ||
2023-09-07 | Introduce `keyboard::on_key_press` and `on_key_release` | 1 | -28/+12 | ||
Also rename `subscription::events*` to `event::listen*`. | |||||
2023-09-04 | Introduce `keyed::Column` widget | 1 | -8/+16 | ||
2023-07-21 | refactored window storage; | 1 | -1/+1 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-05-02 | Introduce `text::Shaping` enum and replace magic boolean | 1 | -1/+2 | ||
2023-04-12 | Rename `on_change` to `on_input` for `TextInput` | 1 | -4/+4 | ||
2023-04-12 | Introduce disabled state for `TextInput` | 1 | -17/+12 | ||
2023-03-30 | Introduce support for `Font` attributes | 1 | -6/+9 | ||