summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use `LineHeight::default` in `iced_wgpu::layer`Libravatar Héctor Ramón Jiménez2023-05-081-1/+1
|
* Merge pull request #1828 from iced-rs/feature/line-heightLibravatar Héctor Ramón2023-05-0524-42/+337
|\ | | | | Support configurable `LineHeight` in text widgets
| * Support configurable `LineHeight` in text widgetsLibravatar Héctor Ramón Jiménez2023-05-0424-42/+337
|/
* Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-05-0212-70/+173
|\
| * Merge pull request #1815 from kr105/masterLibravatar Héctor Ramón2023-04-281-1/+1
| |\ | | | | | | Fix broken issue link in `ROADMAP.md`
| | * Fix small typo on `ROADMAP.md`Libravatar Carlos Pizarro2023-04-281-1/+1
| |/ | | | | | | Link works properly now
| * Merge pull request #1807 from Davidster/wgpu_16_w_glypth_20Libravatar Héctor Ramón2023-04-214-11/+6
| |\ | | | | | | Wgpu 0.16
| | * Use `find(..)` instead of `filter(..).next()`Libravatar Héctor Ramón Jiménez2023-04-212-4/+2
| | |
| | * Use point-free notationLibravatar Héctor Ramón Jiménez2023-04-212-2/+2
| | |
| | * remove unused importLibravatar David Huculak2023-04-201-2/+0
| | |
| | * wgpu 0.16Libravatar David Huculak2023-04-204-7/+6
| | |
| * | Merge pull request #1799 from tarkah/fix/responsive-layoutLibravatar Héctor Ramón2023-04-211-21/+33
| |\ \ | | |/ | |/| Invalidate responsive layout when shell layout is invalidated
| | * Avoid cloning `layout::Node` in `Responsive` widgetLibravatar Héctor Ramón Jiménez2023-04-211-11/+13
| | |
| | * Update lazy/src/responsive.rsLibravatar Cory Forsstrom2023-04-171-1/+1
| | | | | | | | | Co-authored-by: Héctor Ramón <hector0193@gmail.com>
| | * Only invalidate layout if children layout is invalidLibravatar Cory Forsstrom2023-04-171-5/+14
| | |
| | * Invalidate responsive layout when layout is calledLibravatar Cory Forsstrom2023-04-171-25/+26
| | |
| * | Merge pull request #1804 from tarkah/fix/scroll-to-importsLibravatar Héctor Ramón2023-04-212-2/+11
| |\ \ | | | | | | | | Export scroll_to helper
| | * | Export scroll_to helperLibravatar Cory Forsstrom2023-04-202-2/+11
| |/ /
| * | Merge pull request #1796 from tarkah/feat/scrollable-scroll-toLibravatar Héctor Ramón2023-04-204-33/+116
| |\ \ | | | | | | | | Add `scroll_to` operation
| | * | Compare absolute offsets as well in `notify_on_scroll`Libravatar Héctor Ramón Jiménez2023-04-201-3/+10
| | | |
| | * | Add scrollable `Viewport`Libravatar Cory Forsstrom2023-04-174-52/+61
| | | |
| | * | Add `scroll_to` operation for absolute scrollLibravatar Cory Forsstrom2023-04-144-23/+90
| | |/
| * | Bump version of `iced_native` :tada:Libravatar Héctor Ramón Jiménez2023-04-201-1/+1
| | |
| * | Merge pull request #1802 from casperstorm/fix/text_input_icon_misalignmentLibravatar Héctor Ramón2023-04-201-2/+5
| |\ \ | | | | | | | | Center `TextInput::Icon` vertically
| | * | Centered icon verticallyLibravatar Casper Rogild Storm2023-04-201-2/+5
| | |/
| * | Bump version of `iced_native` :tada:Libravatar Héctor Ramón Jiménez2023-04-201-1/+1
| | |
| * | Fix sliders drawing out of their boundsLibravatar Héctor Ramón Jiménez2023-04-202-4/+4
| |/
* | Merge pull request #1822 from iced-rs/basic-shapingLibravatar Héctor Ramón2023-05-0228-33/+249
|\ \ | | | | | | `text::Shaping` strategy selection
| * | Update `glyphon` and `cosmic-text`Libravatar Héctor Ramón Jiménez2023-05-025-5/+20
| | |
| * | Introduce `text::Shaping` enum and replace magic booleanLibravatar Héctor Ramón Jiménez2023-05-0225-132/+203
| | |
| * | Make basic text shaping the default shaping strategyLibravatar Héctor Ramón Jiménez2023-05-0224-10/+140
|/ /
* | Merge pull request #1814 from ids1024/advanced-textLibravatar Héctor Ramón2023-04-282-23/+3
|\ \ | | | | | | Do not require `Copy` for text `StyleSheet::Style`
| * | Do not require `Copy` for text `StyleSheet::Style`Libravatar Ian Douglas Scott2023-04-282-23/+3
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For most widgets, `Style` only requires `Default`. A few require `Clone`. Only this one requires `Copy`. Some of the types in the default theme has a custom variant requiring `Box<dyn Trait>`, or `Rc<dyn Trait>` to provide `Clone`, but this isn't possible if `Copy` is required. It would be good to also address the inconsistency of requiring `Clone` in some places and not others. This removes `style/src/text.rs` which is unused in this branch and thus confusing. If there's a reason to keep it, that can be removed from the change.
* | Merge pull request #1811 from iced-rs/incremental-renderingLibravatar Héctor Ramón2023-04-2723-269/+640
|\ \ | | | | | | Incremental rendering
| * | Remove unnecessary `last_` prefix in `Surface` of `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-271-9/+9
| | |
| * | Invalidate `last_primitives` on resize in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-271-10/+12
| | |
| * | Expand damage regions of `Clip` primitives a bitLibravatar Héctor Ramón Jiménez2023-04-272-3/+5
| | |
| * | Fix unused import in `triangle` pipeline for Wasm target in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-04-271-1/+4
| | |
| * | Fix build of `integration` example for Wasm targetLibravatar Héctor Ramón Jiménez2023-04-271-1/+2
| | |
| * | Fix double reference in `compositor` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-271-1/+1
| | |
| * | Move damage tracking logic to `compositor` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-275-182/+183
| | |
| * | Fix incorrect `wgpu` version for Wasm builds in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-04-261-1/+1
| | |
| * | Update `tiny-skia` and `resvg`Libravatar Héctor Ramón Jiménez2023-04-2611-42/+37
| | |
| * | Fix `Candidate::build` in `compositor` of `iced_renderer`Libravatar Héctor Ramón Jiménez2023-04-261-36/+39
| | |
| * | Remove `debug` overlay from `iced_tiny_skia` for nowLibravatar Héctor Ramón Jiménez2023-04-261-38/+0
| | |
| * | Remove `dbg!` statement leftoverLibravatar Héctor Ramón Jiménez2023-04-261-1/+1
| | |
| * | Revert "Use `pixels` for presentation in `iced_tiny_skia` when possible"Libravatar Héctor Ramón Jiménez2023-04-262-69/+13
| | | | | | | | | | | | This reverts commit 16e6efe020e75d51958875fa198196534679af8d.
| * | Merge branch 'advanced-text' into incremental-renderingLibravatar Héctor Ramón Jiménez2023-04-1773-705/+1588
| |\ \ | |/ / |/| |
* | | Update `glyphon` to latest `dev`Libravatar Héctor Ramón Jiménez2023-04-171-1/+1
| | |
* | | Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-04-1773-705/+1588
|\ \ \ | | |/ | |/|