Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-03 | Move `Canvas` and `QRCode` to `iced` crate | 1 | -259/+0 | ||
Rename `canvas` modules to `geometry` in graphics subcrates | |||||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -55/+46 | ||
2023-02-17 | Use `f32` in `Length::Units` and rename it to `Fixed` | 1 | -7/+7 | ||
2022-11-16 | Group all solid triangles independently of color | 1 | -0/+2 | ||
2022-11-03 | Move re-export in `widget::canvas` in `iced_graphics` | 1 | -1/+1 | ||
2022-11-03 | Fix documentation example of `Canvas` | 1 | -5/+9 | ||
... so it makes sense when seen from the `iced` crate. | |||||
2022-11-03 | Refactor imports in `widget::canvas` in `iced_graphics` | 1 | -4/+3 | ||
2022-11-03 | Run `cargo fmt` | 1 | -4/+4 | ||
2022-10-07 | Adjusted reexports for clarity. | 1 | -1/+1 | ||
2022-10-07 | Added support for relative positioning of gradient fills. Addressed some PR ↵ | 1 | -1/+1 | ||
feedback. | |||||
2022-10-06 | Added support for gradients to respect current frame transform. | 1 | -1/+1 | ||
2022-10-05 | Reduced memory transfer of OpenGL gradient uniform upload. Rearranged ↵ | 1 | -2/+1 | ||
gradient uniforms on OpenGL side to be more performant. | |||||
2022-10-05 | Readjusted namespaces, removed Geometry example as it's no longer relevant. | 1 | -3/+5 | ||
2022-10-04 | Reworked wgpu buffers, updated glow side to have proper transform location ↵ | 1 | -2/+2 | ||
storage, attempting to fix visibility modifiers, implemented some of the feedback received in initial PR. | |||||
2022-10-04 | expose touch events in canvas widget | 1 | -0/+3 | ||
2022-09-30 | Fixed some importing issues since you can use a Shader::Gradient outside a ↵ | 1 | -11/+5 | ||
Canvas widget, where it was previously only accessible. | |||||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -2/+4 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -2/+4 | ||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -28/+33 | ||
2022-06-07 | Implement theme styling for `Canvas` | 1 | -12/+21 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -8/+11 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-05-02 | Replace `hecrj` in links with `iced-rs` | 1 | -4/+4 | ||
2022-04-30 | Point repository links to `0.4` branch in documentation | 1 | -4/+4 | ||
2022-03-18 | Reintroduce generic `Message` type for `canvas::Program` | 1 | -19/+22 | ||
As it is useful to make the `Message` completely free in many implementations. | |||||
2022-03-09 | Use associated type for `Message` in a `canvas::Program` | 1 | -14/+12 | ||
2022-02-28 | Skip `Canvas::draw` if `bounds` have no logical pixels | 1 | -0/+5 | ||
2022-02-23 | Remove `hash_layout` method from `Widget` trait | 1 | -11/+2 | ||
2022-01-27 | Add line dash API | 1 | -1/+1 | ||
2022-01-11 | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 1 | -0/+1 | ||
2021-11-29 | Introduce `Shell` type in `iced_native` | 1 | -4/+4 | ||
Widgets now can invalidate the current layout of the application on demand. | |||||
2021-11-02 | Move `viewport` argument to last position in `mouse_interaction` methods | 1 | -1/+1 | ||
This keeps the order of the arguments consistent with `draw`. | |||||
2021-10-29 | Implement `Widget::mouse_interaction` for `Canvas` in `iced_graphics` | 1 | -0/+13 | ||
2021-10-29 | Implement `Widget::draw` for `Canvas` in `iced_graphics` | 1 | -24/+22 | ||
2021-10-18 | Move `Defaults` from `iced_graphics` to `iced_native` | 1 | -2/+4 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -25/+24 | ||
2021-03-10 | Make `Clipboard` argument in `Widget` trait mutable | 1 | -2/+2 | ||
2020-11-26 | Use recently stabilized intra-doc links | 1 | -11/+0 | ||
See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | |||||
2020-11-12 | Implement event capturing for `Canvas` | 1 | -4/+7 | ||
2020-11-12 | Make `Widget::on_event` return an `event::Status` | 1 | -3/+7 | ||
2020-10-28 | Introduce `viewport` to `Widget::draw` | 1 | -2/+3 | ||
This should eventually allow us to only generate primitives that are visible. | |||||
2020-08-10 | Add `Keyboard` variant to `canvas::Event` | 1 | -0/+3 | ||
2020-07-10 | Remove unnecessary lifetime in `Widget` trait | 1 | -1/+1 | ||
2020-07-08 | Introduce `Widget::overlay` :tada: | 1 | -1/+1 | ||
2020-06-02 | Introduce fill rule setting in `canvas` | 1 | -2/+2 | ||
2020-05-19 | Draft new `iced_graphics` crate :tada: | 1 | -11/+14 | ||
2020-04-30 | Rename `MouseCursor` to `mouse::Interaction` | 1 | -4/+4 | ||
2020-04-30 | Write documentation for the new `canvas` API | 1 | -4/+7 | ||
2020-04-29 | Introduce `Cursor` type in `canvas` | 1 | -21/+17 | ||
2020-04-29 | Let a `canvas::Program` control the mouse cursor | 1 | -1/+1 | ||
2020-04-28 | Remove `Drawable` and rename `State` to `Program` | 1 | -31/+27 | ||