Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-05 | Rename `iced_native` to `iced_runtime` | 1 | -194/+0 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -11/+7 | ||
2022-09-28 | Return ignored events in `program::State::update` | 1 | -8/+22 | ||
2022-07-09 | Address Clippy lints | 1 | -1/+1 | ||
2022-07-08 | Add `Style` variant support to `application::StyleSheet` | 1 | -2/+4 | ||
2022-05-26 | Rename `theme::Definition` to `application::StyleSheet` | 1 | -3/+3 | ||
2022-05-26 | Let a `Theme` control the `text_color` of an application | 1 | -1/+6 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -2/+3 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-01-11 | Invalidate widget tree from `Responsive` widget | 1 | -7/+5 | ||
... by introducing a new `invalidate_widgets` method to `Shell` | |||||
2021-10-18 | Introduce `mouse_interaction` method to `Widget` trait | 1 | -4/+13 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -14/+3 | ||
2021-09-02 | Make `Command` implementations platform-specific | 1 | -3/+4 | ||
This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!) | |||||
2021-03-11 | Add `clipboard` argument to `Application::update` | 1 | -4/+3 | ||
2021-03-10 | Make `Clipboard` argument in `Widget` trait mutable | 1 | -2/+2 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -18/+2 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-11-12 | Batch event processing in `UserInterface::update` | 1 | -9/+8 | ||
2020-11-12 | Return `event::Status` in `UserInterface::update` | 1 | -8/+12 | ||
2020-07-08 | Finish wiring overlays to `UserInterface` | 1 | -1/+3 | ||
2020-07-08 | Draft `Widget::overlay` idempotency | 1 | -2/+2 | ||
2020-06-23 | Decouple `cursor_position` from `Cache` | 1 | -5/+8 | ||
Instead, we ask explicitly for it in the different `update` and `draw` methods. This way, the runtime can derive the logical position of the cursor from the source of truth. | |||||
2020-06-09 | Request a redraw only on relevant events | 1 | -4/+7 | ||
2020-05-28 | Write documentation for new `iced_native` API | 1 | -0/+31 | ||
2020-05-21 | Introduce `Program` and `State` | 1 | -0/+154 | ||