summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * | Remove commented code in `tiny_skia::layer`Libravatar Héctor Ramón Jiménez2024-05-021-16/+0
| * | Create `ferris` example to showcase `ContentFit` and `Rotation`Libravatar Héctor Ramón Jiménez2024-05-025-1/+234
| * | Rename `global_scale` to `scale` in `wgpu::image`Libravatar Héctor Ramón Jiménez2024-05-021-9/+3
| * | Simplify image rotation API and its internalsLibravatar Héctor Ramón Jiménez2024-05-0223-224/+218
| * | Add `Image` rotation supportLibravatar Héctor Ramón Jiménez2024-05-0219-84/+374
* | | Merge pull request #2420 from myuujiku/masterLibravatar Héctor Ramón2024-05-031-1/+1
|\ \ \ | |/ / |/| |
| * | Apply bounds check when grabbing `image::Viewer`Libravatar myuujiku2024-05-021-1/+1
|/ /
* | Fix `clippy` lints for new `1.78` stable toolchainLibravatar Héctor Ramón Jiménez2024-05-023-3/+3
* | Fix panic in `wgpu::color::convert`Libravatar Héctor Ramón Jiménez2024-05-021-18/+50
* | Merge pull request #2412 from JL710/patch-1Libravatar Héctor Ramón2024-05-021-0/+1
|\ \
| * | add missing derive(Debug) in lib.rs docsLibravatar JL7102024-04-301-0/+1
* | | Introduce `layered_text` benchmarksLibravatar Héctor Ramón Jiménez2024-05-011-42/+56
* | | Merge pull request #2356 from Bajix/feature/bytesLibravatar Héctor Ramón2024-05-0112-158/+152
|\ \ \
| * | | Fix documentation link in `image::Handle`Libravatar Héctor Ramón Jiménez2024-05-011-1/+1
| * | | Make `image::Id` actually opaqueLibravatar Héctor Ramón Jiménez2024-05-013-24/+40
| * | | Use an opaque `Id` type for `image::Handle`Libravatar Héctor Ramón Jiménez2024-05-016-36/+59
| * | | Fix `clippy` lint in `runtime::window::screenshot`Libravatar Héctor Ramón Jiménez2024-05-011-3/+3
| * | | Use `Bytes` as the `Container` of `ImageBuffer`Libravatar Héctor Ramón Jiménez2024-05-015-77/+73
| * | | Utilize bytes::Bytes iced_runtime::window::ScreenshotLibravatar Thomas Sieverding2024-05-012-5/+12
| * | | Utilize bytes::Bytes for imagesLibravatar Bajix2024-05-013-56/+8
|/ / /
* | | Merge pull request #2415 from iced-rs/feature/canvas-cache-groupsLibravatar Héctor Ramón2024-05-0115-148/+398
|\ \ \ | |/ / |/| |
| * | Enable logging in `clock` exampleLibravatar Héctor Ramón Jiménez2024-04-302-0/+3
| * | Keep text atlases alive during temporary empty uploadsLibravatar Héctor Ramón Jiménez2024-04-301-32/+44
| * | Fix cache trimming loop in `iced_wgpu::text`Libravatar Héctor Ramón Jiménez2024-04-302-9/+52
| * | Invalidate text uploads after atlas trimmingLibravatar Héctor Ramón Jiménez2024-04-304-12/+29
| * | Fix `clippy` lint in `the_matrix` exampleLibravatar Héctor Ramón Jiménez2024-04-301-6/+1
| * | Use shared `Cache` group in `the_matrix` exampleLibravatar Héctor Ramón Jiménez2024-04-301-15/+17
| * | Introduce `canvas::Cache` groupingLibravatar Héctor Ramón Jiménez2024-04-3010-101/+279
|/ /
* | Fix `text` and `triangle` uploads being dropped on `canvas` cache clearsLibravatar Héctor Ramón Jiménez2024-04-302-0/+2
* | Merge pull request #2409 from iced-rs/rc-cache-evictionLibravatar Héctor Ramón2024-04-284-14/+140
|\ \
| * | Create `the_matrix` exampleLibravatar Héctor Ramón Jiménez2024-04-272-0/+128
| * | Retain caches in `iced_wgpu` as long as `Rc` values are aliveLibravatar Héctor Ramón Jiménez2024-04-272-14/+12
|/ /
* | Merge pull request #2408 from iced-rs/feature/hover-widgetLibravatar Héctor Ramón2024-04-272-12/+259
|\ \
| * | Propagate mouse movement and button releases unconditionally in `hover`Libravatar Héctor Ramón Jiménez2024-04-271-1/+8
| * | Fix top layer clipping in `hover` widgetLibravatar Héctor Ramón Jiménez2024-04-271-21/+24
| * | Fix ambiguous link in documentation of `hover` helperLibravatar Héctor Ramón Jiménez2024-04-271-0/+2
| * | Fix `overlay` behavior in `hover` widgetLibravatar Héctor Ramón Jiménez2024-04-271-11/+14
| * | Use `hover` widget in `bezier_tool` exampleLibravatar Héctor Ramón Jiménez2024-04-271-11/+15
| * | Introduce `hover` widgetLibravatar Héctor Ramón Jiménez2024-04-271-1/+229
* | | Set proper size boundaries for `limits` in `Stack::layout`Libravatar Héctor Ramón Jiménez2024-04-271-1/+2
* | | Respect `width` and `height` properties when `Stack` is emptyLibravatar Héctor Ramón Jiménez2024-04-271-1/+5
|/ /
* | Merge pull request #2407 from iced-rs/fix/text-editor-quirksLibravatar Héctor Ramón2024-04-262-17/+25
|\ \
| * | Fix out of bounds caret in `TextEditor` in some circumstancesLibravatar Héctor Ramón Jiménez2024-04-261-13/+17
| * | Fix panic when scrolling a `TextEditor` inside a `scrollable`Libravatar Héctor Ramón Jiménez2024-04-261-4/+8
|/ /
* | Merge pull request #2406 from iced-rs/fix/scrollbar-priorityLibravatar Héctor Ramón2024-04-261-143/+145
|\ \
| * | Fix `Shift` scrolling for `scrollable` on macOSLibravatar Héctor Ramón Jiménez2024-04-261-1/+3
| * | Capture scrollbar events in a `scrollable` before content eventsLibravatar Héctor Ramón Jiménez2024-04-261-142/+142
|/ /
* | Merge pull request #2405 from iced-rs/feature/stack-widgetLibravatar Héctor Ramón2024-04-2517-359/+609
|\ \
| * | Simplify `modal` example :tada:Libravatar Héctor Ramón Jiménez2024-04-251-328/+35
| * | Introduce `opaque` widget helperLibravatar Héctor Ramón Jiménez2024-04-2513-12/+182