Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 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 | Leverage `stroke` for `stroke_rectangle` in `tiny-skia` backend | 1 | -17/+1 | ||
2024-09-10 | Add stroke_rectangle | 1 | -0/+25 | ||
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 | -20/+10 | ||
2024-08-04 | Introduce `Image` struct in `core::image` | 1 | -23/+12 | ||
2024-08-04 | Implement image support for `canvas` widget | 1 | -3/+83 | ||
2024-04-30 | Introduce `canvas::Cache` grouping | 1 | -2/+3 | ||
Caches with the same `Group` will share their text atlas! | |||||
2024-04-10 | Reintroduce damage tracking for `iced_tiny_skia` | 1 | -1/+1 | ||
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -52/+91 | ||
2024-04-07 | Use built-in `[lints]` table in `Cargo.toml` | 1 | -0/+1 | ||
2024-04-05 | Decouple caching from layering and simplify everything | 1 | -2/+2 | ||
2024-03-22 | Restore `canvas::Frame` API | 1 | -5/+3 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -23/+37 | ||
2024-03-16 | Show name of current `Theme` in `clock` example | 1 | -5/+7 | ||
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | 1 | -2/+2 | ||
2024-02-02 | Replace `Primitive::Translate` with `Transform` | 1 | -3/+3 | ||
2024-01-17 | Fix `paint` not being transformed in `iced_tiny_skia` | 1 | -6/+15 | ||
2024-01-17 | Fix paths with negative coordinates in `iced_tiny_skia` | 1 | -6/+11 | ||
2024-01-17 | Implement vectorial text support for `iced_tiny_skia` | 1 | -44/+55 | ||
2024-01-17 | Apply scaling during `Frame::fill_text` in `iced_tiny_skia` | 1 | -8/+24 | ||
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::default_trait_access` | 1 | -1/+1 | ||
2023-09-19 | Chore: Apply some minor clippy fixes | 1 | -1/+1 | ||
* Use `.elapsed()` for duration * Use direct iteration without calling `.iter()` and the like * order fields in the `Text` struct creation as declared | |||||
2023-09-09 | Deny `broken_intradoc_links` and verify documentation in CI | 1 | -1/+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 | -1/+1 | ||
2023-09-05 | added a Frame::scale_nonuniform method | 1 | -0/+4 | ||
2023-08-26 | Run `cargo fmt` with Rust 1.72 | 1 | -3/+9 | ||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -22/+25 | ||
2023-05-19 | Remove `Builder` abstractions for gradients | 1 | -1/+1 | ||
2023-05-11 | Added support for gradients as background variants + other optimizations. | 1 | -16/+28 | ||
2023-05-11 | Write missing documentation in `iced_wgpu` | 1 | -2/+2 | ||
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-04-04 | Implement `Frame::clip` for `iced_tiny_skia` | 1 | -1/+6 | ||
2023-04-04 | Warn about invalid paths in `iced_tiny_skia` instead of panicking | 1 | -7/+13 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -6/+6 | ||
2023-03-03 | Move `Canvas` and `QRCode` to `iced` crate | 1 | -5/+5 | ||
Rename `canvas` modules to `geometry` in graphics subcrates | |||||
2023-03-01 | Remove magic boolean in `into_paint` | 1 | -5/+8 | ||
2023-03-01 | Disable `anti_alias` for `Frame::fill_rectangle` in `iced_tiny_skia` | 1 | -5/+13 | ||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -0/+276 | ||