Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -1/+1 | ||
2024-10-02 | Derive `Default` for `iced_wgpu::geometry::Cache` | 1 | -1/+1 | ||
2024-09-24 | Include images and saved meshes when pasting `Frame` | 1 | -0/+1 | ||
`tiny_skia::Frame` was ignoring images in `Frame::paste`, making images not show up when created in a `with_clip` context. `wgpu::Frame` similarly did not pass through meshes in its paste method, that may have been saved from a nested `with_clip` call. | |||||
2024-09-10 | Add stroke_rectangle | 1 | -0/+38 | ||
This method should be able to leverage performance improvements in lyon's `tessellate_rectangle` over `tessellate_path`. | |||||
2024-08-04 | Introduce `Svg` struct in `core::svg` | 1 | -25/+15 | ||
2024-08-04 | Introduce `Image` struct in `core::image` | 1 | -23/+12 | ||
2024-08-04 | Implement image support for `canvas` widget | 1 | -5/+86 | ||
2024-04-30 | Introduce `canvas::Cache` grouping | 1 | -4/+9 | ||
Caches with the same `Group` will share their text atlas! | |||||
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -12/+12 | ||
2024-04-06 | Avoid generating empty caches in `iced_wgpu` | 1 | -4/+13 | ||
2024-04-06 | Avoid generating empty `Frame` geometry in `iced_wgpu` | 1 | -18/+25 | ||
2024-04-05 | Decouple caching from layering and simplify everything | 1 | -108/+80 | ||
2024-04-05 | Fix layer transformations | 1 | -17/+22 | ||
2024-04-03 | Use default tolerance for dashed paths in `iced_wgpu` | 1 | -1/+3 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 1 | -70/+105 | ||
2024-03-22 | Restore `canvas::Frame` API | 1 | -6/+5 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -276/+217 | ||
2024-03-16 | Show name of current `Theme` in `clock` example | 1 | -3/+5 | ||
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | 1 | -2/+1 | ||
2024-02-02 | Replace `Primitive::Translate` with `Transform` | 1 | -5/+6 | ||
2024-01-31 | Add return values to Frame::with_clip() and Frame::with_save() | 1 | -4/+12 | ||
2024-01-17 | Implement vectorial text support for `iced_tiny_skia` | 1 | -140/+2 | ||
2024-01-17 | Implement vectorial text support for `iced_wgpu` | 1 | -37/+188 | ||
2024-01-17 | Simplify `Transform` API in `iced_wgpu::geometry` | 1 | -74/+62 | ||
2024-01-17 | Apply scaling during `Frame::fill_text` in `iced_wgpu` | 1 | -6/+34 | ||
2023-12-02 | Rename `viewport` to `clip_bounds` | 1 | -1/+1 | ||
2023-12-01 | Clip text to `viewport` bounds instead of layout bounds | 1 | -6/+9 | ||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -2/+2 | ||
2023-09-09 | Fix majority of unresolved documentation links | 1 | -3/+1 | ||
2023-09-07 | Make `scale` methods in `Frame` generic over `f32` and `Vector` | 1 | -2/+6 | ||
2023-09-07 | Implement `scale` in terms of `scale_nonuniform` | 1 | -3/+1 | ||
2023-09-05 | added a Frame::scale_nonuniform method | 1 | -1/+9 | ||
2023-06-29 | Decouple `Mesh` primitives from main `Primitive` type | 1 | -30/+34 | ||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -3/+3 | ||
2023-05-31 | Introduce `web-colors` feature flag to enable sRGB linear blending | 1 | -3/+4 | ||
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 | -2/+2 | ||
2023-05-25 | Created "Packed" data structure for gradient data. | 1 | -3/+4 | ||
2023-05-24 | Made gradient pack public for iced_graphics::gradient mod for use with ↵ | 1 | -41/+2 | ||
GradientVertex2D. | |||||
2023-05-19 | Avoid packing gradient data for every vertex in `iced_wgpu` | 1 | -5/+5 | ||
2023-05-19 | Remove `Builder` abstractions for gradients | 1 | -1/+1 | ||
2023-05-11 | Added support for gradients as background variants + other optimizations. | 1 | -30/+81 | ||
2023-05-11 | Write missing documentation in `iced_wgpu` | 1 | -6/+9 | ||
2023-05-04 | Support configurable `LineHeight` in text widgets | 1 | -0/+1 | ||
2023-05-02 | Introduce `text::Shaping` enum and replace magic boolean | 1 | -1/+1 | ||
2023-05-02 | Make basic text shaping the default shaping strategy | 1 | -0/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -4/+4 | ||
2023-03-03 | Move `Canvas` and `QRCode` to `iced` crate | 1 | -4/+4 | ||
Rename `canvas` modules to `geometry` in graphics subcrates | |||||
2023-03-03 | Rename `canvas::frame` to `canvas` in `iced_wgpu` | 1 | -4/+3 | ||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -39/+118 | ||
2022-11-16 | Group all solid triangles independently of color | 1 | -46/+150 | ||