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