summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix various typosLibravatar bbb6512024-09-2911-16/+16
| | | | Using https://github.com/crate-ci/typos
* Document `File{Dropped,Hovered,HoveredLeft}` as unsupported on waylandLibravatar bbb6512024-09-291-0/+12
| | | | Blocked on https://github.com/rust-windowing/winit/issues/1881
* Add support for double click event to MouseArea (#2602)Libravatar 7sDream2024-09-241-4/+48
| | | | | | | | | * feat(widget/mouse_area): add double_click event * Run `cargo fmt` --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev>
* Merge pull request #2605 from Gobbel2000/frame_pasteLibravatar Héctor2024-09-242-0/+2
|\ | | | | Include images and saved meshes when pasting `Frame`
| * Include images and saved meshes when pasting `Frame`Libravatar Gabriel Vogel2024-09-242-0/+2
| | | | | | | | | | | | | | | | `tiny_skia::Frame` was ignoring images in `Frame::paste`, making images not show up when created in a `with_clip` context. `wgpu::Frame` similarly did not pass through meshes in its paste method, that may have been saved from a nested `with_clip` call.
* | Merge pull request #2601 from edwloef/masterLibravatar Héctor2024-09-241-0/+8
|\ \ | |/ |/| always increment solid/gradient count in wgpu mesh rendering
| * always increment solid/gradient count in wgpu mesh renderingLibravatar edwloef2024-09-221-0/+8
| |
* | Merge pull request #2598 from iced-rs/fix/shrink-cross-flex-layoutLibravatar Héctor2024-09-242-9/+44
|\ \ | |/ |/| Fix flex layout of `Fill` elements in a `Shrink` cross axis
| * Fix flex layout of `Fill` elements in a `Shrink` cross axisLibravatar Héctor Ramón Jiménez2024-09-212-9/+44
| | | | | | | | | | | | Instead of collapsing, the `Fill` elements will fill the cross space allocated by the other `Shrink` elements present in the container.
* | Merge pull request #2599 from iced-rs/replace-rc-with-arc-for-markdownLibravatar Héctor Ramón2024-09-211-3/+3
|\ \ | | | | | | Replace `Rc` with `Arc` for `markdown` caching
| * | Replace `Rc` with `Arc` for `markdown` cachingLibravatar Héctor Ramón Jiménez2024-09-211-3/+3
|/ /
* / Remove broken links to `ECOSYSTEM.md`Libravatar Héctor Ramón Jiménez2024-09-212-6/+1
|/
* Merge pull request #2596 from mtkennerly/bugfix/wrapped-row-with-spacingLibravatar Héctor Ramón2024-09-211-1/+1
|\ | | | | Fix layout for wrapped row with spacing
| * Fix layout for wrapped row with spacingLibravatar mtkennerly2024-09-201-1/+1
|/
* Merge pull request #2594 from tvolk131/fix_docsLibravatar Héctor Ramón2024-09-211-1/+1
|\ | | | | Fix documentation for open_events()
| * Fix documentation for open_events()Libravatar Tommy Volk2024-09-201-1/+1
|/
* Merge pull request #2593 from iced-rs/fix/slow-ci-docsLibravatar Héctor Ramón2024-09-203-2/+4
|\ | | | | Move `wgpu` re-export to root module
| * Move `wgpu` re-export to root moduleLibravatar Héctor Ramón Jiménez2024-09-203-2/+4
|/ | | | | This seems to fix a `cargo doc` performance issue; and it makes more sense anyways.
* Merge pull request #2592 from iced-rs/fix/color-macroLibravatar Héctor Ramón2024-09-201-20/+8
|\ | | | | Drop short-hand notation support for `color!` macro
| * Drop short-hand notation support for `color!` macroLibravatar Héctor Ramón Jiménez2024-09-201-20/+8
|/ | | | | | We'd need to use `stringify!` and `str::len` to properly support the short-hand notation; however, we want the macro to work in `const` contexts.
* Merge pull request #2510 from iced-rs/wgpu-22.0Libravatar Héctor Ramón2024-09-2014-2/+63
|\ | | | | Update `wgpu` to `22.0`
| * Introduce `strict-assertions` feature flagLibravatar Héctor Ramón Jiménez2024-09-204-0/+9
| | | | | | | | | | | | For now, this feature flag only enables validation in `iced_wgpu`; which has become quite expensive since its `0.20` release.
| * Update `wgpu` to `22.0`Libravatar Héctor Ramón Jiménez2024-09-2012-2/+16
| |
| * Update `wgpu` to `0.20.1`Libravatar Héctor Ramón Jiménez2024-09-209-2/+40
|/
* Bump version to `0.14.0-dev` :tada:Libravatar Héctor Ramón Jiménez2024-09-191-12/+12
|
* Merge pull request #2588 from iced-rs/must-use-taskLibravatar Héctor Ramón2024-09-192-1/+2
|\ | | | | Add `must_use` attribute to `Task`
| * Add `must_use` attribute to `Task`Libravatar Héctor Ramón Jiménez2024-09-192-1/+2
|/
* Bump version to `0.13.1` :tada:Libravatar Héctor Ramón Jiménez2024-09-192-13/+31
|
* Merge pull request #2586 from lufte/masterLibravatar Héctor Ramón2024-09-191-2/+2
|\ | | | | Set the text color determined by the style function
| * Set the text color determined by the style functionLibravatar lufte2024-09-181-2/+2
| | | | | | | | Fixes: https://github.com/iced-rs/iced/issues/2557
* | Merge pull request #2587 from iced-rs/improve-api-referenceLibravatar Héctor Ramón2024-09-1932-319/+2339
|\ \ | | | | | | Add widget examples to API reference and update `README`
| * | Write doc examples for `column` and `row`Libravatar Héctor Ramón Jiménez2024-09-193-4/+122
| | |
| * | Write doc examples for `rich_text` widgetLibravatar Héctor Ramón Jiménez2024-09-191-0/+78
| | |
| * | Show `tooltip` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-3/+68
| | |
| * | Show `toggler` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-9/+86
| | |
| * | Show `text_input` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-13/+84
| | |
| * | Show `text_editor` example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-2/+98
| | |
| * | Show `text` doc examples in multiple placesLibravatar Héctor Ramón Jiménez2024-09-193-16/+98
| | |
| * | Show `svg` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-1/+51
| | |
| * | Show `slider` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-193-18/+162
| | |
| * | Show `scrollable` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-2/+62
| | |
| * | Show `rule` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-3/+67
| | |
| * | Show `radio` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-38/+157
| | |
| * | Show `qr_code` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-1/+66
| | |
| * | Show `progress_bar` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-7/+56
| | |
| * | Show `pick_list` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-2/+185
| | |
| * | Show `pane_grid` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-14/+117
| | |
| * | Show `markdown` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-191-1/+130
| | |
| * | Show `keyed_column` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-193-8/+68
| | |
| * | Show `image` doc example in multiple placesLibravatar Héctor Ramón Jiménez2024-09-192-7/+50
| | |