Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-07-27 | Remove `pure` leftovers in `iced_graphics` | 2 | -310/+0 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -102/+0 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 1 | -4/+4 | ||
... and check those in CI as well! | |||||
2022-07-09 | Fix doc example in `pure::canvas::Program` | 1 | -1/+3 | ||
The `widget` module was missing. | |||||
2022-07-09 | Update import path in pure canvas example | 1 | -1/+1 | ||
In current version, `iced::pure::canvas` would be unresolved. It should be `iced::pure::widget::canvas`. | |||||
2022-07-01 | Fix `Widget::tag` implementation of `pure::Canvas` | 1 | -1/+2 | ||
Using `P::State` can cause a panic if the `Canvas` has `()` as `P::State` and replaces a stateless widget in a future `view` call. | |||||
2022-06-07 | Implement theme styling for `Canvas` | 2 | -18/+23 | ||
2022-05-14 | Draft first-class `Theme` support | 2 | -17/+23 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-04-30 | Fix broken intra-doc links in documentation | 1 | -2/+2 | ||
2022-03-21 | Implement `pure` version of `QRCode` widget | 1 | -0/+61 | ||
2022-03-18 | Reintroduce generic `Message` type for `canvas::Program` | 2 | -22/+22 | ||
As it is useful to make the `Message` completely free in many implementations. | |||||
2022-03-16 | Export widget modules in `iced_pure` | 1 | -1/+1 | ||
... and fix collisions with the new `helpers` | |||||
2022-03-09 | Implement `Widget::tag` for `pure::Canvas` | 1 | -0/+4 | ||
2022-03-09 | Implement `pure` version of `Canvas` widget | 2 | -0/+333 | ||