| Commit message (Expand) | Author | Files | Lines |
2024-02-22 | Fix `iced_tiny_skia` clipping line strokes | Héctor Ramón Jiménez | 1 | -2/+2 |
2024-02-15 | Fix text transparency in `iced_tiny_skia` | Daniel Yoon | 1 | -1/+10 |
2024-02-11 | Fix clipping of text in `iced_tiny_skia` | Héctor Ramón Jiménez | 1 | -38/+50 |
2024-02-07 | tiny_skia: Add a capacity limit to `GlyphCache` | Mohammad AlSaleh | 1 | -1/+7 |
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | Héctor Ramón Jiménez | 3 | -16/+39 |
2024-02-02 | Allow only uniform scaling in `Transformation` | Héctor Ramón Jiménez | 1 | -4/+4 |
2024-02-02 | Replace `Primitive::Translate` with `Transform` | Héctor Ramón Jiménez | 2 | -49/+48 |
2024-01-31 | Assert dimensions of quads are normal in `iced_tiny_skia` | Josh Megnauth | 1 | -0/+9 |
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | Héctor Ramón Jiménez | 2 | -13/+7 |
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | Héctor Ramón Jiménez | 1 | -91/+76 |
2024-01-20 | Skip transparent shadows in `iced_tiny_skia` | Héctor Ramón Jiménez | 1 | -94/+101 |
2024-01-20 | Use `Default` implementation of `renderer::Quad` | Héctor Ramón Jiménez | 1 | -12/+13 |
2024-01-20 | Make `shadow` optional in `renderer::Quad` | Héctor Ramón Jiménez | 1 | -13/+11 |
2024-01-20 | feat: quad shadows | Nick Senger | 1 | -0/+106 |
2024-01-18 | Use `Self::Surface` in `Compositor` implementors | Héctor Ramón Jiménez | 1 | -3/+3 |
2024-01-18 | Resize surface in `configure_surface` in `iced_tiny_skia` | Héctor Ramón Jiménez | 1 | -10/+14 |
2024-01-18 | Nest `age` declaration inside `last_primitives` | Héctor Ramón Jiménez | 1 | -2/+2 |
2024-01-18 | Avoid stacking new primitives when undamaged | Héctor Ramón Jiménez | 1 | -19/+21 |
2024-01-18 | Support out-of-order `Buffer` ages in `iced_tiny_skia` | Héctor Ramón Jiménez | 1 | -17/+15 |
2024-01-18 | Make `compatible_window` mandatory in `Compositor` | Héctor Ramón Jiménez | 1 | -16/+10 |
2024-01-18 | Remove `Compositor` window generic | Héctor Ramón Jiménez | 2 | -28/+29 |
2024-01-17 | Fix `paint` not being transformed in `iced_tiny_skia` | Héctor Ramón Jiménez | 1 | -6/+15 |
2024-01-17 | Fix paths with negative coordinates in `iced_tiny_skia` | Héctor Ramón Jiménez | 3 | -18/+21 |
2024-01-17 | Implement vectorial text support for `iced_tiny_skia` | Héctor Ramón Jiménez | 1 | -44/+55 |
2024-01-17 | Apply scaling during `Frame::fill_text` in `iced_tiny_skia` | Héctor Ramón Jiménez | 1 | -8/+24 |
2024-01-16 | WIP raw-window-handle 0.6 | Ian Douglas Scott | 1 | -27/+29 |
2024-01-17 | Update to `softbuffer` 0.3, tracking up to `age` sets of primitives | Ian Douglas Scott | 1 | -44/+77 |
2024-01-15 | Update `glyphon` to `0.4` | Héctor Ramón Jiménez | 1 | -13/+1 |
2023-12-11 | Fix `expect` message in `iced_tiny_skia::vector` | Héctor Ramón Jiménez | 1 | -1/+1 |
2023-12-05 | Introduce `RawText` to `Primitive` in `iced_graphics` | Héctor Ramón Jiménez | 2 | -1/+58 |
2023-12-02 | Separate `Compositor::new` from `Compositor::create_renderer` | Héctor Ramón Jiménez | 1 | -20/+8 |
2023-12-02 | Rename `viewport` to `clip_bounds` | Héctor Ramón Jiménez | 2 | -7/+10 |
2023-12-01 | Clip text to `viewport` bounds instead of layout bounds | Héctor Ramón Jiménez | 2 | -16/+16 |
2023-11-11 | Refactor texture image filtering | Héctor Ramón Jiménez | 2 | -4/+15 |
2023-11-11 | Fix clippy + fmt | Remmirad | 1 | -3/+7 |
2023-11-11 | Implement texture filtering options | Remmirad | 1 | -1/+6 |
2023-11-11 | Call `convert_text` on `svg` node before rendering | Héctor Ramón Jiménez | 1 | -2/+12 |
2023-11-11 | Migrate twox-hash -> xxhash_rust. Switch to Xxh3 for better performance. | dtzxporter | 1 | -5/+1 |
2023-09-20 | Centralize `clippy` lints in `.cargo/config.toml` | Héctor Ramón Jiménez | 1 | -11/+1 |
2023-09-20 | Fix `clippy::unreadable_literal` | Héctor Ramón Jiménez | 1 | -3/+3 |
2023-09-20 | Fix `clippy::default_trait_access` | Héctor Ramón Jiménez | 1 | -1/+1 |
2023-09-19 | Fix gamma correction for colored glyphs in `iced_wgpu` | Héctor Ramón Jiménez | 1 | -1/+13 |
2023-09-19 | Draw colored glyphs in `iced_tiny_skia` | Héctor Ramón Jiménez | 1 | -1/+7 |
2023-09-19 | Chore: Apply some minor clippy fixes | Yuri Astrakhan | 1 | -1/+1 |
2023-09-19 | Chore: Inline format args for ease of reading | Yuri Astrakhan | 1 | -4/+2 |
2023-09-14 | Remove `Editor::min_bounds` and use `bounds` instead | Héctor Ramón Jiménez | 1 | -1/+1 |
2023-09-12 | Draft `Editor` API and `TextEditor` widget | Héctor Ramón Jiménez | 2 | -0/+57 |
2023-09-11 | Make `FontSystem` global and simplify `Paragraph` API | Héctor Ramón Jiménez | 2 | -15/+11 |
2023-09-09 | Deny `broken_intradoc_links` and verify documentation in CI | Héctor Ramón Jiménez | 6 | -10/+24 |
2023-09-09 | Invalidate existing paragraphs when new fonts are loaded | Héctor Ramón Jiménez | 1 | -4/+1 |