summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Enable `animation` module for Wasm targetLibravatar Héctor Ramón Jiménez2025-01-293-12/+5
* Merge pull request #2758 from airstrike/mouse-transformationLibravatar Héctor2025-01-282-2/+32
|\
| * Move cursor `Transformation` to `mouse::cursor` moduleLibravatar Andy Terra2025-01-282-15/+16
| * Implement `Mul<Transformation>` for `mouse::Click`Libravatar Andy Terra2025-01-271-1/+16
| * Implement `Mul<Transformation>` for `mouse::Cursor`Libravatar Andy Terra2025-01-271-0/+14
* | Merge pull request #2761 from rhysd/replace-directories-nextLibravatar Héctor2025-01-283-40/+66
|\ \
| * | Replace unmaintained `directories-next` crate with `directories` crateLibravatar rhysd2025-01-293-40/+66
* | | Merge pull request #2760 from rhysd/remove-winapiLibravatar Héctor2025-01-283-5/+0
|\ \ \ | |/ / |/| |
| * | Remove unused `winapi` crate from dependenciesLibravatar rhysd2025-01-283-5/+0
|/ /
* | Merge pull request #2759 from iced-rs/fix/respect-editor-line-endingsLibravatar Héctor2025-01-285-60/+93
|\ \ | |/ |/|
| * Introduce `LineEnding` to `editor` and fix inconsistenciesLibravatar Héctor Ramón Jiménez2025-01-285-60/+93
|/
* Merge pull request #2757 from iced-rs/feature/animation-apiLibravatar Héctor2025-01-2812-121/+883
|\
| * Display grid placeholder when loading `gallery` exampleLibravatar Héctor Ramón Jiménez2025-01-282-6/+23
| * Add `repeat`, `repeat_forever`, and `auto_reverse` to `Animation`Libravatar Héctor Ramón Jiménez2025-01-281-0/+20
| * Rename `Animation::in_progress` to `is_animating`Libravatar Héctor Ramón Jiménez2025-01-282-27/+30
| * Remove unnecessary `endpoint` function in `gallery` exampleLibravatar Héctor Ramón Jiménez2025-01-271-7/+1
| * Change `period` to `Week` in `gallery` exampleLibravatar Héctor Ramón Jiménez2025-01-271-1/+1
| * Make `animation` module only available in nativeLibravatar Héctor Ramón Jiménez2025-01-272-4/+11
| * Fix broken intra-doc link in `animation`Libravatar Héctor Ramón Jiménez2025-01-271-0/+2
| * Implement AI `gallery` example :tada:Libravatar Héctor Ramón Jiménez2025-01-278-121/+714
| * Implement `Animation::value`Libravatar Héctor Ramón Jiménez2025-01-271-0/+5
| * Draft basic `Animation` API in `iced_core`Libravatar Héctor Ramón Jiménez2025-01-276-3/+124
|/
* Merge pull request #2749 from rhysd/const-from-rgb8Libravatar Héctor2025-01-276-93/+28
|\
| * Use `color!` macro in `Palette` definitionsLibravatar Héctor Ramón Jiménez2025-01-271-9/+9
| * Make all `Color` constructors `const` :tada:Libravatar Héctor Ramón Jiménez2025-01-273-44/+15
| * Bump MSRV to `1.82`Libravatar Héctor Ramón Jiménez2025-01-272-2/+2
| * Make `Color::from_rgb8` and `Color::from_rgba8` constLibravatar rhysd2025-01-252-50/+14
* | Merge pull request #2755 from iced-rs/feature/image-scaleLibravatar Héctor2025-01-271-2/+15
|\ \
| * | Implement `scale` support for `image` widgetLibravatar Héctor Ramón Jiménez2025-01-271-2/+15
|/ /
* | Fix `update` passing wrong `Tree` to content in `pop` widgetLibravatar Héctor Ramón Jiménez2025-01-261-1/+8
* | Merge pull request #2741 from edwloef/click-kind-deriveLibravatar Héctor2025-01-262-2/+2
|\ \
| * | derive partialeq and eq for mouse::click::KindLibravatar edwloef2025-01-222-2/+2
* | | Merge pull request #2751 from iced-rs/feature/pop-widgetLibravatar Héctor2025-01-264-1/+264
|\ \ \
| * | | Implement `pop` widget :tada:Libravatar Héctor Ramón Jiménez2025-01-264-1/+264
* | | | Merge pull request #2752 from iced-rs/fix/image-viewportLibravatar Héctor2025-01-261-2/+6
|\ \ \ \ | |/ / / |/| | |
| * | | Fix `Image` not respecting `viewport` boundsLibravatar Héctor Ramón Jiménez2025-01-261-2/+6
|/ / /
* | | Avoid preparing layers outside physical bounds in `iced_wgpu`Libravatar Héctor Ramón Jiménez2025-01-263-33/+13
* | | Merge pull request #2701 from edwloef/2700-fixLibravatar Héctor2025-01-263-5/+34
|\ \ \ | |_|/ |/| |
| * | Delegate `layer_count` logic to primitive pipelinesLibravatar Héctor Ramón Jiménez2025-01-263-12/+17
| * | always increment quad, mesh, text and image layer counts in wgpu layer renderingLibravatar edwloef2024-12-191-5/+29
* | | Merge pull request #2748 from iced-rs/vertical-progress-barLibravatar Héctor2025-01-243-43/+132
|\ \ \
| * | | Add `warning` style for `progress_bar`Libravatar Héctor Ramón Jiménez2025-01-241-0/+7
| * | | Fix missing reactive rendering logic for `vertical_slider`Libravatar Héctor Ramón Jiménez2025-01-241-15/+24
| * | | Implement support for vertical `ProgressBar`Libravatar Héctor Ramón Jiménez2025-01-242-28/+101
|/ / /
* | | Merge pull request #2747 from iced-rs/time-repeat-subscriptionLibravatar Héctor2025-01-2411-61/+88
|\ \ \
| * | | Add `Duration` helpers to `time` moduleLibravatar Héctor Ramón Jiménez2025-01-248-19/+40
| * | | Implement `time::repeat` and simplify `Subscription::run_with`Libravatar Héctor Ramón Jiménez2025-01-243-42/+48
| | |/ | |/|
* | | Merge pull request #2746 from iced-rs/alignment-helpersLibravatar Héctor2025-01-2412-64/+208
|\ \ \ | |/ / |/| |
| * | Add helper functions for alignment to `widget` moduleLibravatar Héctor Ramón Jiménez2025-01-2412-64/+208
|/ /
* | Merge pull request #2737 from iced-rs/update-winit-0.30.8Libravatar Héctor2025-01-202-164/+88
|\ \