summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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 #2748 from iced-rs/vertical-progress-barLibravatar Héctor2025-01-243-43/+132
|\ | | | | Vertical support for `progress_bar`
| * 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
|/ | | | Co-authored-by: MG_REX <49415741+ThisIsRex@users.noreply.github.com>
* Merge pull request #2747 from iced-rs/time-repeat-subscriptionLibravatar Héctor2025-01-2411-61/+88
|\ | | | | Implement `time::repeat` and simplify `Subscription::run_with`
| * 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` module
| * 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
|\ | | | | Update our `winit` fork with `0.30.8` fixes
| * Update our `winit` fork with `0.30.8` fixesLibravatar Héctor Ramón Jiménez2025-01-202-164/+88
|/
* Merge pull request #2731 from will-lynas/remove-castLibravatar Héctor2025-01-161-1/+1
|\ | | | | Remove a cast
| * Remove a useless castLibravatar Will Lynas2025-01-161-1/+1
|/
* Merge pull request #2644 from kgday/masterLibravatar Héctor2025-01-161-4/+45
|\ | | | | Modified clock example to make the clock more readable.
| * Simplify tick drawing logic in `clock` exampleLibravatar Héctor Ramón Jiménez2025-01-161-3/+1
| |
| * Make numbers bigger and draw ticks in `clock` exampleLibravatar Héctor Ramón Jiménez2025-01-161-16/+35
| |
| * Modified clock example to make the clock more readable. Added numbers on ↵Libravatar Kevin Day2024-10-191-2/+26
| | | | | | | | the clock face and took the portion of the hour passed into consideration for the hour hand. It now looks like a reasonable clock.
* | Merge pull request #2642 from tsuza/masterLibravatar Héctor2025-01-165-3/+76
|\ \ | | | | | | feat: add a window drag resize task
| * | Fix broken doc link in `winit::conversion`Libravatar Héctor Ramón Jiménez2025-01-161-3/+1
| | |
| * | Use simple quote in `runtime::window` docsLibravatar Héctor Ramón Jiménez2025-01-161-2/+2
| | |
| * | feat: add a window drag resize taskLibravatar tsuza2025-01-165-2/+77
|/ /
* | Merge pull request #2641 from Jinderamarak/fix-markdown-nested-listsLibravatar Héctor2025-01-151-1/+10
|\ \ | | | | | | Fix parsing of nested markdown lists without empty line
| * | fix: parsing of nested markdown lists without empty lineLibravatar Jinderamarak2025-01-151-1/+10
|/ /
* | Merge pull request #2716 from Zarthus/masterLibravatar Héctor2025-01-143-238/+558
|\ \ | | | | | | Bump image from `0.24` to `0.25`
| * | Update `Cargo.lock`Libravatar Héctor Ramón Jiménez2025-01-141-235/+254
| | |
| * | Bump image from `0.24` to `0.25`Libravatar Jos Ahrens2025-01-143-10/+311
|/ /
* | Merge pull request #2724 from Rudxain/dl2Libravatar Héctor2025-01-143-113/+74
|\ \ | | | | | | Upgrade `dark-light` to v2
| * | Use `unwrap_or` in `Theme::default`Libravatar Héctor Ramón Jiménez2025-01-141-4/+8
| | |
| * | Update `Cargo.lock`Libravatar Héctor Ramón Jiménez2025-01-141-108/+66
| | |
| * | migrate core::theme to `dark-light` v2Libravatar Ricardo Fernández Serrata2025-01-091-7/+6
| | |
| * | `dark-light`: 1 -> 2 (in root Cargo.toml)Libravatar Ricardo Fernández Serrata2025-01-091-1/+1
| | |
* | | Merge pull request #2722 from iced-rs/fix/lazy-compositor-initializationLibravatar Héctor2025-01-141-143/+133
|\ \ \ | | | | | | | | Initialize `Compositor` lazily in `winit` shell
| * | | Panic instead of erroring when compositor channel unexpectedly closesLibravatar Héctor Ramón Jiménez2025-01-141-12/+5
| | | |
| * | | Simplify type annotations in `winit::program`Libravatar Héctor Ramón Jiménez2025-01-061-6/+2
| | | |
| * | | Initialize `Compositor` lazily in `winit` shellLibravatar Héctor Ramón Jiménez2025-01-061-143/+144
| | | | | | | | | | | | | | | | ... and get rid of the ghost boot window!
* | | | Merge pull request #2723 from Konsl/masterLibravatar Héctor2025-01-101-0/+4
|\ \ \ \ | |_|/ / |/| | | Apply `Wrapping` to `Paragraph`s
| * | | Fix text wrapping for `rich_text`Libravatar Héctor Ramón Jiménez2025-01-101-0/+2
| | | |
| * | | Apply wrapping to paragraphsLibravatar Konsl2025-01-071-0/+2
|/ / /
* | | Merge pull request #2633 from JL710/window-tasksLibravatar Héctor2025-01-063-18/+87
|\ \ \ | | | | | | | | more window tasks
| * | | Rename `window::change_*` tasks to `set_*`Libravatar Héctor Ramón Jiménez2025-01-063-18/+16
| | | |
| * | | Fix unintuitive variable name in `winit::program`Libravatar Héctor Ramón Jiménez2025-01-061-9/+9
| | | |
| * | | Rename `window::resizable` to `window::set_resizable`Libravatar Héctor Ramón Jiménez2025-01-061-20/+20
| | | |
| * | | Remove `window::change_title` since it's redundantLibravatar Héctor Ramón Jiménez2025-01-062-13/+0
| | | | | | | | | | | | | | | | Applications can change title declaratively.
| * | | window task for setting resize incrementsLibravatar JL7102025-01-062-0/+22
| | | |
| * | | window resizable taskLibravatar JL7102025-01-062-0/+13
| | | |
| * | | window tasks for setting min and max sizeLibravatar JL7102025-01-062-0/+36
| | | |