summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |\
| | * Bump version of `iced_lazy` :tada:Libravatar Héctor Ramón Jiménez2023-04-131-1/+1
| | |
| | * Merge pull request #1791 from tarkah/fix/component-operateLibravatar Héctor Ramón2023-04-131-0/+16
| | |\ | | | | | | | | Add missing operations for component
| | | * Add missing operations for componentLibravatar Cory Forsstrom2023-04-121-0/+16
| | | |
| | * | Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-04-1333-91/+145
| | | |
| | * | Add script to generate a release summaryLibravatar Héctor Ramón Jiménez2023-04-131-0/+52
| | |/ | | | | | | | | | Courtesy of GPT-4
| | * Merge pull request #1594 from mmstick/listenerLibravatar Héctor Ramón2023-04-134-0/+332
| | |\ | | | | | | | | `MouseArea` widget
| | | * Remove support for `on_mouse_enter` and `on_mouse_exit` in `MouseArea`Libravatar Héctor Ramón Jiménez2023-04-131-45/+3
| | | | | | | | | | | | | | | | | | | | These need continuity guarantees (e.g. mandatory widget id), which we don't have yet!
| | | * Fix documentation of `MouseArea::new`Libravatar Héctor Ramón Jiménez2023-04-131-1/+1
| | | |
| | | * Rename `MouseListener` to `MouseArea`Libravatar Héctor Ramón Jiménez2023-04-134-20/+20
| | | |
| | | * Avoid cloning messages unnecessarily in `MouseListener`Libravatar Héctor Ramón Jiménez2023-04-131-12/+12
| | | |
| | | * Avoid returning on mouse enter in `MouseListener`Libravatar Héctor Ramón Jiménez2023-04-131-14/+10
| | | | | | | | | | | | | | | | | | | | The event that triggers a mouse enter could be a mouse button press/release.
| | | * Ignore mouse movements events in `MouseListener`Libravatar Héctor Ramón Jiménez2023-04-131-2/+9
| | | | | | | | | | | | | | | | | | | | These should be ignored generally, since they are considered passive user actions.
| | | * Move `tag` and `state` definitions in `MouseListener`Libravatar Héctor Ramón Jiménez2023-04-131-8/+8
| | | |
| | | * Remove redundant comments in `MouseListener` fieldsLibravatar Héctor Ramón Jiménez2023-04-131-16/+0
| | | |
| | | * Delegate `layout` directly to `content` in `MouseListener`Libravatar Héctor Ramón Jiménez2023-04-131-48/+11
| | | |
| | | * feat(native): Add MouseListener widgetLibravatar Michael Aaron Murphy2023-04-134-0/+424
| | |/
| | * Merge pull request #1789 from ElhamAryanpur/masterLibravatar Héctor Ramón2023-04-136-20/+51
| | |\ | | | | | | | | Update `wgpu` to `0.15`
| | | * Fix Wasm target for `integration_wgpu`Libravatar Héctor Ramón Jiménez2023-04-131-1/+2
| | | |
| | | * Update `env_logger` in `integration_wgpu` exampleLibravatar Héctor Ramón Jiménez2023-04-131-1/+1
| | | |
| | | * Get surface capabilities only once in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-04-132-8/+8
| | | |
| | | * Update `wgpu` to `0.15`Libravatar Elham Aryanpur2023-04-135-20/+50
| | | |
| | * | Fix handle position of slidersLibravatar Héctor Ramón Jiménez2023-04-132-8/+8
| | | |
| | * | Remove `border_radius` support for `slider::Rail`Libravatar Héctor Ramón Jiménez2023-04-134-31/+4
| | | | | | | | | | | | | | | | | | | | Our current quad shader may produce weird-looking results with non-integral scaling factors.
| | * | Merge pull request #1749 from FinnPerry/fix/add-width-to-scrollableLibravatar Héctor Ramón2023-04-131-11/+11
| | |\ \ | | | | | | | | | | Configurable `width` for `Scrollable`
| | | * | Remove `max_width` and `max_height` calls in `scrollable::layout`Libravatar Héctor Ramón Jiménez2023-04-121-9/+1
| | | | |
| | | * | fix: add `width` to scrollablesLibravatar FinnPerry2023-03-081-2/+10
| | | | |
| | * | | Merge pull request #1788 from tarkah/optimization/scrollable-publishLibravatar Héctor Ramón2023-04-121-2/+20
| | |\ \ \ | | | |_|/ | | |/| | Don't publish redundant `on_scroll` offsets
| | | * | Include NaN in unchaged logicLibravatar Cory Forsstrom2023-04-121-1/+3
| | | | |
| | | * | Don't publish redundant on_scroll offsetsLibravatar Cory Forsstrom2023-04-121-2/+18
| | | | |
| | * | | Merge pull request #1777 from AirhartAero/linux-window-featuresLibravatar Héctor Ramón2023-04-121-0/+6
| | |\ \ \ | | | |/ / | | |/| | Re-expose winit features for window servers in Linux
| | | * | re-expose winit features for window servers in LinuxLibravatar Jacob Kiesel2023-03-311-0/+6
| | | | |
| | * | | add action set icon while running (#1590)Libravatar Night_Hunter2023-04-129-164/+178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * set windows icon live action * change get icon to insto raw * remove mobile docs * format * fix format * add file methods to Icon * Rename action to `ChangeIcon` and tidy up `Icon` modules * Fix documentation of `icon::Error` * Remove unnecessary `\` in `icon` documentation * Remove `etc.` from `Icon` documentation --------- Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com>
| | * | | Merge pull request #1762 from ahoneybun/radio-exampleLibravatar Héctor Ramón2023-04-122-6/+33
| | |\ \ \ | | | | | | | | | | | | Radio example
| | | * | | Move `radio` example to `Radio` docsLibravatar Héctor Ramón Jiménez2023-04-124-102/+33
| | | | | |
| | | * | | Now is a working exampleLibravatar Aaron Honeycutt2023-03-171-29/+36
| | | | | |
| | | * | | More work on exampleLibravatar Aaron Honeycutt2023-03-171-5/+5
| | | | | |
| | | * | | Working more on exampleLibravatar Aaron Honeycutt2023-03-141-10/+36
| | | | | |
| | | * | | Work on example moreLibravatar Aaron Honeycutt2023-03-141-12/+7
| | | | | |