Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Check LineHeight > 0.0 before allocating text | 2023-09-04 | 1 | -7/+7 | |
| | |||||
* | Ensure LineHeight > 0.0 for the WGPU renderer | 2023-09-04 | 1 | -3/+6 | |
| | |||||
* | Make the style attribute available on Font | 2023-08-18 | 1 | -1/+10 | |
| | |||||
* | Update `cosmic-text` and `glyphon` | 2023-07-20 | 1 | -16/+6 | |
| | |||||
* | Trim text measurements only before `layout` | 2023-06-29 | 1 | -28/+17 | |
| | |||||
* | Introduce `Mode` for `text::Cache` and trim only when switching modes | 2023-06-29 | 1 | -18/+64 | |
| | |||||
* | Retain text measurements as long as original entries | 2023-06-28 | 1 | -17/+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 | -7/+10 | |
| | |||||
* | Reuse entries in `text::Cache` in `iced_wgpu` | 2023-06-28 | 1 | -28/+53 | |
| | |||||
* | Clear text caches after a font is loaded | 2023-06-21 | 1 | -0/+2 | |
| | |||||
* | Use subpixel glyph positioning and layout linearity | 2023-06-20 | 1 | -25/+18 | |
| | | | | ... for offsetting and scaling text | ||||
* | Update `glyphon` and `cosmic-text` | 2023-06-16 | 1 | -18/+13 | |
| | |||||
* | Use consistent color strategy in `glyphon` | 2023-06-01 | 1 | -1/+10 | |
| | |||||
* | Introduce `web-colors` feature flag to enable sRGB linear blending | 2023-05-31 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | This is how browsers perform color management. They treat gamma-corrected sRGB colors as if they were linear RGB. Correctness aside, this mode is introduced for legacy reasons. Most UI/UX tooling uses this color management as well, and many have created an intuition about how color should behave from interacting with a browser. This feature flag should facilitate application development with `iced` in those cases. More details: https://webcolorisstillbroken.com/ | ||||
* | Clip text that exceeds section bounds in `iced_wgpu` | 2023-05-08 | 1 | -56/+68 | |
| | |||||
* | Round paragraph position until we implement subpixel glyph positioning | 2023-05-08 | 1 | -2/+6 | |
| | |||||
* | Support configurable `LineHeight` in text widgets | 2023-05-04 | 1 | -6/+22 | |
| | |||||
* | Update `glyphon` and `cosmic-text` | 2023-05-02 | 1 | -1/+8 | |
| | |||||
* | Introduce `text::Shaping` enum and replace magic boolean | 2023-05-02 | 1 | -8/+8 | |
| | |||||
* | Make basic text shaping the default shaping strategy | 2023-05-02 | 1 | -0/+7 | |
| | |||||
* | Update `wgpu` and `cosmic-text` | 2023-04-08 | 1 | -10/+7 | |
| | |||||
* | Introduce `font::Stretch` | 2023-03-30 | 1 | -0/+15 | |
| | |||||
* | Introduce support for `Font` attributes | 2023-03-30 | 1 | -11/+33 | |
| | |||||
* | Update `cosmic-text` to latest :tada: | 2023-03-19 | 1 | -207/+165 | |
| | |||||
* | Trim text `Buffer` cache every frame in `iced_wgpu` and `iced_tiny_skia` | 2023-03-17 | 1 | -13/+3 | |
| | |||||
* | Merge branch 'advanced-text' into feature/software-renderer | 2023-03-04 | 1 | -17/+11 | |
|\ | |||||
| * | Reuse text buffers independently of color in `iced_wgpu` | 2023-02-27 | 1 | -17/+11 | |
| | | |||||
* | | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -8/+6 | |
| | | |||||
* | | Implement `Canvas` support for `iced_tiny_skia` | 2023-03-01 | 1 | -1/+2 | |
|/ | |||||
* | Trim `Cache` every 300 frames in `text::Pipeline` | 2023-02-24 | 1 | -3/+13 | |
| | |||||
* | Collapse conditional and please `clippy` | 2023-02-24 | 1 | -0/+1 | |
| | |||||
* | Grow atlas in `text::Pipeline` when necessary | 2023-02-24 | 1 | -18/+36 | |
| | |||||
* | Set scissoring properly in `text::Pipeline` | 2023-02-24 | 1 | -0/+8 | |
| | |||||
* | Reuse a `RenderPass` as much as possible in `iced_wgpu` | 2023-02-24 | 1 | -27/+13 | |
| | |||||
* | Apply `ceil` to text bounds when drawing | 2023-02-24 | 1 | -2/+4 | |
| | |||||
* | Set `Attrs::monospaced` if `Font::Monospace` is selected | 2023-02-24 | 1 | -10/+13 | |
| | |||||
* | Set a minimum `height` for `Buffer` of `size * 1.2` | 2023-02-24 | 1 | -1/+4 | |
| | | | | | This avoids text from misteriously disappearing, even if the user uses a `height` that isn't enough to fit the text. | ||||
* | Stop truncating the `renderers` in `text::Pipeline` | 2023-02-24 | 1 | -1/+0 | |
| | | | | | We avoid recreating buffers this way, and the amount of layers should stay relatively low anyways. | ||||
* | Avoid allocating `text_areas` in `text::Pipeline` | 2023-02-24 | 1 | -7/+4 | |
| | |||||
* | Stop reusing `SwashCache` in `text::Pipeline` | 2023-02-24 | 1 | -7/+1 | |
| | | | | | `SwashCache` can't be easily trimmed and it's not really getting us anything since `glyphon` already caches using a glyph atlas anyways. | ||||
* | Disable `std` feature for `twox-hash` to fix Wasm build | 2023-02-24 | 1 | -3/+8 | |
| | |||||
* | Fix `clippy` lints :tada: | 2023-02-24 | 1 | -6/+7 | |
| | |||||
* | Load `Iced-Icons.ttf` font in `text::Pipeline::new` | 2023-02-24 | 1 | -1/+7 | |
| | |||||
* | Use floating coordinates directly in `text::Pipeline` | 2023-02-24 | 1 | -7/+6 | |
| | |||||
* | Implement `font::load` command in `iced_native` | 2023-02-24 | 1 | -204/+266 | |
| | |||||
* | Overhaul `Font` type to allow font family selection | 2023-02-24 | 1 | -4/+6 | |
| | |||||
* | Count `layout_runs` instead of using `visible_lines` in ↵ | 2023-02-24 | 1 | -6/+7 | |
| | | | | `text::Pipeline::prepare` | ||||
* | Implement `hit_test` for `text::Pipeline` in `iced_wgpu` | 2023-02-24 | 1 | -6/+18 | |
| |