Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -3/+7 | ||
2024-12-02 | Fix new `clippy` lints | 1 | -2/+2 | ||
2024-09-13 | Add `rounded_rectangle` to `geometry::Path` | 2 | -2/+79 | ||
2024-09-10 | Add stroke_rectangle | 1 | -0/+24 | ||
This method should be able to leverage performance improvements in lyon's `tessellate_rectangle` over `tessellate_path`. | |||||
2024-08-04 | Implement missing `draw_svg` in `Frame` wrapper | 1 | -1/+7 | ||
2024-08-04 | Introduce `Svg` struct in `core::svg` | 1 | -23/+5 | ||
2024-08-04 | Introduce `Image` struct in `core::image` | 1 | -34/+5 | ||
2024-08-04 | Implement image support for `canvas` widget | 1 | -7/+65 | ||
2024-07-17 | Update `cosmic-text` and `resvg` (#2416) | 1 | -1/+4 | ||
* Update `cosmic-text`, `glyphon`, and `resvg` * Fix slow font fallback with `Shaping::Basic` in `cosmic-text` * Update `cosmic-text` and `resvg` * Update `cosmic-text` * Fix `SelectAll` action in `editor` * Fix some panics in `graphics::text::editor` * Remove empty `if` statement in `tiny_skia::vector` * Update `cosmic-text`, `glyphon`, and `rustc-hash` | |||||
2024-06-21 | Implement Copy on Fill and Stroke | 3 | -3/+3 | ||
2024-04-30 | Introduce `canvas::Cache` grouping | 1 | -44/+39 | ||
Caches with the same `Group` will share their text atlas! | |||||
2024-04-05 | Decouple caching from layering and simplify everything | 1 | -9/+7 | ||
2024-04-03 | Fix `geometry::Cache` not reusing previous geometry | 1 | -15/+24 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 1 | -3/+7 | ||
2024-03-22 | Fix standalone compilation of `iced_widget` crate | 1 | -0/+46 | ||
2024-03-22 | Make `iced_tiny_skia` optional with a `tiny-skia` feature | 1 | -2/+1 | ||
2024-03-22 | Fix outdated warning in docs of `Frame::fill_text` | 1 | -8/+1 | ||
2024-03-22 | Fix broken links in documentation | 2 | -27/+17 | ||
2024-03-22 | Restore `canvas::Frame` API | 2 | -0/+331 | ||
2024-01-31 | Use `Radians` in arc and ellipse types | 2 | -17/+19 | ||
2024-01-17 | Implement vectorial text support for `iced_tiny_skia` | 1 | -1/+134 | ||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -1/+1 | ||
2023-09-09 | Fix outstanding broken intradoc links | 2 | -2/+6 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -3/+3 | ||
2023-08-15 | Update arc.rs with improved documentation | 1 | -6/+6 | ||
added units and improved description to field comments of Arc and Ellipse structs. | |||||
2023-05-19 | Fix imports of `geometry::style` in `iced_graphics` | 1 | -2/+2 | ||
2023-05-19 | Remove `Builder` abstractions for gradients | 1 | -3/+12 | ||
2023-05-11 | Added support for gradients as background variants + other optimizations. | 2 | -2/+4 | ||
2023-05-11 | Write missing documentation in `iced_graphics` | 1 | -0/+2 | ||
2023-05-04 | Support configurable `LineHeight` in text widgets | 1 | -1/+4 | ||
2023-05-02 | Introduce `text::Shaping` enum and replace magic boolean | 1 | -12/+6 | ||
2023-05-02 | Make basic text shaping the default shaping strategy | 1 | -0/+10 | ||
2023-03-30 | Introduce support for `Font` attributes | 1 | -1/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 7 | -8/+9 | ||
2023-03-03 | Move `Canvas` and `QRCode` to `iced` crate | 7 | -0/+550 | ||
Rename `canvas` modules to `geometry` in graphics subcrates |