Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -160/+0 | ||
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | 1 | -2/+2 | ||
2024-02-02 | Replace `Primitive::Translate` with `Transform` | 1 | -10/+22 | ||
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | 1 | -8/+4 | ||
2024-01-20 | Make `shadow` optional in `renderer::Quad` | 1 | -7/+5 | ||
2024-01-20 | feat: quad shadows | 1 | -0/+6 | ||
2023-12-05 | Introduce `RawText` to `Primitive` in `iced_graphics` | 1 | -0/+2 | ||
This should allow users to directly render a `cosmic_text::Buffer`. | |||||
2023-12-02 | Rename `viewport` to `clip_bounds` | 1 | -6/+6 | ||
2023-12-01 | Clip text to `viewport` bounds instead of layout bounds | 1 | -10/+16 | ||
2023-11-11 | Refactor texture image filtering | 1 | -0/+2 | ||
- Support only `Linear` or `Nearest` - Simplify `Layer` groups - Move `FilterMethod` to `Image` and `image::Viewer` | |||||
2023-09-12 | Draft `Editor` API and `TextEditor` widget | 1 | -0/+10 | ||
2023-09-10 | Fix (more) broken intradoc links | 1 | -3/+3 | ||
Good thing I just set up CI earlier for this :sweat_smile: | |||||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -2/+12 | ||
2023-06-29 | Decouple `Mesh` primitives from main `Primitive` type | 1 | -68/+1 | ||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -99/+8 | ||
2023-05-31 | Introduce `web-colors` feature flag to enable sRGB linear blending | 1 | -1/+2 | ||
This is how browsers perform color management. They treat gamma-corrected sRGB colors as if they were linear RGB. Correctness aside, this mode is introduced for legacy reasons. Most UI/UX tooling uses this color management as well, and many have created an intuition about how color should behave from interacting with a browser. This feature flag should facilitate application development with `iced` in those cases. More details: https://webcolorisstillbroken.com/ | |||||
2023-05-26 | Changed gradient::Packed to be `repr(C)` for direct gpu upload. | 1 | -1/+2 | ||
2023-05-11 | Added support for gradients as background variants + other optimizations. | 1 | -13/+19 | ||
2023-05-11 | Write missing documentation in `iced_graphics` | 1 | -0/+15 | ||
2023-05-04 | Support configurable `LineHeight` in text widgets | 1 | -1/+3 | ||
2023-05-02 | Introduce `text::Shaping` enum and replace magic boolean | 1 | -13/+7 | ||
2023-05-02 | Make basic text shaping the default shaping strategy | 1 | -0/+9 | ||
2023-04-27 | Expand damage regions of `Clip` primitives a bit | 1 | -1/+1 | ||
2023-04-27 | Move damage tracking logic to `compositor` in `iced_tiny_skia` | 1 | -90/+0 | ||
2023-04-08 | Expand bounds of `Text` primitives a bit further | 1 | -1/+1 | ||
2023-04-05 | Group damage regions by area increase | 1 | -2/+2 | ||
2023-04-04 | Keep playing with incremental rendering (still very slow) | 1 | -2/+10 | ||
2023-04-04 | Draft (very) basic incremental rendering for `iced_tiny_skia` | 1 | -4/+147 | ||
2023-03-14 | Fix `clippy` lints for Rust 1.68 | 1 | -7/+2 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -5/+4 | ||
2023-03-03 | Rename `canvas::frame` to `canvas` in `iced_wgpu` | 1 | -2/+2 | ||
2023-03-03 | Mark `Primitive` as `non-exhaustive` in `iced_graphics` | 1 | -0/+3 | ||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -34/+94 | ||
2022-12-06 | Remove `appearance` from `Handle` | 1 | -0/+3 | ||
... and pass it directly to `Renderer::draw` instead. | |||||
2022-11-16 | Group all solid triangles independently of color | 1 | -6/+19 | ||
2022-11-03 | non uniform border radius for quads | 1 | -1/+1 | ||
2022-11-03 | Move `mesh::Style` to `triangle` and reuse it in `fill` and `stroke` | 1 | -2/+2 | ||
2022-11-03 | Run `cargo fmt` | 1 | -1/+1 | ||
2022-10-07 | Added support for relative positioning of gradient fills. Addressed some PR ↵ | 1 | -2/+1 | ||
feedback. | |||||
2022-10-05 | Readjusted namespaces, removed Geometry example as it's no longer relevant. | 1 | -2/+3 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -1/+4 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -1/+4 | ||
2021-10-31 | Introduce first-class `svg` module in `iced_native` | 1 | -1/+1 | ||
2021-10-31 | Introduce first-class `image` module in `iced_native` | 1 | -1/+1 | ||
2021-10-31 | Remove `widget` module re-exports in `iced_native` | 1 | -3/+3 | ||
2021-10-25 | Implement `Widget::mouse_interaction` for `PaneGrid` | 1 | -2/+0 | ||
... and fix rendering of drag interaction in `PaneGrid` by introducing an explicit `with_translation` method to `Renderer` and simplifying the `with_layer` and `Clip` primitive. | |||||
2021-09-20 | Refactor alignment types into an `alignment` module | 1 | -4/+5 | ||
2020-11-23 | Use `f32` for `border_width` and `border_radius` | 1 | -2/+2 | ||
2020-05-19 | Move `Layer` to `iced_graphics` | 1 | -3/+3 | ||
2020-05-19 | Draft new `iced_graphics` crate :tada: | 1 | -0/+0 | ||