Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Remove unnecessary `Future` imports | 1 | -1/+0 | ||
2025-02-21 | Update all `examples` to Rust 2024 | 2 | -3/+4 | ||
2025-02-11 | Replace `with` function with `Function` trait | 1 | -9/+5 | ||
2025-02-04 | Take `Event` by reference in `Widget::update` | 1 | -2/+2 | ||
2025-01-24 | Add `Duration` helpers to `time` module | 1 | -4/+3 | ||
2024-11-05 | Implement `reactive-rendering` for `canvas` | 1 | -19/+33 | ||
2024-07-12 | Re-export variants of `Length` and `alignment` types | 1 | -13/+7 | ||
2024-07-12 | Introduce helper methods for alignment for all widgets | 1 | -3/+3 | ||
2024-06-19 | Introduce `daemon` API and unify shell runtimes | 1 | -6/+10 | ||
2024-06-14 | Replace `Command` with a new `Task` API with chain support | 1 | -4/+4 | ||
2024-03-22 | Restore `canvas::Frame` API | 1 | -5/+3 | ||
2024-03-21 | Restore `canvas::Program` API | 1 | -5/+7 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -9/+9 | ||
2024-03-18 | refactor: replace `text(format!(` with `text` macro | 1 | -1/+1 | ||
2024-03-17 | Use `Program` API in `game_of_life` example | 1 | -35/+21 | ||
2024-03-08 | Group preset list and clear button in `game_of_life` example | 1 | -11/+8 | ||
2024-03-07 | Rename `positive` and `destructive` to `success` and `danger` in `button` | 1 | -1/+1 | ||
2024-03-04 | Simplify theming for `Button` widget | 1 | -3/+3 | ||
2024-02-05 | Fix unused import in `game_of_life` example | 1 | -1/+1 | ||
2024-02-05 | Fix unused `Instant` in `game_of_life` example | 1 | -3/+3 | ||
2024-02-01 | Introduce support for disabling a `checkbox` | 1 | -1/+2 | ||
2024-01-04 | Make `Shrink` have priority over `Fill` in layout | 1 | -2/+2 | ||
2023-11-15 | Update `itertools` dependency for `game_of_life` example | 1 | -1/+1 | ||
2023-09-20 | Fix `clippy::manual_let_else` | 1 | -6/+3 | ||
2023-09-20 | Fix `clippy::match-wildcard-for-single-variants` | 1 | -2/+2 | ||
2023-09-19 | Chore: Apply some minor clippy fixes | 1 | -1/+1 | ||
* Use `.elapsed()` for duration * Use direct iteration without calling `.iter()` and the like * order fields in the `Text` struct creation as declared | |||||
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-07 | Make `scale` methods in `Frame` generic over `f32` and `Vector` | 1 | -4/+4 | ||
2023-09-07 | Host GIFs and video examples in `iced.rs` | 1 | -3/+1 | ||
RIP Gfycat | |||||
2023-09-07 | Update example dependencies | 1 | -1/+1 | ||
2023-09-04 | Use workspace dependencies and package inheritance | 2 | -5/+7 | ||
We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version. | |||||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -1/+1 | ||
2023-08-23 | Update vulnerable `env_logger` dependency in examples | 1 | -1/+1 | ||
2023-06-08 | Take `Rectangle` by value in `Cursor` API | 1 | -6/+5 | ||
2023-06-08 | Implement basic cursor availability | 1 | -8/+7 | ||
2023-03-03 | Move `Canvas` and `QRCode` to `iced` crate | 1 | -1/+1 | ||
Rename `canvas` modules to `geometry` in graphics subcrates | |||||
2023-03-01 | Fix `Clip` primitive translation in `iced_tiny_skia` | 1 | -1/+1 | ||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -35/+38 | ||
2023-01-27 | Fix: Clippy lint 'uninlined_format_args' | 1 | -1/+1 | ||
2023-01-19 | Fix `#[default]` in `preset` for `game_of_life` example | 1 | -1/+1 | ||
2023-01-19 | Update preset.rs | 1 | -7/+2 | ||
2022-12-20 | Fix `clippy` lints for Rust 1.66 | 1 | -2/+4 | ||
2022-10-04 | Fix `clippy` lints | 1 | -14/+11 | ||
2022-10-04 | Working multitouch example | 1 | -0/+17 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -133/+137 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 2 | -10/+10 | ||
... and check those in CI as well! | |||||
2022-06-07 | Implement theme styling for `Canvas` | 1 | -2/+7 | ||
2022-06-07 | Implement theme styling for `PickList` and `Menu` | 2 | -59/+1 | ||
2022-05-26 | Introduce specific types for each `palette::Extended` field | 2 | -24/+9 | ||
We will have more control over color calculations for each semantic purpose this way. | |||||
2022-05-26 | Fix examples and doc-tests | 2 | -62/+7 | ||