summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* | Merge pull request #1907 from alec-deason/masterLibravatar Héctor Ramón2023-07-127-51/+85
|\ \
| * | Update `resvg` dependency to `0.35`Libravatar Héctor Ramón Jiménez2023-07-122-2/+2
| * | Improve code style in `vector` modulesLibravatar Héctor Ramón Jiménez2023-07-122-22/+24
| * | Fix import consistency for `bytemuck`Libravatar Héctor Ramón Jiménez2023-07-123-8/+6
| * | Upgrade resvg to 0.34 and tiny_skia to 0.10Libravatar Alec Deason2023-07-127-51/+85
|/ /
* | Merge pull request #1692 from tarkah/fix/tooltip-overlayLibravatar Héctor Ramón2023-07-121-102/+167
|\ \
| * | Remove useless conversions in `widget::tooltip`Libravatar Héctor Ramón Jiménez2023-07-121-15/+17
| * | Use overlay for `Tooltip` widgetLibravatar Cory Forsstrom2023-07-121-97/+160
|/ /
* | Merge pull request #1949 from nicksenger/fix/component-overlay-redrawLibravatar Héctor Ramón2023-07-091-0/+4
|\ \
| * | fix: request redraw in component overlayLibravatar Nick Senger2023-07-091-0/+4
|/ /
* | Merge pull request #1865 from jhff/pane_grid_edge_with_dragged_paneLibravatar Héctor Ramón2023-07-065-113/+285
|\ \
| * | Remove useless conversion in `widget::pane_grid`Libravatar Héctor Ramón Jiménez2023-07-061-1/+1
| * | Introduce `drop` helper to `pane_grid::State`Libravatar Héctor Ramón Jiménez2023-07-062-32/+37
| * | Simplify `Target` enum in `widget::pane_grid`Libravatar Héctor Ramón Jiménez2023-07-062-18/+9
| * | Call `in_edge` only when `picked_pane.is_some()`Libravatar Héctor Ramón Jiménez2023-07-061-19/+21
| * | Reuse codeLibravatar Joao Freitas2023-07-061-35/+22
| * | Add ability to drag pane to the pane grid edges & optional style for dragged ...Libravatar Joao Freitas2023-07-065-104/+291
|/ /
* | Merge pull request #1927 from thunderstorm010/masterLibravatar Héctor Ramón2023-07-063-16/+31
|\ \ | |/ |/|
| * Add `fetch_size` helper to `runtime::window`Libravatar Héctor Ramón Jiménez2023-07-061-0/+7
| * Add missing newline in `core::window`Libravatar Héctor Ramón Jiménez2023-07-061-1/+1
| * Use `Size` in both `Resize` and `FetchSize` window actionsLibravatar Héctor Ramón Jiménez2023-07-063-18/+15
| * Add FetchSize command - apply the changes discussed at #water-coolerLibravatar Yiğit Özdemir2023-06-224-38/+7
| * Add command to retrieve window sizeLibravatar Yiğit Özdemir2023-06-214-0/+42
* | Merge pull request #1938 from iced-rs/text-cache-modesLibravatar Héctor Ramón2023-06-306-28/+99
|\ \
| * | Trim text measurements only before `layout`Libravatar Héctor Ramón Jiménez2023-06-294-28/+30
| * | Revert "Remove `layout` method from `core::Renderer` trait"Libravatar Héctor Ramón Jiménez2023-06-293-9/+32
| * | Introduce `Mode` for `text::Cache` and trim only when switching modesLibravatar Héctor Ramón Jiménez2023-06-291-18/+64
* | | Merge pull request #1913 from Drakulix/feature/runtime-state-operateLibravatar Héctor Ramón2023-06-291-0/+38
|\ \ \ | |/ / |/| |
| * | Keep imports consistent in `program::state`Libravatar Héctor Ramón Jiménez2023-06-291-4/+4
| * | Take `Box` instead of reference in `State::operate`Libravatar Héctor Ramón Jiménez2023-06-291-8/+8
| * | runtime: Add `operate` method to `program::State`Libravatar Victoria Brekenfeld2023-06-281-0/+38
* | | Add touch support for toggler. (#1935)Libravatar Austin M. Reppert2023-06-291-1/+3
* | | Merge pull request #1932 from iced-rs/generic-graphics-primitiveLibravatar Héctor Ramón2023-06-2935-480/+867
|\ \ \
| * | | Write missing docs in `iced_graphics` and `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-298-5/+17
| * | | Decouple `Mesh` primitives from main `Primitive` typeLibravatar Héctor Ramón Jiménez2023-06-2915-205/+248
| * | | Remove `layout` method from `core::Renderer` traitLibravatar Héctor Ramón Jiménez2023-06-293-32/+9
| * | | Introduce custom backend-specific primitivesLibravatar Héctor Ramón Jiménez2023-06-2928-263/+618
|/ / /
* | | Merge pull request #1934 from iced-rs/reuse-text-cache-entriesLibravatar Héctor Ramón2023-06-2810-83/+142
|\ \ \
| * | | Retain text measurements as long as original entriesLibravatar Héctor Ramón Jiménez2023-06-282-33/+36
| * | | Retain measurements for text entries even if not directly usedLibravatar Héctor Ramón Jiménez2023-06-282-4/+8
| * | | Fix needless borrow in `iced_wgpu` and `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-282-2/+2
| * | | Reuse entries in `text::Cache` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-282-45/+74
| * | | Reuse entries in `text::Cache` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-2810-46/+69
|/ / /
* | | Fix `loading_spinners` exampleLibravatar Héctor Ramón Jiménez2023-06-282-8/+10
* | | Merge pull request #1878 from AustinMReppert/masterLibravatar Héctor Ramón2023-06-272-76/+114
|\ \ \
| * | | Use `Option::filter` instead of `and_then` in `scrollable`Libravatar Héctor Ramón Jiménez2023-06-271-14/+6
| * | | Require a `Direction` when computing `State::offset` in `scrollable`Libravatar Héctor Ramón Jiménez2023-06-271-18/+23
| * | | Rename `ScrollbarProperties` to `Direction` in `scrollable`Libravatar Héctor Ramón Jiménez2023-06-272-70/+61
| * | | Make vertical scroll properties optionalLibravatar Austin M. Reppert2023-06-272-49/+99
* | | | Merge pull request #1902 from nicksenger/loading-spinnersLibravatar Héctor Ramón2023-06-276-0/+1019
|\ \ \ \ | |/ / / |/| | |