Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove `Editor::min_bounds` and use `bounds` instead | 2023-09-14 | 1 | -1/+1 | |
| | |||||
* | Draft `Editor` API and `TextEditor` widget | 2023-09-12 | 2 | -0/+57 | |
| | |||||
* | Make `FontSystem` global and simplify `Paragraph` API | 2023-09-11 | 2 | -15/+11 | |
| | |||||
* | Merge branch 'master' into explicit-text-caching | 2023-09-10 | 7 | -41/+57 | |
|\ | |||||
| * | Deny `broken_intradoc_links` and verify documentation in CI | 2023-09-09 | 6 | -10/+24 | |
| | | |||||
| * | Merge pull request #2070 from ripytide/master | 2023-09-07 | 1 | -2/+10 | |
| |\ | | | | | | | Added a Frame::scale_nonuniform method | ||||
| | * | Make `scale` methods in `Frame` generic over `f32` and `Vector` | 2023-09-07 | 1 | -2/+6 | |
| | | | |||||
| | * | Implement `scale` in terms of `scale_nonuniform` | 2023-09-07 | 1 | -1/+1 | |
| | | | |||||
| | * | added a Frame::scale_nonuniform method | 2023-09-05 | 1 | -0/+4 | |
| | | | |||||
| * | | Merge pull request #2059 from joshuamegnauth54/ensure_nonzero_text_lineheight | 2023-09-07 | 1 | -1/+4 | |
| |\ \ | | | | | | | | | [issue #2002] Ensure that absolute `LineHeight` is always > 0.0 | ||||
| | * | | Use the correct text size and height in tiny_skia | 2023-09-05 | 1 | -2/+2 | |
| | | | | |||||
| | * | | Check LineHeight > 0.0 before allocating text | 2023-09-04 | 1 | -8/+5 | |
| | | | | |||||
| | * | | Ensure LineHeight is always > 0.0 for tiny skia. | 2023-09-04 | 1 | -4/+10 | |
| | |/ | |||||
| * / | Use workspace dependencies and package inheritance | 2023-09-04 | 1 | -30/+24 | |
| |/ | | | | | | | | | | | We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version. | ||||
* | | Invalidate existing paragraphs when new fonts are loaded | 2023-09-09 | 1 | -4/+1 | |
| | | |||||
* | | Remove unnecessary mutable reference in `iced_tiny_skia` | 2023-09-03 | 1 | -1/+1 | |
| | | |||||
* | | Implement `draw_paragraph` in `iced_tiny_skia` | 2023-09-03 | 2 | -56/+104 | |
| | | |||||
* | | Use `min_bounds` for cached text | 2023-08-30 | 1 | -4/+4 | |
| | | |||||
* | | Implement explicit text caching in the widget state tree | 2023-08-30 | 5 | -345/+86 | |
|/ | |||||
* | Run `cargo fmt` with Rust 1.72 | 2023-08-26 | 1 | -3/+9 | |
| | |||||
* | Make the style attribute available on Font | 2023-08-18 | 1 | -1/+10 | |
| | |||||
* | Bump versions :tada: | 2023-07-28 | 1 | -1/+8 | |
| | |||||
* | Update `cosmic-text` and `glyphon` | 2023-07-20 | 1 | -4/+1 | |
| | |||||
* | Update `resvg` dependency to `0.35` | 2023-07-12 | 1 | -1/+1 | |
| | |||||
* | Improve code style in `vector` modules | 2023-07-12 | 1 | -11/+12 | |
| | |||||
* | Fix import consistency for `bytemuck` | 2023-07-12 | 3 | -8/+6 | |
| | |||||
* | Upgrade resvg to 0.34 and tiny_skia to 0.10 | 2023-07-12 | 5 | -40/+63 | |
| | |||||
* | Decouple `Mesh` primitives from main `Primitive` type | 2023-06-29 | 1 | -8/+0 | |
| | |||||
* | Introduce custom backend-specific primitives | 2023-06-29 | 6 | -37/+101 | |
| | |||||
* | Retain text measurements as long as original entries | 2023-06-28 | 1 | -16/+18 | |
| | |||||
* | Retain measurements for text entries even if not directly used | 2023-06-28 | 1 | -2/+4 | |
| | |||||
* | Fix needless borrow in `iced_wgpu` and `iced_tiny_skia` | 2023-06-28 | 1 | -1/+1 | |
| | |||||
* | Reuse entries in `text::Cache` in `iced_tiny_skia` | 2023-06-28 | 1 | -38/+64 | |
| | |||||
* | Reuse entries in `text::Cache` in `iced_wgpu` | 2023-06-28 | 2 | -3/+3 | |
| | |||||
* | Merge pull request #1843 from wash2/fix-tiny-skia-quad | 2023-06-27 | 1 | -18/+126 | |
|\ | | | | | fix: quad rendering including border only inside of the bounds | ||||
| * | Fix import consistency in `iced_tiny_skia` | 2023-06-27 | 1 | -5/+3 | |
| | | |||||
| * | Draw border path for `quad` only if it has a border in `iced_tiny_skia` | 2023-06-27 | 1 | -105/+109 | |
| | | |||||
| * | fix: tiny-skia quad handle case where border_radius < border_width / 2.0 | 2023-05-11 | 1 | -7/+83 | |
| | | |||||
| * | fix: don't offset fill of quad | 2023-05-11 | 1 | -12/+4 | |
| | | |||||
| * | fix: quad rendering including border only inside of the bounds | 2023-05-10 | 1 | -4/+42 | |
| | | |||||
* | | Merge pull request #1845 from bungoboingo/feat/offscreen-rendering | 2023-06-27 | 1 | -3/+73 | |
|\ \ | | | | | | | Feat: Offscreen Rendering & Screenshots | ||||
| * | | Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵ | 2023-06-06 | 1 | -3/+73 | |
| | | | | | | | | | | | | window::screenshot command. | ||||
* | | | Merge pull request #1921 from iced-rs/subpixel-glyph-positioning | 2023-06-26 | 3 | -38/+21 | |
|\ \ \ | | | | | | | | | Subpixel glyph positioning and layout linearity | ||||
| * | | | Clear text caches after a font is loaded | 2023-06-21 | 1 | -0/+2 | |
| | | | | |||||
| * | | | Use subpixel glyph positioning and layout linearity | 2023-06-20 | 3 | -38/+19 | |
| | | | | | | | | | | | | | | | | ... for offsetting and scaling text | ||||
* | | | | Provide access to font from each crate | 2023-06-22 | 2 | -2/+1 | |
|/ / / | |||||
* / / | Update `glyphon` and `cosmic-text` | 2023-06-16 | 1 | -1/+1 | |
|/ / | |||||
* | | Merge pull request #1846 from bungoboingo/feat/background-gradients | 2023-05-19 | 2 | -17/+72 | |
|\ \ | | | | | | | [Feature] Gradients for Backgrounds | ||||
| * | | Fix needless borrow in `tiny_skia::backend` | 2023-05-19 | 1 | -1/+1 | |
| | | | |||||
| * | | Inline `into_gradient` in `tiny_skia::backend` | 2023-05-19 | 1 | -43/+41 | |
| | | | | | | | | | | | | ... since it's not really reused anywhere else. |