Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-01-10 | Fix text wrapping for `rich_text` | 1 | -0/+2 | ||
2025-01-07 | Apply wrapping to paragraphs | 1 | -0/+2 | ||
2024-09-04 | Add `text::Wrapping` support | 1 | -1/+6 | ||
Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com> | |||||
2024-07-28 | Use `for` loop instead of `fold` in `span_bounds` | 1 | -29/+29 | ||
2024-07-28 | Add background styling to span / rich text | 1 | -1/+52 | ||
2024-07-21 | Simplify font attributes in `Paragraph::with_spans` | 1 | -9/+1 | ||
2024-07-21 | Add `Link` support to `rich_text` widget | 1 | -7/+35 | ||
2024-07-17 | Implement `rich_text` widget and `markdown` example | 1 | -2/+78 | ||
2024-07-17 | Decouple caching from `Paragraph` API | 1 | -58/+24 | ||
2024-07-17 | Update `cosmic-text` and `resvg` (#2416) | 1 | -4/+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-04-01 | Use generic `Content` in `Text` to avoid reallocation in `fill_text` | 1 | -2/+2 | ||
2024-01-11 | Avoid division by zero in `grapheme_position` | 1 | -1/+1 | ||
2024-01-11 | Fix `grapheme_position` when ligatures are present | 1 | -10/+15 | ||
2023-10-27 | Fix intra-doc broken links | 1 | -1/+1 | ||
2023-10-27 | Write documentation for the new text APIs | 1 | -0/+14 | ||
2023-09-11 | Make `FontSystem` global and simplify `Paragraph` API | 1 | -78/+69 | ||
2023-09-09 | Count grapheme clusters in `Paragraph::grapheme_position` | 1 | -2/+21 | ||
2023-09-09 | Invalidate existing paragraphs when new fonts are loaded | 1 | -3/+12 | ||
2023-09-04 | Introduce `keyed::Column` widget | 1 | -0/+2 | ||
2023-09-01 | Fix `Default` implementation for `Paragraph` | 1 | -17/+23 | ||
2023-09-01 | Replace `MaybeUninit` with `Option` in `paragraph` | 1 | -44/+28 | ||
2023-09-01 | Use `Arc::try_unwrap` in `Paragraph` | 1 | -59/+95 | ||
We use `MaybeUninit` here instead of `Option` to save some cycles, but I will most likely change it for an `Option` since unsafe code is quite scary. | |||||
2023-09-01 | Remove `Clone` implementation for `Paragraph` | 1 | -1/+1 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -0/+246 | ||