Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-07-17 | Update `cosmic-text` and `resvg` (#2416) | 1 | -1/+7 | ||
* 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-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -19/+10 | ||
2024-04-07 | Use built-in `[lints]` table in `Cargo.toml` | 1 | -1/+1 | ||
2024-02-15 | Fix text transparency in `iced_tiny_skia` | 1 | -1/+10 | ||
2024-02-07 | tiny_skia: Add a capacity limit to `GlyphCache` | 1 | -1/+7 | ||
* Trim the cache if `recently_used` size reaches the limit, even if a trim interval hasn't passed. * Shrink `entries` and `recently_used` to the limit when trimming. Signed-off-by: Mohammad AlSaleh <CE.Mohammad.AlSaleh@gmail.com> | |||||
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | 1 | -4/+19 | ||
2024-01-15 | Update `glyphon` to `0.4` | 1 | -13/+1 | ||
`Color` is now always in the sRGB color space. | |||||
2023-12-05 | Introduce `RawText` to `Primitive` in `iced_graphics` | 1 | -1/+28 | ||
This should allow users to directly render a `cosmic_text::Buffer`. | |||||
2023-09-19 | Fix gamma correction for colored glyphs in `iced_wgpu` | 1 | -1/+13 | ||
2023-09-19 | Draw colored glyphs in `iced_tiny_skia` | 1 | -1/+7 | ||
2023-09-14 | Remove `Editor::min_bounds` and use `bounds` instead | 1 | -1/+1 | ||
2023-09-12 | Draft `Editor` API and `TextEditor` widget | 1 | -0/+32 | ||
2023-09-11 | Make `FontSystem` global and simplify `Paragraph` API | 1 | -10/+11 | ||
2023-09-09 | Deny `broken_intradoc_links` and verify documentation in CI | 1 | -3/+3 | ||
2023-09-09 | Invalidate existing paragraphs when new fonts are loaded | 1 | -4/+1 | ||
2023-09-05 | Use the correct text size and height in tiny_skia | 1 | -2/+2 | ||
2023-09-04 | Check LineHeight > 0.0 before allocating text | 1 | -8/+5 | ||
2023-09-04 | Ensure LineHeight is always > 0.0 for tiny skia. | 1 | -4/+10 | ||
2023-09-03 | Remove unnecessary mutable reference in `iced_tiny_skia` | 1 | -1/+1 | ||
2023-09-03 | Implement `draw_paragraph` in `iced_tiny_skia` | 1 | -55/+103 | ||
2023-08-30 | Use `min_bounds` for cached text | 1 | -4/+4 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -275/+30 | ||
2023-08-18 | Make the style attribute available on Font | 1 | -1/+10 | ||
2023-07-12 | Fix import consistency for `bytemuck` | 1 | -3/+2 | ||
2023-07-12 | Upgrade resvg to 0.34 and tiny_skia to 0.10 | 1 | -16/+19 | ||
2023-06-28 | Retain text measurements as long as original entries | 1 | -16/+18 | ||
2023-06-28 | Retain measurements for text entries even if not directly used | 1 | -2/+4 | ||
2023-06-28 | Fix needless borrow in `iced_wgpu` and `iced_tiny_skia` | 1 | -1/+1 | ||
2023-06-28 | Reuse entries in `text::Cache` in `iced_tiny_skia` | 1 | -38/+64 | ||
2023-06-28 | Reuse entries in `text::Cache` in `iced_wgpu` | 1 | -2/+2 | ||
2023-06-22 | Provide access to font from each crate | 1 | -2/+1 | ||
2023-06-21 | Clear text caches after a font is loaded | 1 | -0/+2 | ||
2023-06-20 | Use subpixel glyph positioning and layout linearity | 1 | -31/+18 | ||
... for offsetting and scaling text | |||||
2023-05-08 | Round paragraph position until we implement subpixel glyph positioning | 1 | -3/+6 | ||
2023-05-04 | Support configurable `LineHeight` in text widgets | 1 | -4/+24 | ||
2023-05-02 | Update `glyphon` and `cosmic-text` | 1 | -1/+8 | ||
2023-05-02 | Introduce `text::Shaping` enum and replace magic boolean | 1 | -9/+9 | ||
2023-05-02 | Make basic text shaping the default shaping strategy | 1 | -0/+8 | ||
2023-04-26 | Update `tiny-skia` and `resvg` | 1 | -1/+1 | ||
2023-04-08 | Update `wgpu` and `cosmic-text` | 1 | -8/+1 | ||
2023-04-05 | Group damage regions by area increase | 1 | -3/+13 | ||
2023-03-30 | Introduce `font::Stretch` | 1 | -0/+15 | ||
2023-03-30 | Introduce support for `Font` attributes | 1 | -11/+33 | ||
2023-03-19 | Update `cosmic-text` to latest :tada: | 1 | -159/+121 | ||
2023-03-17 | Trim text `Buffer` cache every frame in `iced_wgpu` and `iced_tiny_skia` | 1 | -14/+6 | ||
2023-03-07 | Use `ceil` to avoid cut text in `iced_tiny_skia` | 1 | -1/+6 | ||
This won't be necessary once we reuse the buffers from layouting by leveraging layout linearity. | |||||
2023-03-07 | Implement `vector` pipeline in `iced_tiny_skia` | 1 | -1/+1 | ||
2023-03-05 | Rename `iced_native` to `iced_runtime` | 1 | -1/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -6/+5 | ||
2023-02-28 | Use `get_image_uncached` in `iced_tiny_skia` | 1 | -1/+1 | ||
... since we are not reusing the `SwashCache` |